#include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 360 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 131 #define ALIAS_COUNT 0 #define TOKEN_COUNT 87 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 6 #define MAX_ALIAS_SEQUENCE_LENGTH 7 #define PRODUCTION_ID_COUNT 5 enum { sym_identifier = 1, sym__comment = 2, anon_sym_async = 3, anon_sym_LBRACE = 4, anon_sym_RBRACE = 5, anon_sym_SEMI = 6, anon_sym_LPAREN = 7, anon_sym_RPAREN = 8, anon_sym_COMMA = 9, sym_integer = 10, sym_float = 11, sym_string = 12, anon_sym_true = 13, anon_sym_false = 14, anon_sym_LBRACK = 15, anon_sym_RBRACK = 16, anon_sym_EQ = 17, anon_sym_COLON = 18, anon_sym_DOT_DOT = 19, anon_sym_PLUS = 20, anon_sym_DASH = 21, anon_sym_STAR = 22, anon_sym_SLASH = 23, anon_sym_PERCENT = 24, anon_sym_EQ_EQ = 25, anon_sym_BANG_EQ = 26, anon_sym_AMP_AMP = 27, anon_sym_PIPE_PIPE = 28, anon_sym_GT = 29, anon_sym_LT = 30, anon_sym_GT_EQ = 31, anon_sym_LT_EQ = 32, anon_sym_PLUS_EQ = 33, anon_sym_DASH_EQ = 34, anon_sym_if = 35, anon_sym_elseif = 36, anon_sym_else = 37, anon_sym_match = 38, anon_sym_EQ_GT = 39, anon_sym_while = 40, anon_sym_for = 41, anon_sym_asyncfor = 42, anon_sym_in = 43, anon_sym_transform = 44, anon_sym_filter = 45, anon_sym_find = 46, anon_sym_remove = 47, anon_sym_from = 48, anon_sym_reduce = 49, anon_sym_to = 50, anon_sym_select = 51, anon_sym_insert = 52, anon_sym_into = 53, anon_sym_PIPE = 54, anon_sym_table = 55, anon_sym_assert = 56, anon_sym_assert_equal = 57, anon_sym_context = 58, anon_sym_download = 59, anon_sym_help = 60, anon_sym_length = 61, anon_sym_output = 62, anon_sym_output_error = 63, anon_sym_type = 64, anon_sym_append = 65, anon_sym_metadata = 66, anon_sym_move = 67, anon_sym_read = 68, anon_sym_workdir = 69, anon_sym_write = 70, anon_sym_from_json = 71, anon_sym_to_json = 72, anon_sym_to_string = 73, anon_sym_to_float = 74, anon_sym_bash = 75, anon_sym_fish = 76, anon_sym_raw = 77, anon_sym_sh = 78, anon_sym_zsh = 79, anon_sym_random = 80, anon_sym_random_boolean = 81, anon_sym_random_float = 82, anon_sym_random_integer = 83, anon_sym_columns = 84, anon_sym_rows = 85, anon_sym_reverse = 86, sym_root = 87, sym_block = 88, sym_statement = 89, sym_expression = 90, sym__expression_kind = 91, aux_sym__expression_list = 92, sym_value = 93, sym_boolean = 94, sym_list = 95, sym_map = 96, sym_index = 97, sym_math = 98, sym_math_operator = 99, sym_logic = 100, sym_logic_operator = 101, sym_assignment = 102, sym_assignment_operator = 103, sym_if_else = 104, sym_if = 105, sym_else_if = 106, sym_else = 107, sym_match = 108, sym_while = 109, sym_for = 110, sym_transform = 111, sym_filter = 112, sym_find = 113, sym_remove = 114, sym_reduce = 115, sym_select = 116, sym_insert = 117, sym_identifier_list = 118, sym_table = 119, sym_function = 120, sym_function_call = 121, sym__context_defined_function = 122, sym_built_in_function = 123, sym__built_in_function_name = 124, aux_sym_root_repeat1 = 125, aux_sym_list_repeat1 = 126, aux_sym_map_repeat1 = 127, aux_sym_if_else_repeat1 = 128, aux_sym_match_repeat1 = 129, aux_sym_identifier_list_repeat1 = 130, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [sym__comment] = "_comment", [anon_sym_async] = "async", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_SEMI] = ";", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [anon_sym_COMMA] = ",", [sym_integer] = "integer", [sym_float] = "float", [sym_string] = "string", [anon_sym_true] = "true", [anon_sym_false] = "false", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", [anon_sym_COLON] = ":", [anon_sym_DOT_DOT] = "..", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", [anon_sym_STAR] = "*", [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_EQ_EQ] = "==", [anon_sym_BANG_EQ] = "!=", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", [anon_sym_GT] = ">", [anon_sym_LT] = "<", [anon_sym_GT_EQ] = ">=", [anon_sym_LT_EQ] = "<=", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", [anon_sym_if] = "if", [anon_sym_elseif] = "else if", [anon_sym_else] = "else", [anon_sym_match] = "match", [anon_sym_EQ_GT] = "=>", [anon_sym_while] = "while", [anon_sym_for] = "for", [anon_sym_asyncfor] = "async for", [anon_sym_in] = "in", [anon_sym_transform] = "transform", [anon_sym_filter] = "filter", [anon_sym_find] = "find", [anon_sym_remove] = "remove", [anon_sym_from] = "from", [anon_sym_reduce] = "reduce", [anon_sym_to] = "to", [anon_sym_select] = "select", [anon_sym_insert] = "insert", [anon_sym_into] = "into", [anon_sym_PIPE] = "|", [anon_sym_table] = "table", [anon_sym_assert] = "assert", [anon_sym_assert_equal] = "assert_equal", [anon_sym_context] = "context", [anon_sym_download] = "download", [anon_sym_help] = "help", [anon_sym_length] = "length", [anon_sym_output] = "output", [anon_sym_output_error] = "output_error", [anon_sym_type] = "type", [anon_sym_append] = "append", [anon_sym_metadata] = "metadata", [anon_sym_move] = "move", [anon_sym_read] = "read", [anon_sym_workdir] = "workdir", [anon_sym_write] = "write", [anon_sym_from_json] = "from_json", [anon_sym_to_json] = "to_json", [anon_sym_to_string] = "to_string", [anon_sym_to_float] = "to_float", [anon_sym_bash] = "bash", [anon_sym_fish] = "fish", [anon_sym_raw] = "raw", [anon_sym_sh] = "sh", [anon_sym_zsh] = "zsh", [anon_sym_random] = "random", [anon_sym_random_boolean] = "random_boolean", [anon_sym_random_float] = "random_float", [anon_sym_random_integer] = "random_integer", [anon_sym_columns] = "columns", [anon_sym_rows] = "rows", [anon_sym_reverse] = "reverse", [sym_root] = "root", [sym_block] = "block", [sym_statement] = "statement", [sym_expression] = "expression", [sym__expression_kind] = "_expression_kind", [aux_sym__expression_list] = "_expression_list", [sym_value] = "value", [sym_boolean] = "boolean", [sym_list] = "list", [sym_map] = "map", [sym_index] = "index", [sym_math] = "math", [sym_math_operator] = "math_operator", [sym_logic] = "logic", [sym_logic_operator] = "logic_operator", [sym_assignment] = "assignment", [sym_assignment_operator] = "assignment_operator", [sym_if_else] = "if_else", [sym_if] = "if", [sym_else_if] = "else_if", [sym_else] = "else", [sym_match] = "match", [sym_while] = "while", [sym_for] = "for", [sym_transform] = "transform", [sym_filter] = "filter", [sym_find] = "find", [sym_remove] = "remove", [sym_reduce] = "reduce", [sym_select] = "select", [sym_insert] = "insert", [sym_identifier_list] = "identifier_list", [sym_table] = "table", [sym_function] = "function", [sym_function_call] = "function_call", [sym__context_defined_function] = "_context_defined_function", [sym_built_in_function] = "built_in_function", [sym__built_in_function_name] = "_built_in_function_name", [aux_sym_root_repeat1] = "root_repeat1", [aux_sym_list_repeat1] = "list_repeat1", [aux_sym_map_repeat1] = "map_repeat1", [aux_sym_if_else_repeat1] = "if_else_repeat1", [aux_sym_match_repeat1] = "match_repeat1", [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [sym__comment] = sym__comment, [anon_sym_async] = anon_sym_async, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_COMMA] = anon_sym_COMMA, [sym_integer] = sym_integer, [sym_float] = sym_float, [sym_string] = sym_string, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_STAR] = anon_sym_STAR, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_GT] = anon_sym_GT, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_if] = anon_sym_if, [anon_sym_elseif] = anon_sym_elseif, [anon_sym_else] = anon_sym_else, [anon_sym_match] = anon_sym_match, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_while] = anon_sym_while, [anon_sym_for] = anon_sym_for, [anon_sym_asyncfor] = anon_sym_asyncfor, [anon_sym_in] = anon_sym_in, [anon_sym_transform] = anon_sym_transform, [anon_sym_filter] = anon_sym_filter, [anon_sym_find] = anon_sym_find, [anon_sym_remove] = anon_sym_remove, [anon_sym_from] = anon_sym_from, [anon_sym_reduce] = anon_sym_reduce, [anon_sym_to] = anon_sym_to, [anon_sym_select] = anon_sym_select, [anon_sym_insert] = anon_sym_insert, [anon_sym_into] = anon_sym_into, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_table] = anon_sym_table, [anon_sym_assert] = anon_sym_assert, [anon_sym_assert_equal] = anon_sym_assert_equal, [anon_sym_context] = anon_sym_context, [anon_sym_download] = anon_sym_download, [anon_sym_help] = anon_sym_help, [anon_sym_length] = anon_sym_length, [anon_sym_output] = anon_sym_output, [anon_sym_output_error] = anon_sym_output_error, [anon_sym_type] = anon_sym_type, [anon_sym_append] = anon_sym_append, [anon_sym_metadata] = anon_sym_metadata, [anon_sym_move] = anon_sym_move, [anon_sym_read] = anon_sym_read, [anon_sym_workdir] = anon_sym_workdir, [anon_sym_write] = anon_sym_write, [anon_sym_from_json] = anon_sym_from_json, [anon_sym_to_json] = anon_sym_to_json, [anon_sym_to_string] = anon_sym_to_string, [anon_sym_to_float] = anon_sym_to_float, [anon_sym_bash] = anon_sym_bash, [anon_sym_fish] = anon_sym_fish, [anon_sym_raw] = anon_sym_raw, [anon_sym_sh] = anon_sym_sh, [anon_sym_zsh] = anon_sym_zsh, [anon_sym_random] = anon_sym_random, [anon_sym_random_boolean] = anon_sym_random_boolean, [anon_sym_random_float] = anon_sym_random_float, [anon_sym_random_integer] = anon_sym_random_integer, [anon_sym_columns] = anon_sym_columns, [anon_sym_rows] = anon_sym_rows, [anon_sym_reverse] = anon_sym_reverse, [sym_root] = sym_root, [sym_block] = sym_block, [sym_statement] = sym_statement, [sym_expression] = sym_expression, [sym__expression_kind] = sym__expression_kind, [aux_sym__expression_list] = aux_sym__expression_list, [sym_value] = sym_value, [sym_boolean] = sym_boolean, [sym_list] = sym_list, [sym_map] = sym_map, [sym_index] = sym_index, [sym_math] = sym_math, [sym_math_operator] = sym_math_operator, [sym_logic] = sym_logic, [sym_logic_operator] = sym_logic_operator, [sym_assignment] = sym_assignment, [sym_assignment_operator] = sym_assignment_operator, [sym_if_else] = sym_if_else, [sym_if] = sym_if, [sym_else_if] = sym_else_if, [sym_else] = sym_else, [sym_match] = sym_match, [sym_while] = sym_while, [sym_for] = sym_for, [sym_transform] = sym_transform, [sym_filter] = sym_filter, [sym_find] = sym_find, [sym_remove] = sym_remove, [sym_reduce] = sym_reduce, [sym_select] = sym_select, [sym_insert] = sym_insert, [sym_identifier_list] = sym_identifier_list, [sym_table] = sym_table, [sym_function] = sym_function, [sym_function_call] = sym_function_call, [sym__context_defined_function] = sym__context_defined_function, [sym_built_in_function] = sym_built_in_function, [sym__built_in_function_name] = sym__built_in_function_name, [aux_sym_root_repeat1] = aux_sym_root_repeat1, [aux_sym_list_repeat1] = aux_sym_list_repeat1, [aux_sym_map_repeat1] = aux_sym_map_repeat1, [aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1, [aux_sym_match_repeat1] = aux_sym_match_repeat1, [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym_identifier] = { .visible = true, .named = true, }, [sym__comment] = { .visible = false, .named = true, }, [anon_sym_async] = { .visible = true, .named = false, }, [anon_sym_LBRACE] = { .visible = true, .named = false, }, [anon_sym_RBRACE] = { .visible = true, .named = false, }, [anon_sym_SEMI] = { .visible = true, .named = false, }, [anon_sym_LPAREN] = { .visible = true, .named = false, }, [anon_sym_RPAREN] = { .visible = true, .named = false, }, [anon_sym_COMMA] = { .visible = true, .named = false, }, [sym_integer] = { .visible = true, .named = true, }, [sym_float] = { .visible = true, .named = true, }, [sym_string] = { .visible = true, .named = true, }, [anon_sym_true] = { .visible = true, .named = false, }, [anon_sym_false] = { .visible = true, .named = false, }, [anon_sym_LBRACK] = { .visible = true, .named = false, }, [anon_sym_RBRACK] = { .visible = true, .named = false, }, [anon_sym_EQ] = { .visible = true, .named = false, }, [anon_sym_COLON] = { .visible = true, .named = false, }, [anon_sym_DOT_DOT] = { .visible = true, .named = false, }, [anon_sym_PLUS] = { .visible = true, .named = false, }, [anon_sym_DASH] = { .visible = true, .named = false, }, [anon_sym_STAR] = { .visible = true, .named = false, }, [anon_sym_SLASH] = { .visible = true, .named = false, }, [anon_sym_PERCENT] = { .visible = true, .named = false, }, [anon_sym_EQ_EQ] = { .visible = true, .named = false, }, [anon_sym_BANG_EQ] = { .visible = true, .named = false, }, [anon_sym_AMP_AMP] = { .visible = true, .named = false, }, [anon_sym_PIPE_PIPE] = { .visible = true, .named = false, }, [anon_sym_GT] = { .visible = true, .named = false, }, [anon_sym_LT] = { .visible = true, .named = false, }, [anon_sym_GT_EQ] = { .visible = true, .named = false, }, [anon_sym_LT_EQ] = { .visible = true, .named = false, }, [anon_sym_PLUS_EQ] = { .visible = true, .named = false, }, [anon_sym_DASH_EQ] = { .visible = true, .named = false, }, [anon_sym_if] = { .visible = true, .named = false, }, [anon_sym_elseif] = { .visible = true, .named = false, }, [anon_sym_else] = { .visible = true, .named = false, }, [anon_sym_match] = { .visible = true, .named = false, }, [anon_sym_EQ_GT] = { .visible = true, .named = false, }, [anon_sym_while] = { .visible = true, .named = false, }, [anon_sym_for] = { .visible = true, .named = false, }, [anon_sym_asyncfor] = { .visible = true, .named = false, }, [anon_sym_in] = { .visible = true, .named = false, }, [anon_sym_transform] = { .visible = true, .named = false, }, [anon_sym_filter] = { .visible = true, .named = false, }, [anon_sym_find] = { .visible = true, .named = false, }, [anon_sym_remove] = { .visible = true, .named = false, }, [anon_sym_from] = { .visible = true, .named = false, }, [anon_sym_reduce] = { .visible = true, .named = false, }, [anon_sym_to] = { .visible = true, .named = false, }, [anon_sym_select] = { .visible = true, .named = false, }, [anon_sym_insert] = { .visible = true, .named = false, }, [anon_sym_into] = { .visible = true, .named = false, }, [anon_sym_PIPE] = { .visible = true, .named = false, }, [anon_sym_table] = { .visible = true, .named = false, }, [anon_sym_assert] = { .visible = true, .named = false, }, [anon_sym_assert_equal] = { .visible = true, .named = false, }, [anon_sym_context] = { .visible = true, .named = false, }, [anon_sym_download] = { .visible = true, .named = false, }, [anon_sym_help] = { .visible = true, .named = false, }, [anon_sym_length] = { .visible = true, .named = false, }, [anon_sym_output] = { .visible = true, .named = false, }, [anon_sym_output_error] = { .visible = true, .named = false, }, [anon_sym_type] = { .visible = true, .named = false, }, [anon_sym_append] = { .visible = true, .named = false, }, [anon_sym_metadata] = { .visible = true, .named = false, }, [anon_sym_move] = { .visible = true, .named = false, }, [anon_sym_read] = { .visible = true, .named = false, }, [anon_sym_workdir] = { .visible = true, .named = false, }, [anon_sym_write] = { .visible = true, .named = false, }, [anon_sym_from_json] = { .visible = true, .named = false, }, [anon_sym_to_json] = { .visible = true, .named = false, }, [anon_sym_to_string] = { .visible = true, .named = false, }, [anon_sym_to_float] = { .visible = true, .named = false, }, [anon_sym_bash] = { .visible = true, .named = false, }, [anon_sym_fish] = { .visible = true, .named = false, }, [anon_sym_raw] = { .visible = true, .named = false, }, [anon_sym_sh] = { .visible = true, .named = false, }, [anon_sym_zsh] = { .visible = true, .named = false, }, [anon_sym_random] = { .visible = true, .named = false, }, [anon_sym_random_boolean] = { .visible = true, .named = false, }, [anon_sym_random_float] = { .visible = true, .named = false, }, [anon_sym_random_integer] = { .visible = true, .named = false, }, [anon_sym_columns] = { .visible = true, .named = false, }, [anon_sym_rows] = { .visible = true, .named = false, }, [anon_sym_reverse] = { .visible = true, .named = false, }, [sym_root] = { .visible = true, .named = true, }, [sym_block] = { .visible = true, .named = true, }, [sym_statement] = { .visible = true, .named = true, }, [sym_expression] = { .visible = true, .named = true, }, [sym__expression_kind] = { .visible = false, .named = true, }, [aux_sym__expression_list] = { .visible = false, .named = false, }, [sym_value] = { .visible = true, .named = true, }, [sym_boolean] = { .visible = true, .named = true, }, [sym_list] = { .visible = true, .named = true, }, [sym_map] = { .visible = true, .named = true, }, [sym_index] = { .visible = true, .named = true, }, [sym_math] = { .visible = true, .named = true, }, [sym_math_operator] = { .visible = true, .named = true, }, [sym_logic] = { .visible = true, .named = true, }, [sym_logic_operator] = { .visible = true, .named = true, }, [sym_assignment] = { .visible = true, .named = true, }, [sym_assignment_operator] = { .visible = true, .named = true, }, [sym_if_else] = { .visible = true, .named = true, }, [sym_if] = { .visible = true, .named = true, }, [sym_else_if] = { .visible = true, .named = true, }, [sym_else] = { .visible = true, .named = true, }, [sym_match] = { .visible = true, .named = true, }, [sym_while] = { .visible = true, .named = true, }, [sym_for] = { .visible = true, .named = true, }, [sym_transform] = { .visible = true, .named = true, }, [sym_filter] = { .visible = true, .named = true, }, [sym_find] = { .visible = true, .named = true, }, [sym_remove] = { .visible = true, .named = true, }, [sym_reduce] = { .visible = true, .named = true, }, [sym_select] = { .visible = true, .named = true, }, [sym_insert] = { .visible = true, .named = true, }, [sym_identifier_list] = { .visible = true, .named = true, }, [sym_table] = { .visible = true, .named = true, }, [sym_function] = { .visible = true, .named = true, }, [sym_function_call] = { .visible = true, .named = true, }, [sym__context_defined_function] = { .visible = false, .named = true, }, [sym_built_in_function] = { .visible = true, .named = true, }, [sym__built_in_function_name] = { .visible = false, .named = true, }, [aux_sym_root_repeat1] = { .visible = false, .named = false, }, [aux_sym_list_repeat1] = { .visible = false, .named = false, }, [aux_sym_map_repeat1] = { .visible = false, .named = false, }, [aux_sym_if_else_repeat1] = { .visible = false, .named = false, }, [aux_sym_match_repeat1] = { .visible = false, .named = false, }, [aux_sym_identifier_list_repeat1] = { .visible = false, .named = false, }, }; enum { field_body = 1, field_collection = 2, field_count = 3, field_item_id = 4, field_parameters = 5, field_predicate = 6, }; static const char * const ts_field_names[] = { [0] = NULL, [field_body] = "body", [field_collection] = "collection", [field_count] = "count", [field_item_id] = "item_id", [field_parameters] = "parameters", [field_predicate] = "predicate", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 2}, [3] = {.index = 3, .length = 3}, [4] = {.index = 6, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_body, 1}, [1] = {field_body, 2}, {field_parameters, 0}, [3] = {field_collection, 3}, {field_item_id, 1}, {field_predicate, 4}, [6] = {field_collection, 4}, {field_count, 1}, {field_item_id, 2}, {field_predicate, 5}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; static const uint16_t ts_non_terminal_alias_map[] = { 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 2, [4] = 2, [5] = 5, [6] = 5, [7] = 7, [8] = 8, [9] = 8, [10] = 8, [11] = 11, [12] = 8, [13] = 11, [14] = 11, [15] = 15, [16] = 11, [17] = 11, [18] = 8, [19] = 8, [20] = 11, [21] = 11, [22] = 8, [23] = 23, [24] = 24, [25] = 23, [26] = 23, [27] = 24, [28] = 23, [29] = 23, [30] = 24, [31] = 24, [32] = 23, [33] = 24, [34] = 23, [35] = 24, [36] = 24, [37] = 37, [38] = 38, [39] = 39, [40] = 37, [41] = 41, [42] = 42, [43] = 43, [44] = 44, [45] = 43, [46] = 46, [47] = 47, [48] = 48, [49] = 49, [50] = 50, [51] = 42, [52] = 48, [53] = 53, [54] = 49, [55] = 46, [56] = 56, [57] = 57, [58] = 58, [59] = 59, [60] = 60, [61] = 61, [62] = 62, [63] = 63, [64] = 64, [65] = 65, [66] = 66, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, [72] = 70, [73] = 73, [74] = 74, [75] = 75, [76] = 43, [77] = 77, [78] = 43, [79] = 49, [80] = 42, [81] = 46, [82] = 48, [83] = 48, [84] = 46, [85] = 42, [86] = 49, [87] = 87, [88] = 59, [89] = 89, [90] = 90, [91] = 57, [92] = 64, [93] = 93, [94] = 58, [95] = 58, [96] = 62, [97] = 63, [98] = 68, [99] = 67, [100] = 61, [101] = 60, [102] = 56, [103] = 65, [104] = 66, [105] = 64, [106] = 71, [107] = 69, [108] = 108, [109] = 109, [110] = 58, [111] = 111, [112] = 112, [113] = 113, [114] = 114, [115] = 115, [116] = 64, [117] = 117, [118] = 118, [119] = 119, [120] = 120, [121] = 121, [122] = 122, [123] = 123, [124] = 124, [125] = 125, [126] = 126, [127] = 127, [128] = 128, [129] = 129, [130] = 130, [131] = 131, [132] = 132, [133] = 126, [134] = 126, [135] = 131, [136] = 131, [137] = 49, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 142, [143] = 141, [144] = 141, [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, [150] = 150, [151] = 151, [152] = 152, [153] = 139, [154] = 150, [155] = 155, [156] = 156, [157] = 42, [158] = 141, [159] = 159, [160] = 156, [161] = 46, [162] = 138, [163] = 141, [164] = 150, [165] = 150, [166] = 156, [167] = 142, [168] = 150, [169] = 141, [170] = 138, [171] = 147, [172] = 156, [173] = 155, [174] = 152, [175] = 149, [176] = 159, [177] = 177, [178] = 177, [179] = 43, [180] = 180, [181] = 43, [182] = 148, [183] = 183, [184] = 180, [185] = 140, [186] = 150, [187] = 156, [188] = 138, [189] = 156, [190] = 140, [191] = 151, [192] = 146, [193] = 145, [194] = 194, [195] = 138, [196] = 48, [197] = 138, [198] = 183, [199] = 49, [200] = 42, [201] = 48, [202] = 46, [203] = 63, [204] = 57, [205] = 59, [206] = 64, [207] = 62, [208] = 44, [209] = 68, [210] = 67, [211] = 58, [212] = 61, [213] = 60, [214] = 56, [215] = 65, [216] = 66, [217] = 41, [218] = 50, [219] = 53, [220] = 220, [221] = 221, [222] = 222, [223] = 223, [224] = 224, [225] = 225, [226] = 226, [227] = 223, [228] = 228, [229] = 222, [230] = 230, [231] = 231, [232] = 221, [233] = 220, [234] = 226, [235] = 225, [236] = 231, [237] = 228, [238] = 230, [239] = 224, [240] = 240, [241] = 240, [242] = 242, [243] = 242, [244] = 244, [245] = 245, [246] = 244, [247] = 247, [248] = 247, [249] = 118, [250] = 247, [251] = 64, [252] = 58, [253] = 253, [254] = 254, [255] = 255, [256] = 256, [257] = 257, [258] = 258, [259] = 75, [260] = 74, [261] = 77, [262] = 58, [263] = 89, [264] = 87, [265] = 64, [266] = 109, [267] = 125, [268] = 113, [269] = 123, [270] = 122, [271] = 120, [272] = 121, [273] = 112, [274] = 117, [275] = 115, [276] = 111, [277] = 124, [278] = 119, [279] = 108, [280] = 114, [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 285, [286] = 281, [287] = 287, [288] = 284, [289] = 281, [290] = 290, [291] = 284, [292] = 292, [293] = 282, [294] = 294, [295] = 294, [296] = 296, [297] = 297, [298] = 290, [299] = 285, [300] = 282, [301] = 301, [302] = 290, [303] = 303, [304] = 304, [305] = 304, [306] = 303, [307] = 304, [308] = 308, [309] = 304, [310] = 304, [311] = 311, [312] = 304, [313] = 313, [314] = 314, [315] = 315, [316] = 315, [317] = 317, [318] = 318, [319] = 319, [320] = 318, [321] = 321, [322] = 322, [323] = 323, [324] = 322, [325] = 325, [326] = 326, [327] = 322, [328] = 328, [329] = 329, [330] = 319, [331] = 331, [332] = 332, [333] = 333, [334] = 334, [335] = 318, [336] = 317, [337] = 337, [338] = 314, [339] = 332, [340] = 331, [341] = 341, [342] = 341, [343] = 343, [344] = 344, [345] = 343, [346] = 334, [347] = 334, [348] = 334, [349] = 334, [350] = 334, [351] = 329, [352] = 328, [353] = 337, [354] = 326, [355] = 325, [356] = 334, [357] = 344, [358] = 313, [359] = 323, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(27); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == ')') ADVANCE(34); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(58); if (lookahead == ',') ADVANCE(35); if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(9); if (lookahead == '/') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ':') ADVANCE(55); if (lookahead == ';') ADVANCE(32); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(53); if (lookahead == '>') ADVANCE(70); if (lookahead == '[') ADVANCE(50); if (lookahead == ']') ADVANCE(51); if (lookahead == '`') ADVANCE(13); if (lookahead == 'a') ADVANCE(43); if (lookahead == 'e') ADVANCE(41); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 1: if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == ')') ADVANCE(34); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(57); if (lookahead == ',') ADVANCE(35); if (lookahead == '-') ADVANCE(61); if (lookahead == '.') ADVANCE(9); if (lookahead == '/') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ':') ADVANCE(55); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(11); if (lookahead == '>') ADVANCE(70); if (lookahead == '[') ADVANCE(50); if (lookahead == ']') ADVANCE(51); if (lookahead == '`') ADVANCE(13); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(80); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 2: if (lookahead == '!') ADVANCE(10); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == ')') ADVANCE(34); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(57); if (lookahead == ',') ADVANCE(35); if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(9); if (lookahead == '/') ADVANCE(64); if (lookahead == ':') ADVANCE(55); if (lookahead == ';') ADVANCE(32); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(11); if (lookahead == '>') ADVANCE(70); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(20); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 3: if (lookahead == '!') ADVANCE(10); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(58); if (lookahead == ',') ADVANCE(35); if (lookahead == '-') ADVANCE(60); if (lookahead == '/') ADVANCE(64); if (lookahead == ':') ADVANCE(55); if (lookahead == ';') ADVANCE(32); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(52); if (lookahead == '>') ADVANCE(70); if (lookahead == '|') ADVANCE(20); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 4: if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == ')') ADVANCE(34); if (lookahead == ',') ADVANCE(35); if (lookahead == '-') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ';') ADVANCE(32); if (lookahead == '=') ADVANCE(12); if (lookahead == '[') ADVANCE(50); if (lookahead == ']') ADVANCE(51); if (lookahead == '`') ADVANCE(13); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(79); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 5: if (lookahead == '"') ADVANCE(49); if (lookahead != 0) ADVANCE(5); END_STATE(); case 6: if (lookahead == '#') ADVANCE(19); if (lookahead == ',') ADVANCE(35); if (lookahead == ';') ADVANCE(32); if (lookahead == 'e') ADVANCE(41); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 7: if (lookahead == '&') ADVANCE(68); END_STATE(); case 8: if (lookahead == '\'') ADVANCE(49); if (lookahead != 0) ADVANCE(8); END_STATE(); case 9: if (lookahead == '.') ADVANCE(56); END_STATE(); case 10: if (lookahead == '=') ADVANCE(67); END_STATE(); case 11: if (lookahead == '=') ADVANCE(66); if (lookahead == '>') ADVANCE(77); END_STATE(); case 12: if (lookahead == '>') ADVANCE(77); END_STATE(); case 13: if (lookahead == '`') ADVANCE(49); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: if (lookahead == 'f') ADVANCE(17); END_STATE(); case 15: if (lookahead == 'f') ADVANCE(76); END_STATE(); case 16: if (lookahead == 'i') ADVANCE(15); END_STATE(); case 17: if (lookahead == 'o') ADVANCE(18); END_STATE(); case 18: if (lookahead == 'r') ADVANCE(78); END_STATE(); case 19: if (lookahead == '|') ADVANCE(29); if (lookahead == '\n' || lookahead == '#') ADVANCE(28); if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: if (lookahead == '|') ADVANCE(69); END_STATE(); case 21: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 22: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 23: if (eof) ADVANCE(27); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(58); if (lookahead == '-') ADVANCE(62); if (lookahead == '/') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ':') ADVANCE(55); if (lookahead == ';') ADVANCE(32); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(53); if (lookahead == '>') ADVANCE(70); if (lookahead == '[') ADVANCE(50); if (lookahead == '`') ADVANCE(13); if (lookahead == 'a') ADVANCE(43); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 24: if (eof) ADVANCE(27); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '%') ADVANCE(65); if (lookahead == '&') ADVANCE(7); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(57); if (lookahead == '-') ADVANCE(61); if (lookahead == '.') ADVANCE(9); if (lookahead == '/') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ':') ADVANCE(55); if (lookahead == ';') ADVANCE(32); if (lookahead == '<') ADVANCE(71); if (lookahead == '=') ADVANCE(11); if (lookahead == '>') ADVANCE(70); if (lookahead == '[') ADVANCE(50); if (lookahead == '`') ADVANCE(13); if (lookahead == 'a') ADVANCE(43); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 25: if (eof) ADVANCE(27); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == '-') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ';') ADVANCE(32); if (lookahead == '=') ADVANCE(54); if (lookahead == '[') ADVANCE(50); if (lookahead == '`') ADVANCE(13); if (lookahead == 'a') ADVANCE(43); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(79); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 26: if (eof) ADVANCE(27); if (lookahead == '"') ADVANCE(5); if (lookahead == '#') ADVANCE(19); if (lookahead == '\'') ADVANCE(8); if (lookahead == '(') ADVANCE(33); if (lookahead == '-') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == ';') ADVANCE(32); if (lookahead == '=') ADVANCE(12); if (lookahead == '[') ADVANCE(50); if (lookahead == '`') ADVANCE(13); if (lookahead == 'a') ADVANCE(43); if (lookahead == 'e') ADVANCE(41); if (lookahead == '{') ADVANCE(30); if (lookahead == '|') ADVANCE(79); if (lookahead == '}') ADVANCE(31); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 27: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 28: ACCEPT_TOKEN(sym__comment); END_STATE(); case 29: ACCEPT_TOKEN(sym__comment); if (lookahead == '|') ADVANCE(29); if (lookahead == '\n' || lookahead == '#') ADVANCE(28); if (lookahead != 0) ADVANCE(19); END_STATE(); case 30: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 31: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 32: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 33: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 34: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 35: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 36: ACCEPT_TOKEN(sym_identifier); END_STATE(); case 37: ACCEPT_TOKEN(sym_identifier); if (lookahead == ' ') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 38: ACCEPT_TOKEN(sym_identifier); if (lookahead == ' ') ADVANCE(14); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') ADVANCE(39); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 45: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'y') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 46: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 47: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(22); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 48: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 49: ACCEPT_TOKEN(sym_string); END_STATE(); case 50: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 51: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(66); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(66); if (lookahead == '>') ADVANCE(77); END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '>') ADVANCE(77); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 56: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') ADVANCE(74); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 60: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(75); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); if (lookahead == '=') ADVANCE(75); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 68: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 70: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(72); END_STATE(); case 71: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(73); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 74: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 77: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); case 79: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(69); END_STATE(); default: return false; } } static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == 'a') ADVANCE(1); if (lookahead == 'b') ADVANCE(2); if (lookahead == 'c') ADVANCE(3); if (lookahead == 'd') ADVANCE(4); if (lookahead == 'e') ADVANCE(5); if (lookahead == 'f') ADVANCE(6); if (lookahead == 'h') ADVANCE(7); if (lookahead == 'i') ADVANCE(8); if (lookahead == 'l') ADVANCE(9); if (lookahead == 'm') ADVANCE(10); if (lookahead == 'o') ADVANCE(11); if (lookahead == 'r') ADVANCE(12); if (lookahead == 's') ADVANCE(13); if (lookahead == 't') ADVANCE(14); if (lookahead == 'w') ADVANCE(15); if (lookahead == 'z') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: if (lookahead == 'p') ADVANCE(17); if (lookahead == 's') ADVANCE(18); END_STATE(); case 2: if (lookahead == 'a') ADVANCE(19); END_STATE(); case 3: if (lookahead == 'o') ADVANCE(20); END_STATE(); case 4: if (lookahead == 'o') ADVANCE(21); END_STATE(); case 5: if (lookahead == 'l') ADVANCE(22); END_STATE(); case 6: if (lookahead == 'a') ADVANCE(23); if (lookahead == 'i') ADVANCE(24); if (lookahead == 'o') ADVANCE(25); if (lookahead == 'r') ADVANCE(26); END_STATE(); case 7: if (lookahead == 'e') ADVANCE(27); END_STATE(); case 8: if (lookahead == 'f') ADVANCE(28); if (lookahead == 'n') ADVANCE(29); END_STATE(); case 9: if (lookahead == 'e') ADVANCE(30); END_STATE(); case 10: if (lookahead == 'a') ADVANCE(31); if (lookahead == 'e') ADVANCE(32); if (lookahead == 'o') ADVANCE(33); END_STATE(); case 11: if (lookahead == 'u') ADVANCE(34); END_STATE(); case 12: if (lookahead == 'a') ADVANCE(35); if (lookahead == 'e') ADVANCE(36); if (lookahead == 'o') ADVANCE(37); END_STATE(); case 13: if (lookahead == 'e') ADVANCE(38); if (lookahead == 'h') ADVANCE(39); END_STATE(); case 14: if (lookahead == 'a') ADVANCE(40); if (lookahead == 'o') ADVANCE(41); if (lookahead == 'r') ADVANCE(42); if (lookahead == 'y') ADVANCE(43); END_STATE(); case 15: if (lookahead == 'h') ADVANCE(44); if (lookahead == 'o') ADVANCE(45); if (lookahead == 'r') ADVANCE(46); END_STATE(); case 16: if (lookahead == 's') ADVANCE(47); END_STATE(); case 17: if (lookahead == 'p') ADVANCE(48); END_STATE(); case 18: if (lookahead == 's') ADVANCE(49); if (lookahead == 'y') ADVANCE(50); END_STATE(); case 19: if (lookahead == 's') ADVANCE(51); END_STATE(); case 20: if (lookahead == 'l') ADVANCE(52); if (lookahead == 'n') ADVANCE(53); END_STATE(); case 21: if (lookahead == 'w') ADVANCE(54); END_STATE(); case 22: if (lookahead == 's') ADVANCE(55); END_STATE(); case 23: if (lookahead == 'l') ADVANCE(56); END_STATE(); case 24: if (lookahead == 'l') ADVANCE(57); if (lookahead == 'n') ADVANCE(58); if (lookahead == 's') ADVANCE(59); END_STATE(); case 25: if (lookahead == 'r') ADVANCE(60); END_STATE(); case 26: if (lookahead == 'o') ADVANCE(61); END_STATE(); case 27: if (lookahead == 'l') ADVANCE(62); END_STATE(); case 28: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 29: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 's') ADVANCE(63); if (lookahead == 't') ADVANCE(64); END_STATE(); case 30: if (lookahead == 'n') ADVANCE(65); END_STATE(); case 31: if (lookahead == 't') ADVANCE(66); END_STATE(); case 32: if (lookahead == 't') ADVANCE(67); END_STATE(); case 33: if (lookahead == 'v') ADVANCE(68); END_STATE(); case 34: if (lookahead == 't') ADVANCE(69); END_STATE(); case 35: if (lookahead == 'n') ADVANCE(70); if (lookahead == 'w') ADVANCE(71); END_STATE(); case 36: if (lookahead == 'a') ADVANCE(72); if (lookahead == 'd') ADVANCE(73); if (lookahead == 'm') ADVANCE(74); if (lookahead == 'v') ADVANCE(75); END_STATE(); case 37: if (lookahead == 'w') ADVANCE(76); END_STATE(); case 38: if (lookahead == 'l') ADVANCE(77); END_STATE(); case 39: ACCEPT_TOKEN(anon_sym_sh); END_STATE(); case 40: if (lookahead == 'b') ADVANCE(78); END_STATE(); case 41: ACCEPT_TOKEN(anon_sym_to); if (lookahead == '_') ADVANCE(79); END_STATE(); case 42: if (lookahead == 'a') ADVANCE(80); if (lookahead == 'u') ADVANCE(81); END_STATE(); case 43: if (lookahead == 'p') ADVANCE(82); END_STATE(); case 44: if (lookahead == 'i') ADVANCE(83); END_STATE(); case 45: if (lookahead == 'r') ADVANCE(84); END_STATE(); case 46: if (lookahead == 'i') ADVANCE(85); END_STATE(); case 47: if (lookahead == 'h') ADVANCE(86); END_STATE(); case 48: if (lookahead == 'e') ADVANCE(87); END_STATE(); case 49: if (lookahead == 'e') ADVANCE(88); END_STATE(); case 50: if (lookahead == 'n') ADVANCE(89); END_STATE(); case 51: if (lookahead == 'h') ADVANCE(90); END_STATE(); case 52: if (lookahead == 'u') ADVANCE(91); END_STATE(); case 53: if (lookahead == 't') ADVANCE(92); END_STATE(); case 54: if (lookahead == 'n') ADVANCE(93); END_STATE(); case 55: if (lookahead == 'e') ADVANCE(94); END_STATE(); case 56: if (lookahead == 's') ADVANCE(95); END_STATE(); case 57: if (lookahead == 't') ADVANCE(96); END_STATE(); case 58: if (lookahead == 'd') ADVANCE(97); END_STATE(); case 59: if (lookahead == 'h') ADVANCE(98); END_STATE(); case 60: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 61: if (lookahead == 'm') ADVANCE(99); END_STATE(); case 62: if (lookahead == 'p') ADVANCE(100); END_STATE(); case 63: if (lookahead == 'e') ADVANCE(101); END_STATE(); case 64: if (lookahead == 'o') ADVANCE(102); END_STATE(); case 65: if (lookahead == 'g') ADVANCE(103); END_STATE(); case 66: if (lookahead == 'c') ADVANCE(104); END_STATE(); case 67: if (lookahead == 'a') ADVANCE(105); END_STATE(); case 68: if (lookahead == 'e') ADVANCE(106); END_STATE(); case 69: if (lookahead == 'p') ADVANCE(107); END_STATE(); case 70: if (lookahead == 'd') ADVANCE(108); END_STATE(); case 71: ACCEPT_TOKEN(anon_sym_raw); END_STATE(); case 72: if (lookahead == 'd') ADVANCE(109); END_STATE(); case 73: if (lookahead == 'u') ADVANCE(110); END_STATE(); case 74: if (lookahead == 'o') ADVANCE(111); END_STATE(); case 75: if (lookahead == 'e') ADVANCE(112); END_STATE(); case 76: if (lookahead == 's') ADVANCE(113); END_STATE(); case 77: if (lookahead == 'e') ADVANCE(114); END_STATE(); case 78: if (lookahead == 'l') ADVANCE(115); END_STATE(); case 79: if (lookahead == 'f') ADVANCE(116); if (lookahead == 'j') ADVANCE(117); if (lookahead == 's') ADVANCE(118); END_STATE(); case 80: if (lookahead == 'n') ADVANCE(119); END_STATE(); case 81: if (lookahead == 'e') ADVANCE(120); END_STATE(); case 82: if (lookahead == 'e') ADVANCE(121); END_STATE(); case 83: if (lookahead == 'l') ADVANCE(122); END_STATE(); case 84: if (lookahead == 'k') ADVANCE(123); END_STATE(); case 85: if (lookahead == 't') ADVANCE(124); END_STATE(); case 86: ACCEPT_TOKEN(anon_sym_zsh); END_STATE(); case 87: if (lookahead == 'n') ADVANCE(125); END_STATE(); case 88: if (lookahead == 'r') ADVANCE(126); END_STATE(); case 89: if (lookahead == 'c') ADVANCE(127); END_STATE(); case 90: ACCEPT_TOKEN(anon_sym_bash); END_STATE(); case 91: if (lookahead == 'm') ADVANCE(128); END_STATE(); case 92: if (lookahead == 'e') ADVANCE(129); END_STATE(); case 93: if (lookahead == 'l') ADVANCE(130); END_STATE(); case 94: ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 95: if (lookahead == 'e') ADVANCE(131); END_STATE(); case 96: if (lookahead == 'e') ADVANCE(132); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_find); END_STATE(); case 98: ACCEPT_TOKEN(anon_sym_fish); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_from); if (lookahead == '_') ADVANCE(133); END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_help); END_STATE(); case 101: if (lookahead == 'r') ADVANCE(134); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_into); END_STATE(); case 103: if (lookahead == 't') ADVANCE(135); END_STATE(); case 104: if (lookahead == 'h') ADVANCE(136); END_STATE(); case 105: if (lookahead == 'd') ADVANCE(137); END_STATE(); case 106: ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 107: if (lookahead == 'u') ADVANCE(138); END_STATE(); case 108: if (lookahead == 'o') ADVANCE(139); END_STATE(); case 109: ACCEPT_TOKEN(anon_sym_read); END_STATE(); case 110: if (lookahead == 'c') ADVANCE(140); END_STATE(); case 111: if (lookahead == 'v') ADVANCE(141); END_STATE(); case 112: if (lookahead == 'r') ADVANCE(142); END_STATE(); case 113: ACCEPT_TOKEN(anon_sym_rows); END_STATE(); case 114: if (lookahead == 'c') ADVANCE(143); END_STATE(); case 115: if (lookahead == 'e') ADVANCE(144); END_STATE(); case 116: if (lookahead == 'l') ADVANCE(145); END_STATE(); case 117: if (lookahead == 's') ADVANCE(146); END_STATE(); case 118: if (lookahead == 't') ADVANCE(147); END_STATE(); case 119: if (lookahead == 's') ADVANCE(148); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 121: ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 122: if (lookahead == 'e') ADVANCE(149); END_STATE(); case 123: if (lookahead == 'd') ADVANCE(150); END_STATE(); case 124: if (lookahead == 'e') ADVANCE(151); END_STATE(); case 125: if (lookahead == 'd') ADVANCE(152); END_STATE(); case 126: if (lookahead == 't') ADVANCE(153); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 128: if (lookahead == 'n') ADVANCE(154); END_STATE(); case 129: if (lookahead == 'x') ADVANCE(155); END_STATE(); case 130: if (lookahead == 'o') ADVANCE(156); END_STATE(); case 131: ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 132: if (lookahead == 'r') ADVANCE(157); END_STATE(); case 133: if (lookahead == 'j') ADVANCE(158); END_STATE(); case 134: if (lookahead == 't') ADVANCE(159); END_STATE(); case 135: if (lookahead == 'h') ADVANCE(160); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 137: if (lookahead == 'a') ADVANCE(161); END_STATE(); case 138: if (lookahead == 't') ADVANCE(162); END_STATE(); case 139: if (lookahead == 'm') ADVANCE(163); END_STATE(); case 140: if (lookahead == 'e') ADVANCE(164); END_STATE(); case 141: if (lookahead == 'e') ADVANCE(165); END_STATE(); case 142: if (lookahead == 's') ADVANCE(166); END_STATE(); case 143: if (lookahead == 't') ADVANCE(167); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_table); END_STATE(); case 145: if (lookahead == 'o') ADVANCE(168); END_STATE(); case 146: if (lookahead == 'o') ADVANCE(169); END_STATE(); case 147: if (lookahead == 'r') ADVANCE(170); END_STATE(); case 148: if (lookahead == 'f') ADVANCE(171); END_STATE(); case 149: ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 150: if (lookahead == 'i') ADVANCE(172); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_write); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_append); END_STATE(); case 153: ACCEPT_TOKEN(anon_sym_assert); if (lookahead == '_') ADVANCE(173); END_STATE(); case 154: if (lookahead == 's') ADVANCE(174); END_STATE(); case 155: if (lookahead == 't') ADVANCE(175); END_STATE(); case 156: if (lookahead == 'a') ADVANCE(176); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_filter); END_STATE(); case 158: if (lookahead == 's') ADVANCE(177); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_insert); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_length); END_STATE(); case 161: if (lookahead == 't') ADVANCE(178); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_output); if (lookahead == '_') ADVANCE(179); END_STATE(); case 163: ACCEPT_TOKEN(anon_sym_random); if (lookahead == '_') ADVANCE(180); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_reduce); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_remove); END_STATE(); case 166: if (lookahead == 'e') ADVANCE(181); END_STATE(); case 167: ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 168: if (lookahead == 'a') ADVANCE(182); END_STATE(); case 169: if (lookahead == 'n') ADVANCE(183); END_STATE(); case 170: if (lookahead == 'i') ADVANCE(184); END_STATE(); case 171: if (lookahead == 'o') ADVANCE(185); END_STATE(); case 172: if (lookahead == 'r') ADVANCE(186); END_STATE(); case 173: if (lookahead == 'e') ADVANCE(187); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_columns); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_context); END_STATE(); case 176: if (lookahead == 'd') ADVANCE(188); END_STATE(); case 177: if (lookahead == 'o') ADVANCE(189); END_STATE(); case 178: if (lookahead == 'a') ADVANCE(190); END_STATE(); case 179: if (lookahead == 'e') ADVANCE(191); END_STATE(); case 180: if (lookahead == 'b') ADVANCE(192); if (lookahead == 'f') ADVANCE(193); if (lookahead == 'i') ADVANCE(194); END_STATE(); case 181: ACCEPT_TOKEN(anon_sym_reverse); END_STATE(); case 182: if (lookahead == 't') ADVANCE(195); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_to_json); END_STATE(); case 184: if (lookahead == 'n') ADVANCE(196); END_STATE(); case 185: if (lookahead == 'r') ADVANCE(197); END_STATE(); case 186: ACCEPT_TOKEN(anon_sym_workdir); END_STATE(); case 187: if (lookahead == 'q') ADVANCE(198); END_STATE(); case 188: ACCEPT_TOKEN(anon_sym_download); END_STATE(); case 189: if (lookahead == 'n') ADVANCE(199); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_metadata); END_STATE(); case 191: if (lookahead == 'r') ADVANCE(200); END_STATE(); case 192: if (lookahead == 'o') ADVANCE(201); END_STATE(); case 193: if (lookahead == 'l') ADVANCE(202); END_STATE(); case 194: if (lookahead == 'n') ADVANCE(203); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_to_float); END_STATE(); case 196: if (lookahead == 'g') ADVANCE(204); END_STATE(); case 197: if (lookahead == 'm') ADVANCE(205); END_STATE(); case 198: if (lookahead == 'u') ADVANCE(206); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_from_json); END_STATE(); case 200: if (lookahead == 'r') ADVANCE(207); END_STATE(); case 201: if (lookahead == 'o') ADVANCE(208); END_STATE(); case 202: if (lookahead == 'o') ADVANCE(209); END_STATE(); case 203: if (lookahead == 't') ADVANCE(210); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_to_string); END_STATE(); case 205: ACCEPT_TOKEN(anon_sym_transform); END_STATE(); case 206: if (lookahead == 'a') ADVANCE(211); END_STATE(); case 207: if (lookahead == 'o') ADVANCE(212); END_STATE(); case 208: if (lookahead == 'l') ADVANCE(213); END_STATE(); case 209: if (lookahead == 'a') ADVANCE(214); END_STATE(); case 210: if (lookahead == 'e') ADVANCE(215); END_STATE(); case 211: if (lookahead == 'l') ADVANCE(216); END_STATE(); case 212: if (lookahead == 'r') ADVANCE(217); END_STATE(); case 213: if (lookahead == 'e') ADVANCE(218); END_STATE(); case 214: if (lookahead == 't') ADVANCE(219); END_STATE(); case 215: if (lookahead == 'g') ADVANCE(220); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_assert_equal); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_output_error); END_STATE(); case 218: if (lookahead == 'a') ADVANCE(221); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_random_float); END_STATE(); case 220: if (lookahead == 'e') ADVANCE(222); END_STATE(); case 221: if (lookahead == 'n') ADVANCE(223); END_STATE(); case 222: if (lookahead == 'r') ADVANCE(224); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_random_boolean); END_STATE(); case 224: ACCEPT_TOKEN(anon_sym_random_integer); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 25}, [2] = {.lex_state = 4}, [3] = {.lex_state = 4}, [4] = {.lex_state = 4}, [5] = {.lex_state = 25}, [6] = {.lex_state = 25}, [7] = {.lex_state = 25}, [8] = {.lex_state = 25}, [9] = {.lex_state = 25}, [10] = {.lex_state = 25}, [11] = {.lex_state = 25}, [12] = {.lex_state = 25}, [13] = {.lex_state = 25}, [14] = {.lex_state = 25}, [15] = {.lex_state = 25}, [16] = {.lex_state = 25}, [17] = {.lex_state = 25}, [18] = {.lex_state = 25}, [19] = {.lex_state = 25}, [20] = {.lex_state = 25}, [21] = {.lex_state = 25}, [22] = {.lex_state = 25}, [23] = {.lex_state = 25}, [24] = {.lex_state = 25}, [25] = {.lex_state = 25}, [26] = {.lex_state = 25}, [27] = {.lex_state = 25}, [28] = {.lex_state = 25}, [29] = {.lex_state = 25}, [30] = {.lex_state = 25}, [31] = {.lex_state = 25}, [32] = {.lex_state = 25}, [33] = {.lex_state = 25}, [34] = {.lex_state = 25}, [35] = {.lex_state = 25}, [36] = {.lex_state = 25}, [37] = {.lex_state = 25}, [38] = {.lex_state = 25}, [39] = {.lex_state = 25}, [40] = {.lex_state = 25}, [41] = {.lex_state = 23}, [42] = {.lex_state = 24}, [43] = {.lex_state = 24}, [44] = {.lex_state = 24}, [45] = {.lex_state = 24}, [46] = {.lex_state = 24}, [47] = {.lex_state = 23}, [48] = {.lex_state = 24}, [49] = {.lex_state = 24}, [50] = {.lex_state = 24}, [51] = {.lex_state = 24}, [52] = {.lex_state = 24}, [53] = {.lex_state = 24}, [54] = {.lex_state = 24}, [55] = {.lex_state = 24}, [56] = {.lex_state = 24}, [57] = {.lex_state = 24}, [58] = {.lex_state = 24}, [59] = {.lex_state = 24}, [60] = {.lex_state = 24}, [61] = {.lex_state = 24}, [62] = {.lex_state = 24}, [63] = {.lex_state = 24}, [64] = {.lex_state = 24}, [65] = {.lex_state = 24}, [66] = {.lex_state = 24}, [67] = {.lex_state = 24}, [68] = {.lex_state = 24}, [69] = {.lex_state = 25}, [70] = {.lex_state = 1}, [71] = {.lex_state = 25}, [72] = {.lex_state = 1}, [73] = {.lex_state = 1}, [74] = {.lex_state = 26}, [75] = {.lex_state = 26}, [76] = {.lex_state = 1}, [77] = {.lex_state = 26}, [78] = {.lex_state = 1}, [79] = {.lex_state = 1}, [80] = {.lex_state = 1}, [81] = {.lex_state = 1}, [82] = {.lex_state = 1}, [83] = {.lex_state = 1}, [84] = {.lex_state = 1}, [85] = {.lex_state = 1}, [86] = {.lex_state = 1}, [87] = {.lex_state = 26}, [88] = {.lex_state = 1}, [89] = {.lex_state = 26}, [90] = {.lex_state = 1}, [91] = {.lex_state = 1}, [92] = {.lex_state = 1}, [93] = {.lex_state = 1}, [94] = {.lex_state = 1}, [95] = {.lex_state = 26}, [96] = {.lex_state = 1}, [97] = {.lex_state = 1}, [98] = {.lex_state = 1}, [99] = {.lex_state = 1}, [100] = {.lex_state = 1}, [101] = {.lex_state = 1}, [102] = {.lex_state = 1}, [103] = {.lex_state = 1}, [104] = {.lex_state = 1}, [105] = {.lex_state = 26}, [106] = {.lex_state = 4}, [107] = {.lex_state = 4}, [108] = {.lex_state = 25}, [109] = {.lex_state = 25}, [110] = {.lex_state = 25}, [111] = {.lex_state = 25}, [112] = {.lex_state = 25}, [113] = {.lex_state = 25}, [114] = {.lex_state = 25}, [115] = {.lex_state = 25}, [116] = {.lex_state = 25}, [117] = {.lex_state = 25}, [118] = {.lex_state = 25}, [119] = {.lex_state = 25}, [120] = {.lex_state = 25}, [121] = {.lex_state = 25}, [122] = {.lex_state = 25}, [123] = {.lex_state = 25}, [124] = {.lex_state = 25}, [125] = {.lex_state = 25}, [126] = {.lex_state = 4}, [127] = {.lex_state = 4}, [128] = {.lex_state = 4}, [129] = {.lex_state = 4}, [130] = {.lex_state = 4}, [131] = {.lex_state = 4}, [132] = {.lex_state = 4}, [133] = {.lex_state = 4}, [134] = {.lex_state = 4}, [135] = {.lex_state = 4}, [136] = {.lex_state = 4}, [137] = {.lex_state = 2}, [138] = {.lex_state = 4}, [139] = {.lex_state = 4}, [140] = {.lex_state = 4}, [141] = {.lex_state = 4}, [142] = {.lex_state = 4}, [143] = {.lex_state = 4}, [144] = {.lex_state = 4}, [145] = {.lex_state = 4}, [146] = {.lex_state = 4}, [147] = {.lex_state = 4}, [148] = {.lex_state = 4}, [149] = {.lex_state = 4}, [150] = {.lex_state = 4}, [151] = {.lex_state = 4}, [152] = {.lex_state = 4}, [153] = {.lex_state = 4}, [154] = {.lex_state = 4}, [155] = {.lex_state = 4}, [156] = {.lex_state = 4}, [157] = {.lex_state = 2}, [158] = {.lex_state = 4}, [159] = {.lex_state = 4}, [160] = {.lex_state = 4}, [161] = {.lex_state = 2}, [162] = {.lex_state = 4}, [163] = {.lex_state = 4}, [164] = {.lex_state = 4}, [165] = {.lex_state = 4}, [166] = {.lex_state = 4}, [167] = {.lex_state = 4}, [168] = {.lex_state = 4}, [169] = {.lex_state = 4}, [170] = {.lex_state = 4}, [171] = {.lex_state = 4}, [172] = {.lex_state = 4}, [173] = {.lex_state = 4}, [174] = {.lex_state = 4}, [175] = {.lex_state = 4}, [176] = {.lex_state = 4}, [177] = {.lex_state = 4}, [178] = {.lex_state = 4}, [179] = {.lex_state = 2}, [180] = {.lex_state = 4}, [181] = {.lex_state = 2}, [182] = {.lex_state = 4}, [183] = {.lex_state = 4}, [184] = {.lex_state = 4}, [185] = {.lex_state = 4}, [186] = {.lex_state = 4}, [187] = {.lex_state = 4}, [188] = {.lex_state = 4}, [189] = {.lex_state = 4}, [190] = {.lex_state = 4}, [191] = {.lex_state = 4}, [192] = {.lex_state = 4}, [193] = {.lex_state = 4}, [194] = {.lex_state = 25}, [195] = {.lex_state = 4}, [196] = {.lex_state = 2}, [197] = {.lex_state = 4}, [198] = {.lex_state = 4}, [199] = {.lex_state = 2}, [200] = {.lex_state = 2}, [201] = {.lex_state = 2}, [202] = {.lex_state = 2}, [203] = {.lex_state = 2}, [204] = {.lex_state = 2}, [205] = {.lex_state = 2}, [206] = {.lex_state = 2}, [207] = {.lex_state = 2}, [208] = {.lex_state = 2}, [209] = {.lex_state = 2}, [210] = {.lex_state = 2}, [211] = {.lex_state = 2}, [212] = {.lex_state = 2}, [213] = {.lex_state = 2}, [214] = {.lex_state = 2}, [215] = {.lex_state = 2}, [216] = {.lex_state = 2}, [217] = {.lex_state = 3}, [218] = {.lex_state = 2}, [219] = {.lex_state = 2}, [220] = {.lex_state = 2}, [221] = {.lex_state = 2}, [222] = {.lex_state = 2}, [223] = {.lex_state = 2}, [224] = {.lex_state = 2}, [225] = {.lex_state = 2}, [226] = {.lex_state = 2}, [227] = {.lex_state = 2}, [228] = {.lex_state = 2}, [229] = {.lex_state = 2}, [230] = {.lex_state = 2}, [231] = {.lex_state = 2}, [232] = {.lex_state = 2}, [233] = {.lex_state = 2}, [234] = {.lex_state = 2}, [235] = {.lex_state = 2}, [236] = {.lex_state = 2}, [237] = {.lex_state = 2}, [238] = {.lex_state = 2}, [239] = {.lex_state = 2}, [240] = {.lex_state = 2}, [241] = {.lex_state = 2}, [242] = {.lex_state = 2}, [243] = {.lex_state = 2}, [244] = {.lex_state = 2}, [245] = {.lex_state = 2}, [246] = {.lex_state = 2}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, [249] = {.lex_state = 4}, [250] = {.lex_state = 2}, [251] = {.lex_state = 4}, [252] = {.lex_state = 4}, [253] = {.lex_state = 4}, [254] = {.lex_state = 4}, [255] = {.lex_state = 4}, [256] = {.lex_state = 4}, [257] = {.lex_state = 4}, [258] = {.lex_state = 4}, [259] = {.lex_state = 6}, [260] = {.lex_state = 6}, [261] = {.lex_state = 6}, [262] = {.lex_state = 6}, [263] = {.lex_state = 6}, [264] = {.lex_state = 6}, [265] = {.lex_state = 6}, [266] = {.lex_state = 4}, [267] = {.lex_state = 4}, [268] = {.lex_state = 4}, [269] = {.lex_state = 4}, [270] = {.lex_state = 4}, [271] = {.lex_state = 4}, [272] = {.lex_state = 4}, [273] = {.lex_state = 4}, [274] = {.lex_state = 4}, [275] = {.lex_state = 4}, [276] = {.lex_state = 4}, [277] = {.lex_state = 4}, [278] = {.lex_state = 4}, [279] = {.lex_state = 4}, [280] = {.lex_state = 4}, [281] = {.lex_state = 4}, [282] = {.lex_state = 4}, [283] = {.lex_state = 4}, [284] = {.lex_state = 4}, [285] = {.lex_state = 4}, [286] = {.lex_state = 4}, [287] = {.lex_state = 4}, [288] = {.lex_state = 4}, [289] = {.lex_state = 4}, [290] = {.lex_state = 4}, [291] = {.lex_state = 4}, [292] = {.lex_state = 4}, [293] = {.lex_state = 4}, [294] = {.lex_state = 4}, [295] = {.lex_state = 4}, [296] = {.lex_state = 4}, [297] = {.lex_state = 4}, [298] = {.lex_state = 4}, [299] = {.lex_state = 4}, [300] = {.lex_state = 4}, [301] = {.lex_state = 4}, [302] = {.lex_state = 4}, [303] = {.lex_state = 25}, [304] = {.lex_state = 25}, [305] = {.lex_state = 25}, [306] = {.lex_state = 25}, [307] = {.lex_state = 25}, [308] = {.lex_state = 4}, [309] = {.lex_state = 25}, [310] = {.lex_state = 25}, [311] = {.lex_state = 4}, [312] = {.lex_state = 25}, [313] = {.lex_state = 4}, [314] = {.lex_state = 4}, [315] = {.lex_state = 4}, [316] = {.lex_state = 4}, [317] = {.lex_state = 4}, [318] = {.lex_state = 0}, [319] = {.lex_state = 4}, [320] = {.lex_state = 0}, [321] = {.lex_state = 0}, [322] = {.lex_state = 0}, [323] = {.lex_state = 4}, [324] = {.lex_state = 0}, [325] = {.lex_state = 4}, [326] = {.lex_state = 4}, [327] = {.lex_state = 0}, [328] = {.lex_state = 4}, [329] = {.lex_state = 4}, [330] = {.lex_state = 4}, [331] = {.lex_state = 4}, [332] = {.lex_state = 4}, [333] = {.lex_state = 25}, [334] = {.lex_state = 0}, [335] = {.lex_state = 0}, [336] = {.lex_state = 4}, [337] = {.lex_state = 4}, [338] = {.lex_state = 4}, [339] = {.lex_state = 4}, [340] = {.lex_state = 4}, [341] = {.lex_state = 4}, [342] = {.lex_state = 4}, [343] = {.lex_state = 4}, [344] = {.lex_state = 4}, [345] = {.lex_state = 4}, [346] = {.lex_state = 0}, [347] = {.lex_state = 0}, [348] = {.lex_state = 0}, [349] = {.lex_state = 0}, [350] = {.lex_state = 0}, [351] = {.lex_state = 4}, [352] = {.lex_state = 4}, [353] = {.lex_state = 4}, [354] = {.lex_state = 4}, [355] = {.lex_state = 4}, [356] = {.lex_state = 0}, [357] = {.lex_state = 4}, [358] = {.lex_state = 4}, [359] = {.lex_state = 4}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym_string] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_elseif] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_asyncfor] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_transform] = ACTIONS(1), [anon_sym_filter] = ACTIONS(1), [anon_sym_find] = ACTIONS(1), [anon_sym_remove] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), [anon_sym_reduce] = ACTIONS(1), [anon_sym_to] = ACTIONS(1), [anon_sym_select] = ACTIONS(1), [anon_sym_insert] = ACTIONS(1), [anon_sym_into] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_table] = ACTIONS(1), [anon_sym_assert] = ACTIONS(1), [anon_sym_assert_equal] = ACTIONS(1), [anon_sym_context] = ACTIONS(1), [anon_sym_download] = ACTIONS(1), [anon_sym_help] = ACTIONS(1), [anon_sym_length] = ACTIONS(1), [anon_sym_output] = ACTIONS(1), [anon_sym_output_error] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), [anon_sym_append] = ACTIONS(1), [anon_sym_metadata] = ACTIONS(1), [anon_sym_move] = ACTIONS(1), [anon_sym_read] = ACTIONS(1), [anon_sym_workdir] = ACTIONS(1), [anon_sym_write] = ACTIONS(1), [anon_sym_from_json] = ACTIONS(1), [anon_sym_to_json] = ACTIONS(1), [anon_sym_to_string] = ACTIONS(1), [anon_sym_to_float] = ACTIONS(1), [anon_sym_bash] = ACTIONS(1), [anon_sym_fish] = ACTIONS(1), [anon_sym_raw] = ACTIONS(1), [anon_sym_sh] = ACTIONS(1), [anon_sym_zsh] = ACTIONS(1), [anon_sym_random] = ACTIONS(1), [anon_sym_random_boolean] = ACTIONS(1), [anon_sym_random_float] = ACTIONS(1), [anon_sym_random_integer] = ACTIONS(1), [anon_sym_columns] = ACTIONS(1), [anon_sym_rows] = ACTIONS(1), [anon_sym_reverse] = ACTIONS(1), }, [1] = { [sym_root] = STATE(321), [sym_block] = STATE(109), [sym_statement] = STATE(15), [sym_expression] = STATE(53), [sym__expression_kind] = STATE(57), [sym_value] = STATE(57), [sym_boolean] = STATE(66), [sym_list] = STATE(66), [sym_map] = STATE(66), [sym_index] = STATE(57), [sym_math] = STATE(57), [sym_logic] = STATE(57), [sym_assignment] = STATE(109), [sym_if_else] = STATE(109), [sym_if] = STATE(74), [sym_match] = STATE(109), [sym_while] = STATE(109), [sym_for] = STATE(109), [sym_transform] = STATE(109), [sym_filter] = STATE(109), [sym_find] = STATE(109), [sym_remove] = STATE(109), [sym_reduce] = STATE(109), [sym_select] = STATE(109), [sym_insert] = STATE(109), [sym_identifier_list] = STATE(322), [sym_table] = STATE(66), [sym_function] = STATE(66), [sym_function_call] = STATE(57), [aux_sym_root_repeat1] = STATE(15), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), [sym_integer] = ACTIONS(13), [sym_float] = ACTIONS(15), [sym_string] = ACTIONS(15), [anon_sym_true] = ACTIONS(17), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACK] = ACTIONS(19), [anon_sym_if] = ACTIONS(21), [anon_sym_match] = ACTIONS(23), [anon_sym_EQ_GT] = ACTIONS(25), [anon_sym_while] = ACTIONS(27), [anon_sym_for] = ACTIONS(29), [anon_sym_asyncfor] = ACTIONS(31), [anon_sym_transform] = ACTIONS(33), [anon_sym_filter] = ACTIONS(35), [anon_sym_find] = ACTIONS(37), [anon_sym_remove] = ACTIONS(39), [anon_sym_reduce] = ACTIONS(41), [anon_sym_select] = ACTIONS(43), [anon_sym_insert] = ACTIONS(45), [anon_sym_PIPE] = ACTIONS(47), [anon_sym_table] = ACTIONS(49), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(51), 1, sym_identifier, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, STATE(128), 1, sym__built_in_function_name, STATE(245), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(335), 2, sym__context_defined_function, sym_built_in_function, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(248), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(69), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, anon_sym_download, anon_sym_help, anon_sym_length, anon_sym_output, anon_sym_output_error, anon_sym_type, anon_sym_append, anon_sym_metadata, anon_sym_move, anon_sym_read, anon_sym_workdir, anon_sym_write, anon_sym_from_json, anon_sym_to_json, anon_sym_to_string, anon_sym_to_float, anon_sym_bash, anon_sym_fish, anon_sym_raw, anon_sym_sh, anon_sym_zsh, anon_sym_random, anon_sym_random_boolean, anon_sym_random_float, anon_sym_random_integer, anon_sym_columns, anon_sym_rows, anon_sym_reverse, [97] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(51), 1, sym_identifier, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, STATE(128), 1, sym__built_in_function_name, STATE(245), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(320), 2, sym__context_defined_function, sym_built_in_function, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(250), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(69), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, anon_sym_download, anon_sym_help, anon_sym_length, anon_sym_output, anon_sym_output_error, anon_sym_type, anon_sym_append, anon_sym_metadata, anon_sym_move, anon_sym_read, anon_sym_workdir, anon_sym_write, anon_sym_from_json, anon_sym_to_json, anon_sym_to_string, anon_sym_to_float, anon_sym_bash, anon_sym_fish, anon_sym_raw, anon_sym_sh, anon_sym_zsh, anon_sym_random, anon_sym_random_boolean, anon_sym_random_float, anon_sym_random_integer, anon_sym_columns, anon_sym_rows, anon_sym_reverse, [194] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(51), 1, sym_identifier, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, STATE(128), 1, sym__built_in_function_name, STATE(245), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(318), 2, sym__context_defined_function, sym_built_in_function, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(247), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(69), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, anon_sym_download, anon_sym_help, anon_sym_length, anon_sym_output, anon_sym_output_error, anon_sym_type, anon_sym_append, anon_sym_metadata, anon_sym_move, anon_sym_read, anon_sym_workdir, anon_sym_write, anon_sym_from_json, anon_sym_to_json, anon_sym_to_string, anon_sym_to_float, anon_sym_bash, anon_sym_fish, anon_sym_raw, anon_sym_sh, anon_sym_zsh, anon_sym_random, anon_sym_random_boolean, anon_sym_random_float, anon_sym_random_integer, anon_sym_columns, anon_sym_rows, anon_sym_reverse, [291] = 33, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(71), 1, sym_identifier, ACTIONS(73), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(291), 1, aux_sym_map_repeat1, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(13), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [415] = 33, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(71), 1, sym_identifier, ACTIONS(75), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(288), 1, aux_sym_map_repeat1, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(21), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [539] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(79), 1, sym_identifier, ACTIONS(82), 1, anon_sym_async, ACTIONS(85), 1, anon_sym_LBRACE, ACTIONS(88), 1, anon_sym_LPAREN, ACTIONS(91), 1, sym_integer, ACTIONS(100), 1, anon_sym_LBRACK, ACTIONS(103), 1, anon_sym_if, ACTIONS(106), 1, anon_sym_match, ACTIONS(109), 1, anon_sym_EQ_GT, ACTIONS(112), 1, anon_sym_while, ACTIONS(115), 1, anon_sym_for, ACTIONS(118), 1, anon_sym_asyncfor, ACTIONS(121), 1, anon_sym_transform, ACTIONS(124), 1, anon_sym_filter, ACTIONS(127), 1, anon_sym_find, ACTIONS(130), 1, anon_sym_remove, ACTIONS(133), 1, anon_sym_reduce, ACTIONS(136), 1, anon_sym_select, ACTIONS(139), 1, anon_sym_insert, ACTIONS(142), 1, anon_sym_PIPE, ACTIONS(145), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(77), 2, ts_builtin_sym_end, anon_sym_RBRACE, ACTIONS(94), 2, sym_float, sym_string, ACTIONS(97), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [661] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(148), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [782] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(150), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [903] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(152), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1024] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(154), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1145] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(156), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1266] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1387] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(160), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1508] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(162), 1, ts_builtin_sym_end, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1629] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(164), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1750] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(166), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1871] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(168), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [1992] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(170), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2113] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(172), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2234] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(174), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2355] = 32, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(176), 1, anon_sym_RBRACE, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2476] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(10), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2594] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(21), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2712] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(22), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2830] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(12), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [2948] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(13), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3066] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(19), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3184] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3302] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(14), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3420] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(20), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3538] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(8), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3656] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(16), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3774] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(18), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [3892] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(17), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4010] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(11), 2, sym_statement, aux_sym_root_repeat1, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4128] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(178), 1, sym_identifier, ACTIONS(180), 1, anon_sym_async, ACTIONS(182), 1, anon_sym_LBRACE, ACTIONS(184), 1, anon_sym_if, ACTIONS(186), 1, anon_sym_match, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_for, ACTIONS(192), 1, anon_sym_asyncfor, ACTIONS(194), 1, anon_sym_transform, ACTIONS(196), 1, anon_sym_filter, ACTIONS(198), 1, anon_sym_find, ACTIONS(200), 1, anon_sym_remove, ACTIONS(202), 1, anon_sym_reduce, ACTIONS(204), 1, anon_sym_select, ACTIONS(206), 1, anon_sym_insert, STATE(219), 1, sym_expression, STATE(260), 1, sym_if, STATE(277), 1, sym_statement, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(266), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4245] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(178), 1, sym_identifier, ACTIONS(180), 1, anon_sym_async, ACTIONS(182), 1, anon_sym_LBRACE, ACTIONS(184), 1, anon_sym_if, ACTIONS(186), 1, anon_sym_match, ACTIONS(188), 1, anon_sym_while, ACTIONS(190), 1, anon_sym_for, ACTIONS(192), 1, anon_sym_asyncfor, ACTIONS(194), 1, anon_sym_transform, ACTIONS(196), 1, anon_sym_filter, ACTIONS(198), 1, anon_sym_find, ACTIONS(200), 1, anon_sym_remove, ACTIONS(202), 1, anon_sym_reduce, ACTIONS(204), 1, anon_sym_select, ACTIONS(206), 1, anon_sym_insert, STATE(219), 1, sym_expression, STATE(260), 1, sym_if, STATE(301), 1, sym_statement, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(266), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4362] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(208), 1, sym_identifier, ACTIONS(211), 1, anon_sym_async, ACTIONS(214), 1, anon_sym_LBRACE, ACTIONS(217), 1, anon_sym_LPAREN, ACTIONS(220), 1, sym_integer, ACTIONS(229), 1, anon_sym_LBRACK, ACTIONS(232), 1, anon_sym_if, ACTIONS(235), 1, anon_sym_match, ACTIONS(238), 1, anon_sym_EQ_GT, ACTIONS(241), 1, anon_sym_while, ACTIONS(244), 1, anon_sym_for, ACTIONS(247), 1, anon_sym_asyncfor, ACTIONS(250), 1, anon_sym_transform, ACTIONS(253), 1, anon_sym_filter, ACTIONS(256), 1, anon_sym_find, ACTIONS(259), 1, anon_sym_remove, ACTIONS(262), 1, anon_sym_reduce, ACTIONS(265), 1, anon_sym_select, ACTIONS(268), 1, anon_sym_insert, ACTIONS(271), 1, anon_sym_PIPE, ACTIONS(274), 1, anon_sym_table, STATE(219), 1, sym_expression, STATE(260), 1, sym_if, STATE(301), 1, sym_statement, STATE(327), 1, sym_identifier_list, ACTIONS(223), 2, sym_float, sym_string, ACTIONS(226), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(266), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4479] = 31, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(27), 1, anon_sym_while, ACTIONS(29), 1, anon_sym_for, ACTIONS(31), 1, anon_sym_asyncfor, ACTIONS(33), 1, anon_sym_transform, ACTIONS(35), 1, anon_sym_filter, ACTIONS(37), 1, anon_sym_find, ACTIONS(39), 1, anon_sym_remove, ACTIONS(41), 1, anon_sym_reduce, ACTIONS(43), 1, anon_sym_select, ACTIONS(45), 1, anon_sym_insert, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, STATE(53), 1, sym_expression, STATE(74), 1, sym_if, STATE(124), 1, sym_statement, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, STATE(109), 13, sym_block, sym_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_transform, sym_filter, sym_find, sym_remove, sym_reduce, sym_select, sym_insert, [4596] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(281), 1, anon_sym_EQ, STATE(40), 1, sym_assignment_operator, ACTIONS(283), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(277), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(279), 22, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [4656] = 5, ACTIONS(3), 1, sym__comment, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(287), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(285), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [4713] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(293), 1, anon_sym_DOT_DOT, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(289), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(291), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [4772] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(301), 1, anon_sym_COLON, ACTIONS(305), 1, anon_sym_DASH, STATE(122), 1, sym_block, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(295), 9, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(297), 17, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [4845] = 5, ACTIONS(3), 1, sym__comment, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(291), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(289), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [4902] = 5, ACTIONS(3), 1, sym__comment, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(313), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(311), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [4959] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(315), 1, anon_sym_EQ, STATE(40), 1, sym_assignment_operator, ACTIONS(283), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(277), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(279), 22, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5018] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(321), 1, anon_sym_COLON, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(317), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(319), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5085] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(321), 1, anon_sym_COLON, STATE(144), 1, sym_math_operator, STATE(186), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(323), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(325), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5152] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(301), 1, anon_sym_COLON, ACTIONS(305), 1, anon_sym_DASH, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(327), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(329), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5218] = 5, ACTIONS(3), 1, sym__comment, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(285), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(287), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5274] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(301), 1, anon_sym_COLON, ACTIONS(305), 1, anon_sym_DASH, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(317), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(319), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5340] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(301), 1, anon_sym_COLON, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(335), 1, anon_sym_SEMI, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(331), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(333), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5408] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(301), 1, anon_sym_COLON, ACTIONS(305), 1, anon_sym_DASH, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(323), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(325), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5474] = 5, ACTIONS(3), 1, sym__comment, STATE(150), 1, sym_logic_operator, STATE(158), 1, sym_math_operator, ACTIONS(311), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(313), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, [5530] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(339), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(337), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5581] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(343), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(341), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5632] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(345), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5683] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(351), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(349), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5734] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(355), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(353), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5785] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(359), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(357), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5836] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(363), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(361), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5887] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(367), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(365), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5938] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(371), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(369), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [5989] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(375), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(373), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [6040] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(379), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(377), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [6091] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(383), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(381), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [6142] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(387), 21, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_PIPE, anon_sym_table, ACTIONS(385), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, [6193] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(391), 1, sym_identifier, ACTIONS(396), 1, anon_sym_LBRACE, ACTIONS(399), 1, anon_sym_LPAREN, ACTIONS(402), 1, sym_integer, ACTIONS(411), 1, anon_sym_LBRACK, ACTIONS(414), 1, anon_sym_EQ_GT, ACTIONS(417), 1, anon_sym_PIPE, ACTIONS(420), 1, anon_sym_table, STATE(69), 1, aux_sym_match_repeat1, STATE(241), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(405), 2, sym_float, sym_string, ACTIONS(408), 2, anon_sym_true, anon_sym_false, ACTIONS(389), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_asyncfor, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(394), 12, anon_sym_async, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, [6273] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(423), 1, sym_identifier, ACTIONS(425), 1, anon_sym_COLON, ACTIONS(427), 1, anon_sym_PIPE, STATE(106), 1, aux_sym_match_repeat1, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, STATE(240), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [6363] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(69), 1, aux_sym_match_repeat1, STATE(241), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, ACTIONS(429), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_asyncfor, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(431), 12, anon_sym_async, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, [6443] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(423), 1, sym_identifier, ACTIONS(425), 1, anon_sym_COLON, ACTIONS(427), 1, anon_sym_PIPE, STATE(71), 1, aux_sym_match_repeat1, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, STATE(241), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [6533] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(427), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(439), 1, anon_sym_RPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(93), 1, sym_expression, STATE(132), 1, aux_sym__expression_list, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, ACTIONS(279), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, ACTIONS(277), 11, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [6614] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(457), 1, anon_sym_elseif, ACTIONS(459), 1, anon_sym_else, STATE(119), 1, sym_else, STATE(75), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(453), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(455), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [6663] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(457), 1, anon_sym_elseif, ACTIONS(459), 1, anon_sym_else, STATE(113), 1, sym_else, STATE(77), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(461), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(463), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [6712] = 5, ACTIONS(3), 1, sym__comment, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(291), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(289), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [6756] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(469), 1, anon_sym_elseif, STATE(77), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(465), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(467), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [6800] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(472), 1, anon_sym_DOT_DOT, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(291), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(289), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [6846] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(474), 1, anon_sym_COLON, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(325), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(323), 10, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, [6900] = 5, ACTIONS(3), 1, sym__comment, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(287), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(285), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [6944] = 5, ACTIONS(3), 1, sym__comment, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(313), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(311), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [6988] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(474), 1, anon_sym_COLON, STATE(141), 1, sym_math_operator, STATE(154), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(319), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(317), 10, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, [7042] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(425), 1, anon_sym_COLON, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(319), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(317), 9, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, [7095] = 5, ACTIONS(3), 1, sym__comment, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(313), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(311), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7138] = 5, ACTIONS(3), 1, sym__comment, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(287), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(285), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7181] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(425), 1, anon_sym_COLON, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(325), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(323), 9, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, [7234] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(476), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(478), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [7272] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(351), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(349), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7310] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(480), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(482), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [7348] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(425), 1, anon_sym_COLON, ACTIONS(488), 1, anon_sym_COMMA, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(484), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(486), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, [7402] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(343), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(341), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7440] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(371), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(369), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7478] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, anon_sym_DASH, ACTIONS(425), 1, anon_sym_COLON, ACTIONS(494), 1, anon_sym_COMMA, STATE(168), 1, sym_logic_operator, STATE(169), 1, sym_math_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(490), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(492), 7, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, [7532] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(345), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7570] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(345), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(347), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [7608] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(363), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(361), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7646] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(367), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(365), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7684] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(387), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(385), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7722] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(383), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(381), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7760] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(359), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(357), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7798] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(355), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(353), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7836] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(339), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(337), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7874] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(375), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(373), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7912] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(379), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(377), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [7950] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(369), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(371), 18, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [7988] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(107), 1, aux_sym_match_repeat1, STATE(240), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, ACTIONS(429), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [8053] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(391), 1, sym_identifier, ACTIONS(396), 1, anon_sym_LBRACE, ACTIONS(399), 1, anon_sym_LPAREN, ACTIONS(402), 1, sym_integer, ACTIONS(411), 1, anon_sym_LBRACK, ACTIONS(414), 1, anon_sym_EQ_GT, ACTIONS(417), 1, anon_sym_PIPE, ACTIONS(420), 1, anon_sym_table, STATE(107), 1, aux_sym_match_repeat1, STATE(240), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(405), 2, sym_float, sym_string, ACTIONS(408), 2, anon_sym_true, anon_sym_false, ACTIONS(389), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [8118] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(496), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(498), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8154] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(335), 1, anon_sym_SEMI, ACTIONS(331), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(333), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8192] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(345), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(347), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8228] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(500), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(502), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8264] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(504), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(506), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8300] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(508), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(510), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8336] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(512), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(514), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8372] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(516), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(518), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8408] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(369), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(371), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8444] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(520), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(522), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8480] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(524), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(526), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8516] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(461), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(463), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8552] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(528), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(530), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8588] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(532), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(534), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8624] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(536), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(538), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8660] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(540), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(542), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8696] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(544), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(546), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8732] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(548), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(550), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [8768] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(552), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(130), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [8831] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(554), 1, anon_sym_RPAREN, STATE(93), 1, sym_expression, STATE(129), 1, aux_sym__expression_list, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [8894] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(556), 1, anon_sym_RPAREN, STATE(93), 1, sym_expression, STATE(127), 1, aux_sym__expression_list, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [8957] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(558), 1, sym_identifier, ACTIONS(561), 1, anon_sym_LBRACE, ACTIONS(564), 1, anon_sym_LPAREN, ACTIONS(567), 1, anon_sym_RPAREN, ACTIONS(569), 1, sym_integer, ACTIONS(578), 1, anon_sym_LBRACK, ACTIONS(581), 1, anon_sym_EQ_GT, ACTIONS(584), 1, anon_sym_PIPE, ACTIONS(587), 1, anon_sym_table, STATE(93), 1, sym_expression, STATE(129), 1, aux_sym__expression_list, STATE(324), 1, sym_identifier_list, ACTIONS(572), 2, sym_float, sym_string, ACTIONS(575), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9020] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(590), 1, sym_identifier, ACTIONS(593), 1, anon_sym_LBRACE, ACTIONS(596), 1, anon_sym_LPAREN, ACTIONS(599), 1, sym_integer, ACTIONS(608), 1, anon_sym_LBRACK, ACTIONS(611), 1, anon_sym_RBRACK, ACTIONS(613), 1, anon_sym_EQ_GT, ACTIONS(616), 1, anon_sym_PIPE, ACTIONS(619), 1, anon_sym_table, STATE(90), 1, sym_expression, STATE(130), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(602), 2, sym_float, sym_string, ACTIONS(605), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9083] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(622), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(133), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9146] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(624), 1, anon_sym_RPAREN, STATE(93), 1, sym_expression, STATE(129), 1, aux_sym__expression_list, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9209] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(626), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(130), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9272] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(628), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(130), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9335] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(630), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(134), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9398] = 17, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, ACTIONS(632), 1, anon_sym_RBRACK, STATE(90), 1, sym_expression, STATE(126), 1, aux_sym_list_repeat1, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9461] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(634), 1, anon_sym_COLON, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(325), 2, anon_sym_async, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(323), 7, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_EQ_GT, [9506] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, ACTIONS(640), 1, anon_sym_table, STATE(45), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9563] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(642), 1, sym_identifier, STATE(243), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9620] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(51), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9677] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(644), 1, anon_sym_table, STATE(81), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9734] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(230), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9791] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(423), 1, sym_identifier, ACTIONS(646), 1, anon_sym_table, STATE(161), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9848] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, ACTIONS(640), 1, anon_sym_table, STATE(46), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9905] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(236), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [9962] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(72), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10019] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(228), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10076] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(239), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10133] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(232), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10190] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(54), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10247] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(233), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10304] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(226), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10361] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(648), 1, sym_identifier, STATE(242), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10418] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(644), 1, anon_sym_table, STATE(79), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10475] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(225), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10532] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(644), 1, anon_sym_table, STATE(82), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10589] = 5, ACTIONS(3), 1, sym__comment, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(287), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(285), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [10626] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(55), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10683] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(44), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10740] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(201), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10797] = 5, ACTIONS(3), 1, sym__comment, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(313), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(311), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [10834] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(423), 1, sym_identifier, ACTIONS(646), 1, anon_sym_table, STATE(179), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10891] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(202), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [10948] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(199), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11005] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(423), 1, sym_identifier, ACTIONS(646), 1, anon_sym_table, STATE(137), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11062] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(423), 1, sym_identifier, ACTIONS(646), 1, anon_sym_table, STATE(196), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11119] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(238), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11176] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(86), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11233] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(84), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11290] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(644), 1, anon_sym_table, STATE(78), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11347] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(237), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11404] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(83), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11461] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(235), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11518] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(234), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11575] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(221), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11632] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(208), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11689] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(218), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11746] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(50), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11803] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(650), 1, anon_sym_DOT_DOT, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(291), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(289), 18, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [11842] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(222), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11899] = 5, ACTIONS(3), 1, sym__comment, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(291), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(289), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [11936] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(224), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [11993] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(227), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12050] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(229), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12107] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(85), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12164] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, ACTIONS(640), 1, anon_sym_table, STATE(49), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12221] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, ACTIONS(640), 1, anon_sym_table, STATE(48), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12278] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, ACTIONS(640), 1, anon_sym_table, STATE(43), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12335] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(25), 1, anon_sym_EQ_GT, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, ACTIONS(636), 1, sym_identifier, ACTIONS(638), 1, anon_sym_LBRACE, STATE(52), 1, sym_expression, STATE(322), 1, sym_identifier_list, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(66), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(57), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12392] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(200), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12449] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(220), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12506] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(451), 1, anon_sym_table, STATE(70), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12563] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(231), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12620] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(654), 8, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(652), 17, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_transform, anon_sym_filter, anon_sym_find, anon_sym_remove, anon_sym_reduce, anon_sym_select, anon_sym_insert, anon_sym_table, [12653] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(433), 1, sym_identifier, ACTIONS(435), 1, anon_sym_LBRACE, ACTIONS(437), 1, anon_sym_LPAREN, ACTIONS(441), 1, sym_integer, ACTIONS(447), 1, anon_sym_LBRACK, ACTIONS(449), 1, anon_sym_EQ_GT, ACTIONS(644), 1, anon_sym_table, STATE(76), 1, sym_expression, STATE(324), 1, sym_identifier_list, ACTIONS(443), 2, sym_float, sym_string, ACTIONS(445), 2, anon_sym_true, anon_sym_false, STATE(104), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(91), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12710] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(634), 1, anon_sym_COLON, STATE(143), 1, sym_math_operator, STATE(165), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(319), 2, anon_sym_async, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(317), 7, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_EQ_GT, [12755] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(423), 1, sym_identifier, ACTIONS(646), 1, anon_sym_table, STATE(181), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12812] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(55), 1, anon_sym_LPAREN, ACTIONS(57), 1, sym_integer, ACTIONS(63), 1, anon_sym_LBRACK, ACTIONS(65), 1, anon_sym_EQ_GT, ACTIONS(67), 1, anon_sym_table, ACTIONS(423), 1, sym_identifier, STATE(223), 1, sym_expression, STATE(327), 1, sym_identifier_list, ACTIONS(59), 2, sym_float, sym_string, ACTIONS(61), 2, anon_sym_true, anon_sym_false, STATE(216), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(204), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, [12869] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(325), 2, anon_sym_async, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(323), 6, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ_GT, [12913] = 5, ACTIONS(3), 1, sym__comment, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(287), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(285), 18, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [12949] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(319), 2, anon_sym_async, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(317), 6, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ_GT, [12993] = 5, ACTIONS(3), 1, sym__comment, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(313), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(311), 18, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13029] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(367), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(365), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13060] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(343), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(341), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13091] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(351), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(349), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13122] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(371), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(369), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13153] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(363), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(361), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13184] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(180), 1, anon_sym_async, ACTIONS(297), 1, sym_identifier, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(270), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(295), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13233] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(387), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(385), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13264] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(383), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(381), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13295] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(345), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13326] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(359), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(357), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13357] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(355), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(353), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13388] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(339), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(337), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13419] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(375), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(373), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13450] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(379), 4, anon_sym_async, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(377), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, [13481] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(281), 1, anon_sym_EQ, STATE(37), 1, sym_assignment_operator, ACTIONS(283), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(279), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(277), 14, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13517] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(327), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13555] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(660), 1, anon_sym_SEMI, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(331), 3, anon_sym_RBRACE, anon_sym_COMMA, sym_identifier, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13595] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(276), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13636] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(280), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13677] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(664), 1, anon_sym_async, ACTIONS(666), 1, anon_sym_LBRACE, STATE(89), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13718] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(117), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13759] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(275), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13800] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(120), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13841] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(121), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13882] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(274), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13923] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(123), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [13964] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(670), 1, anon_sym_async, ACTIONS(672), 1, anon_sym_LBRACE, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(263), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14005] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(125), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14046] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(670), 1, anon_sym_async, ACTIONS(672), 1, anon_sym_LBRACE, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(264), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14087] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(114), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14128] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(111), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14169] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(272), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14210] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(271), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14251] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(664), 1, anon_sym_async, ACTIONS(666), 1, anon_sym_LBRACE, STATE(87), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14292] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(269), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14333] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, STATE(267), 1, sym_block, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14374] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(668), 1, anon_sym_async, STATE(115), 1, sym_block, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14415] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(674), 1, anon_sym_EQ_GT, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14450] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(676), 1, anon_sym_EQ_GT, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14485] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(678), 1, sym_identifier, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14520] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, ACTIONS(680), 1, sym_identifier, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14555] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(682), 1, anon_sym_in, ACTIONS(279), 3, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(277), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14581] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(656), 1, anon_sym_COLON, STATE(163), 1, sym_math_operator, STATE(164), 1, sym_logic_operator, ACTIONS(309), 2, anon_sym_GT, anon_sym_LT, ACTIONS(303), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(307), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14613] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(684), 1, anon_sym_in, ACTIONS(279), 3, sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(277), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14639] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(686), 1, anon_sym_RPAREN, ACTIONS(343), 2, anon_sym_GT, anon_sym_LT, ACTIONS(341), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14664] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(688), 1, anon_sym_RPAREN, ACTIONS(343), 2, anon_sym_GT, anon_sym_LT, ACTIONS(341), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14689] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(526), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(524), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14712] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(690), 1, anon_sym_RPAREN, ACTIONS(343), 2, anon_sym_GT, anon_sym_LT, ACTIONS(341), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, [14737] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(371), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(369), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14760] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(345), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14783] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(692), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_from, anon_sym_table, ACTIONS(694), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14804] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(696), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_from, anon_sym_table, ACTIONS(698), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14825] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(700), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(567), 8, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14846] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(702), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(611), 8, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14867] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(704), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(706), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14887] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(708), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(710), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, [14907] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(463), 1, sym_identifier, ACTIONS(712), 1, anon_sym_elseif, ACTIONS(714), 1, anon_sym_else, STATE(268), 1, sym_else, STATE(261), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(461), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [14932] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(455), 1, sym_identifier, ACTIONS(712), 1, anon_sym_elseif, ACTIONS(714), 1, anon_sym_else, STATE(278), 1, sym_else, STATE(259), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(453), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [14957] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(716), 1, anon_sym_elseif, ACTIONS(467), 2, sym_identifier, anon_sym_else, STATE(261), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(465), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [14977] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 2, sym_identifier, anon_sym_else, ACTIONS(345), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [14991] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(482), 2, sym_identifier, anon_sym_else, ACTIONS(480), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [15005] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(478), 2, sym_identifier, anon_sym_else, ACTIONS(476), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [15019] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(371), 2, sym_identifier, anon_sym_else, ACTIONS(369), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [15033] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(660), 1, anon_sym_SEMI, ACTIONS(331), 3, anon_sym_RBRACE, anon_sym_COMMA, sym_identifier, [15045] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(548), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15055] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(508), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15065] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(540), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15075] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(536), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15085] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(528), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15095] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(532), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15105] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(504), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15115] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(520), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15125] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(516), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15135] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(500), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15145] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(544), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15155] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(461), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15165] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(496), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15175] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(512), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15185] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(205), 1, sym_block, [15198] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(212), 1, sym_block, [15211] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(719), 1, sym_identifier, ACTIONS(721), 1, anon_sym_PIPE, STATE(296), 1, aux_sym_identifier_list_repeat1, [15224] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(723), 1, sym_identifier, ACTIONS(725), 1, anon_sym_RBRACE, STATE(287), 1, aux_sym_map_repeat1, [15237] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(668), 1, anon_sym_async, STATE(118), 1, sym_block, [15250] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(727), 1, anon_sym_async, ACTIONS(729), 1, anon_sym_LBRACE, STATE(88), 1, sym_block, [15263] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(731), 1, sym_identifier, ACTIONS(734), 1, anon_sym_RBRACE, STATE(287), 1, aux_sym_map_repeat1, [15276] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(723), 1, sym_identifier, ACTIONS(736), 1, anon_sym_RBRACE, STATE(287), 1, aux_sym_map_repeat1, [15289] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(738), 1, anon_sym_async, ACTIONS(740), 1, anon_sym_LBRACE, STATE(59), 1, sym_block, [15302] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(75), 1, anon_sym_RBRACE, ACTIONS(723), 1, sym_identifier, STATE(288), 1, aux_sym_map_repeat1, [15315] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(723), 1, sym_identifier, ACTIONS(742), 1, anon_sym_RBRACE, STATE(287), 1, aux_sym_map_repeat1, [15328] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(744), 1, sym_identifier, ACTIONS(747), 1, anon_sym_PIPE, STATE(292), 1, aux_sym_identifier_list_repeat1, [15341] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(738), 1, anon_sym_async, ACTIONS(740), 1, anon_sym_LBRACE, STATE(61), 1, sym_block, [15354] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, anon_sym_LBRACE, ACTIONS(668), 1, anon_sym_async, STATE(112), 1, sym_block, [15367] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(658), 1, anon_sym_LBRACE, ACTIONS(662), 1, anon_sym_async, STATE(273), 1, sym_block, [15380] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(719), 1, sym_identifier, ACTIONS(749), 1, anon_sym_PIPE, STATE(292), 1, aux_sym_identifier_list_repeat1, [15393] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(753), 1, anon_sym_COMMA, ACTIONS(751), 2, sym_identifier, anon_sym_PIPE, [15404] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(723), 1, sym_identifier, ACTIONS(755), 1, anon_sym_RBRACE, STATE(284), 1, aux_sym_map_repeat1, [15417] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(757), 1, anon_sym_async, ACTIONS(759), 1, anon_sym_LBRACE, STATE(249), 1, sym_block, [15430] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(727), 1, anon_sym_async, ACTIONS(729), 1, anon_sym_LBRACE, STATE(100), 1, sym_block, [15443] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(763), 1, anon_sym_COMMA, ACTIONS(761), 2, anon_sym_RBRACE, sym_identifier, [15454] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_RBRACE, ACTIONS(723), 1, sym_identifier, STATE(291), 1, aux_sym_map_repeat1, [15467] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(336), 1, sym_identifier_list, [15477] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(166), 1, sym_identifier_list, [15487] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(156), 1, sym_identifier_list, [15497] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(317), 1, sym_identifier_list, [15507] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(187), 1, sym_identifier_list, [15517] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(747), 2, sym_identifier, anon_sym_PIPE, [15525] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(189), 1, sym_identifier_list, [15535] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(160), 1, sym_identifier_list, [15545] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(765), 2, anon_sym_RBRACE, sym_identifier, [15553] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, STATE(172), 1, sym_identifier_list, [15563] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(767), 1, anon_sym_to, [15570] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(769), 1, anon_sym_in, [15577] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(771), 1, sym_identifier, [15584] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(773), 1, sym_identifier, [15591] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(775), 1, anon_sym_from, [15598] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(777), 1, anon_sym_RPAREN, [15605] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(779), 1, anon_sym_into, [15612] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(781), 1, anon_sym_RPAREN, [15619] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(783), 1, ts_builtin_sym_end, [15626] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(785), 1, anon_sym_EQ_GT, [15633] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(787), 1, sym_identifier, [15640] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(789), 1, anon_sym_EQ_GT, [15647] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(791), 1, sym_identifier, [15654] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(793), 1, sym_identifier, [15661] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(795), 1, anon_sym_EQ_GT, [15668] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(797), 1, sym_identifier, [15675] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(799), 1, sym_identifier, [15682] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(801), 1, anon_sym_into, [15689] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(803), 1, anon_sym_from, [15696] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(805), 1, anon_sym_in, [15703] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(807), 1, anon_sym_EQ, [15710] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(809), 1, anon_sym_LBRACE, [15717] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(811), 1, anon_sym_RPAREN, [15724] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(813), 1, anon_sym_from, [15731] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(815), 1, anon_sym_in, [15738] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(817), 1, anon_sym_in, [15745] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(819), 1, anon_sym_in, [15752] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(821), 1, anon_sym_from, [15759] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(823), 1, anon_sym_in, [15766] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(825), 1, anon_sym_in, [15773] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(827), 1, anon_sym_in, [15780] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(829), 1, sym_identifier, [15787] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(831), 1, anon_sym_in, [15794] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(833), 1, anon_sym_LBRACE, [15801] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(835), 1, anon_sym_LBRACE, [15808] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(837), 1, anon_sym_LBRACE, [15815] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(839), 1, anon_sym_LBRACE, [15822] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(841), 1, anon_sym_LBRACE, [15829] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(843), 1, sym_identifier, [15836] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(845), 1, sym_identifier, [15843] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(847), 1, anon_sym_in, [15850] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(849), 1, sym_identifier, [15857] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(851), 1, sym_identifier, [15864] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(853), 1, anon_sym_LBRACE, [15871] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(855), 1, sym_identifier, [15878] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(857), 1, anon_sym_to, [15885] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(859), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 97, [SMALL_STATE(4)] = 194, [SMALL_STATE(5)] = 291, [SMALL_STATE(6)] = 415, [SMALL_STATE(7)] = 539, [SMALL_STATE(8)] = 661, [SMALL_STATE(9)] = 782, [SMALL_STATE(10)] = 903, [SMALL_STATE(11)] = 1024, [SMALL_STATE(12)] = 1145, [SMALL_STATE(13)] = 1266, [SMALL_STATE(14)] = 1387, [SMALL_STATE(15)] = 1508, [SMALL_STATE(16)] = 1629, [SMALL_STATE(17)] = 1750, [SMALL_STATE(18)] = 1871, [SMALL_STATE(19)] = 1992, [SMALL_STATE(20)] = 2113, [SMALL_STATE(21)] = 2234, [SMALL_STATE(22)] = 2355, [SMALL_STATE(23)] = 2476, [SMALL_STATE(24)] = 2594, [SMALL_STATE(25)] = 2712, [SMALL_STATE(26)] = 2830, [SMALL_STATE(27)] = 2948, [SMALL_STATE(28)] = 3066, [SMALL_STATE(29)] = 3184, [SMALL_STATE(30)] = 3302, [SMALL_STATE(31)] = 3420, [SMALL_STATE(32)] = 3538, [SMALL_STATE(33)] = 3656, [SMALL_STATE(34)] = 3774, [SMALL_STATE(35)] = 3892, [SMALL_STATE(36)] = 4010, [SMALL_STATE(37)] = 4128, [SMALL_STATE(38)] = 4245, [SMALL_STATE(39)] = 4362, [SMALL_STATE(40)] = 4479, [SMALL_STATE(41)] = 4596, [SMALL_STATE(42)] = 4656, [SMALL_STATE(43)] = 4713, [SMALL_STATE(44)] = 4772, [SMALL_STATE(45)] = 4845, [SMALL_STATE(46)] = 4902, [SMALL_STATE(47)] = 4959, [SMALL_STATE(48)] = 5018, [SMALL_STATE(49)] = 5085, [SMALL_STATE(50)] = 5152, [SMALL_STATE(51)] = 5218, [SMALL_STATE(52)] = 5274, [SMALL_STATE(53)] = 5340, [SMALL_STATE(54)] = 5408, [SMALL_STATE(55)] = 5474, [SMALL_STATE(56)] = 5530, [SMALL_STATE(57)] = 5581, [SMALL_STATE(58)] = 5632, [SMALL_STATE(59)] = 5683, [SMALL_STATE(60)] = 5734, [SMALL_STATE(61)] = 5785, [SMALL_STATE(62)] = 5836, [SMALL_STATE(63)] = 5887, [SMALL_STATE(64)] = 5938, [SMALL_STATE(65)] = 5989, [SMALL_STATE(66)] = 6040, [SMALL_STATE(67)] = 6091, [SMALL_STATE(68)] = 6142, [SMALL_STATE(69)] = 6193, [SMALL_STATE(70)] = 6273, [SMALL_STATE(71)] = 6363, [SMALL_STATE(72)] = 6443, [SMALL_STATE(73)] = 6533, [SMALL_STATE(74)] = 6614, [SMALL_STATE(75)] = 6663, [SMALL_STATE(76)] = 6712, [SMALL_STATE(77)] = 6756, [SMALL_STATE(78)] = 6800, [SMALL_STATE(79)] = 6846, [SMALL_STATE(80)] = 6900, [SMALL_STATE(81)] = 6944, [SMALL_STATE(82)] = 6988, [SMALL_STATE(83)] = 7042, [SMALL_STATE(84)] = 7095, [SMALL_STATE(85)] = 7138, [SMALL_STATE(86)] = 7181, [SMALL_STATE(87)] = 7234, [SMALL_STATE(88)] = 7272, [SMALL_STATE(89)] = 7310, [SMALL_STATE(90)] = 7348, [SMALL_STATE(91)] = 7402, [SMALL_STATE(92)] = 7440, [SMALL_STATE(93)] = 7478, [SMALL_STATE(94)] = 7532, [SMALL_STATE(95)] = 7570, [SMALL_STATE(96)] = 7608, [SMALL_STATE(97)] = 7646, [SMALL_STATE(98)] = 7684, [SMALL_STATE(99)] = 7722, [SMALL_STATE(100)] = 7760, [SMALL_STATE(101)] = 7798, [SMALL_STATE(102)] = 7836, [SMALL_STATE(103)] = 7874, [SMALL_STATE(104)] = 7912, [SMALL_STATE(105)] = 7950, [SMALL_STATE(106)] = 7988, [SMALL_STATE(107)] = 8053, [SMALL_STATE(108)] = 8118, [SMALL_STATE(109)] = 8154, [SMALL_STATE(110)] = 8192, [SMALL_STATE(111)] = 8228, [SMALL_STATE(112)] = 8264, [SMALL_STATE(113)] = 8300, [SMALL_STATE(114)] = 8336, [SMALL_STATE(115)] = 8372, [SMALL_STATE(116)] = 8408, [SMALL_STATE(117)] = 8444, [SMALL_STATE(118)] = 8480, [SMALL_STATE(119)] = 8516, [SMALL_STATE(120)] = 8552, [SMALL_STATE(121)] = 8588, [SMALL_STATE(122)] = 8624, [SMALL_STATE(123)] = 8660, [SMALL_STATE(124)] = 8696, [SMALL_STATE(125)] = 8732, [SMALL_STATE(126)] = 8768, [SMALL_STATE(127)] = 8831, [SMALL_STATE(128)] = 8894, [SMALL_STATE(129)] = 8957, [SMALL_STATE(130)] = 9020, [SMALL_STATE(131)] = 9083, [SMALL_STATE(132)] = 9146, [SMALL_STATE(133)] = 9209, [SMALL_STATE(134)] = 9272, [SMALL_STATE(135)] = 9335, [SMALL_STATE(136)] = 9398, [SMALL_STATE(137)] = 9461, [SMALL_STATE(138)] = 9506, [SMALL_STATE(139)] = 9563, [SMALL_STATE(140)] = 9620, [SMALL_STATE(141)] = 9677, [SMALL_STATE(142)] = 9734, [SMALL_STATE(143)] = 9791, [SMALL_STATE(144)] = 9848, [SMALL_STATE(145)] = 9905, [SMALL_STATE(146)] = 9962, [SMALL_STATE(147)] = 10019, [SMALL_STATE(148)] = 10076, [SMALL_STATE(149)] = 10133, [SMALL_STATE(150)] = 10190, [SMALL_STATE(151)] = 10247, [SMALL_STATE(152)] = 10304, [SMALL_STATE(153)] = 10361, [SMALL_STATE(154)] = 10418, [SMALL_STATE(155)] = 10475, [SMALL_STATE(156)] = 10532, [SMALL_STATE(157)] = 10589, [SMALL_STATE(158)] = 10626, [SMALL_STATE(159)] = 10683, [SMALL_STATE(160)] = 10740, [SMALL_STATE(161)] = 10797, [SMALL_STATE(162)] = 10834, [SMALL_STATE(163)] = 10891, [SMALL_STATE(164)] = 10948, [SMALL_STATE(165)] = 11005, [SMALL_STATE(166)] = 11062, [SMALL_STATE(167)] = 11119, [SMALL_STATE(168)] = 11176, [SMALL_STATE(169)] = 11233, [SMALL_STATE(170)] = 11290, [SMALL_STATE(171)] = 11347, [SMALL_STATE(172)] = 11404, [SMALL_STATE(173)] = 11461, [SMALL_STATE(174)] = 11518, [SMALL_STATE(175)] = 11575, [SMALL_STATE(176)] = 11632, [SMALL_STATE(177)] = 11689, [SMALL_STATE(178)] = 11746, [SMALL_STATE(179)] = 11803, [SMALL_STATE(180)] = 11842, [SMALL_STATE(181)] = 11899, [SMALL_STATE(182)] = 11936, [SMALL_STATE(183)] = 11993, [SMALL_STATE(184)] = 12050, [SMALL_STATE(185)] = 12107, [SMALL_STATE(186)] = 12164, [SMALL_STATE(187)] = 12221, [SMALL_STATE(188)] = 12278, [SMALL_STATE(189)] = 12335, [SMALL_STATE(190)] = 12392, [SMALL_STATE(191)] = 12449, [SMALL_STATE(192)] = 12506, [SMALL_STATE(193)] = 12563, [SMALL_STATE(194)] = 12620, [SMALL_STATE(195)] = 12653, [SMALL_STATE(196)] = 12710, [SMALL_STATE(197)] = 12755, [SMALL_STATE(198)] = 12812, [SMALL_STATE(199)] = 12869, [SMALL_STATE(200)] = 12913, [SMALL_STATE(201)] = 12949, [SMALL_STATE(202)] = 12993, [SMALL_STATE(203)] = 13029, [SMALL_STATE(204)] = 13060, [SMALL_STATE(205)] = 13091, [SMALL_STATE(206)] = 13122, [SMALL_STATE(207)] = 13153, [SMALL_STATE(208)] = 13184, [SMALL_STATE(209)] = 13233, [SMALL_STATE(210)] = 13264, [SMALL_STATE(211)] = 13295, [SMALL_STATE(212)] = 13326, [SMALL_STATE(213)] = 13357, [SMALL_STATE(214)] = 13388, [SMALL_STATE(215)] = 13419, [SMALL_STATE(216)] = 13450, [SMALL_STATE(217)] = 13481, [SMALL_STATE(218)] = 13517, [SMALL_STATE(219)] = 13555, [SMALL_STATE(220)] = 13595, [SMALL_STATE(221)] = 13636, [SMALL_STATE(222)] = 13677, [SMALL_STATE(223)] = 13718, [SMALL_STATE(224)] = 13759, [SMALL_STATE(225)] = 13800, [SMALL_STATE(226)] = 13841, [SMALL_STATE(227)] = 13882, [SMALL_STATE(228)] = 13923, [SMALL_STATE(229)] = 13964, [SMALL_STATE(230)] = 14005, [SMALL_STATE(231)] = 14046, [SMALL_STATE(232)] = 14087, [SMALL_STATE(233)] = 14128, [SMALL_STATE(234)] = 14169, [SMALL_STATE(235)] = 14210, [SMALL_STATE(236)] = 14251, [SMALL_STATE(237)] = 14292, [SMALL_STATE(238)] = 14333, [SMALL_STATE(239)] = 14374, [SMALL_STATE(240)] = 14415, [SMALL_STATE(241)] = 14450, [SMALL_STATE(242)] = 14485, [SMALL_STATE(243)] = 14520, [SMALL_STATE(244)] = 14555, [SMALL_STATE(245)] = 14581, [SMALL_STATE(246)] = 14613, [SMALL_STATE(247)] = 14639, [SMALL_STATE(248)] = 14664, [SMALL_STATE(249)] = 14689, [SMALL_STATE(250)] = 14712, [SMALL_STATE(251)] = 14737, [SMALL_STATE(252)] = 14760, [SMALL_STATE(253)] = 14783, [SMALL_STATE(254)] = 14804, [SMALL_STATE(255)] = 14825, [SMALL_STATE(256)] = 14846, [SMALL_STATE(257)] = 14867, [SMALL_STATE(258)] = 14887, [SMALL_STATE(259)] = 14907, [SMALL_STATE(260)] = 14932, [SMALL_STATE(261)] = 14957, [SMALL_STATE(262)] = 14977, [SMALL_STATE(263)] = 14991, [SMALL_STATE(264)] = 15005, [SMALL_STATE(265)] = 15019, [SMALL_STATE(266)] = 15033, [SMALL_STATE(267)] = 15045, [SMALL_STATE(268)] = 15055, [SMALL_STATE(269)] = 15065, [SMALL_STATE(270)] = 15075, [SMALL_STATE(271)] = 15085, [SMALL_STATE(272)] = 15095, [SMALL_STATE(273)] = 15105, [SMALL_STATE(274)] = 15115, [SMALL_STATE(275)] = 15125, [SMALL_STATE(276)] = 15135, [SMALL_STATE(277)] = 15145, [SMALL_STATE(278)] = 15155, [SMALL_STATE(279)] = 15165, [SMALL_STATE(280)] = 15175, [SMALL_STATE(281)] = 15185, [SMALL_STATE(282)] = 15198, [SMALL_STATE(283)] = 15211, [SMALL_STATE(284)] = 15224, [SMALL_STATE(285)] = 15237, [SMALL_STATE(286)] = 15250, [SMALL_STATE(287)] = 15263, [SMALL_STATE(288)] = 15276, [SMALL_STATE(289)] = 15289, [SMALL_STATE(290)] = 15302, [SMALL_STATE(291)] = 15315, [SMALL_STATE(292)] = 15328, [SMALL_STATE(293)] = 15341, [SMALL_STATE(294)] = 15354, [SMALL_STATE(295)] = 15367, [SMALL_STATE(296)] = 15380, [SMALL_STATE(297)] = 15393, [SMALL_STATE(298)] = 15404, [SMALL_STATE(299)] = 15417, [SMALL_STATE(300)] = 15430, [SMALL_STATE(301)] = 15443, [SMALL_STATE(302)] = 15454, [SMALL_STATE(303)] = 15467, [SMALL_STATE(304)] = 15477, [SMALL_STATE(305)] = 15487, [SMALL_STATE(306)] = 15497, [SMALL_STATE(307)] = 15507, [SMALL_STATE(308)] = 15517, [SMALL_STATE(309)] = 15525, [SMALL_STATE(310)] = 15535, [SMALL_STATE(311)] = 15545, [SMALL_STATE(312)] = 15553, [SMALL_STATE(313)] = 15563, [SMALL_STATE(314)] = 15570, [SMALL_STATE(315)] = 15577, [SMALL_STATE(316)] = 15584, [SMALL_STATE(317)] = 15591, [SMALL_STATE(318)] = 15598, [SMALL_STATE(319)] = 15605, [SMALL_STATE(320)] = 15612, [SMALL_STATE(321)] = 15619, [SMALL_STATE(322)] = 15626, [SMALL_STATE(323)] = 15633, [SMALL_STATE(324)] = 15640, [SMALL_STATE(325)] = 15647, [SMALL_STATE(326)] = 15654, [SMALL_STATE(327)] = 15661, [SMALL_STATE(328)] = 15668, [SMALL_STATE(329)] = 15675, [SMALL_STATE(330)] = 15682, [SMALL_STATE(331)] = 15689, [SMALL_STATE(332)] = 15696, [SMALL_STATE(333)] = 15703, [SMALL_STATE(334)] = 15710, [SMALL_STATE(335)] = 15717, [SMALL_STATE(336)] = 15724, [SMALL_STATE(337)] = 15731, [SMALL_STATE(338)] = 15738, [SMALL_STATE(339)] = 15745, [SMALL_STATE(340)] = 15752, [SMALL_STATE(341)] = 15759, [SMALL_STATE(342)] = 15766, [SMALL_STATE(343)] = 15773, [SMALL_STATE(344)] = 15780, [SMALL_STATE(345)] = 15787, [SMALL_STATE(346)] = 15794, [SMALL_STATE(347)] = 15801, [SMALL_STATE(348)] = 15808, [SMALL_STATE(349)] = 15815, [SMALL_STATE(350)] = 15822, [SMALL_STATE(351)] = 15829, [SMALL_STATE(352)] = 15836, [SMALL_STATE(353)] = 15843, [SMALL_STATE(354)] = 15850, [SMALL_STATE(355)] = 15857, [SMALL_STATE(356)] = 15864, [SMALL_STATE(357)] = 15871, [SMALL_STATE(358)] = 15878, [SMALL_STATE(359)] = 15885, }; 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}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41), [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(356), [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(5), [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66), [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66), [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(65), [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(131), [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(145), [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(146), [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(293), [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(151), [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329), [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(329), [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(328), [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(153), [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(326), [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325), [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323), [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(303), [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(319), [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(283), [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309), [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(217), [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(346), [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(6), [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(4), [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(216), [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(216), [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(215), [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(136), [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(193), [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(192), [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(282), [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(191), [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(351), [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(351), [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(352), [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(139), [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(354), [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(355), [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(359), [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(306), [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(330), [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(283), [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(310), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(204), [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(290), [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(4), [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(216), [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(216), [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(215), [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(136), [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282), [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(283), [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(310), [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1), [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(180), [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(91), [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(298), [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(3), [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104), [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104), [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103), [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(135), [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(300), [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(283), [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(312), [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(91), [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(298), [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(3), [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104), [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104), [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103), [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(135), [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(300), [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(283), [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(312), [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(184), [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(333), [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(297), [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [783] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), }; #ifdef __cplusplus extern "C" { #endif #ifdef _WIN32 #define extern __declspec(dllexport) #endif extern const TSLanguage *tree_sitter_dust(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif