diff --git a/CMakeLists.txt b/CMakeLists.txt index d84b3a7..af2b831 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,10 +8,18 @@ find_package(Catch2 2 REQUIRED) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") -include_directories(include) -include(tree_sitter/api.h) +include_directories(include + tree-sitter/lib/src + tree-sitter/lib/include) + # add_executable(interpreter_tests tests/tests.cpp) # target_link_libraries(tests PRIVATE Catch2::Catch2WithMain) -# add_executable(lang_interpreter src/main.cpp) +add_executable(lang_interpreter src/main.cpp + src/visitor.cpp + src/build_visitor.cpp + src/print_visitor.cpp + src/parser.c + include/parser.h + tree-sitter/lib/src/lib.c) diff --git a/include/interpreter_tree.hpp b/include/interpreter_tree.hpp index 75fe6e3..42bd20c 100644 --- a/include/interpreter_tree.hpp +++ b/include/interpreter_tree.hpp @@ -526,6 +526,7 @@ struct AnnotatedType : public Node { }; using TypeParameter = std::variant< + std::unique_ptr, std::unique_ptr, std::unique_ptr>; diff --git a/include/parse_tree.hpp b/include/parse_tree.hpp index 9fa376d..4fe6e0d 100644 --- a/include/parse_tree.hpp +++ b/include/parse_tree.hpp @@ -5,6 +5,7 @@ // for clangd #include "tree_sitter/api.h" +extern "C" const TSLanguage* tree_sitter_LANG(); namespace parser { @@ -12,31 +13,76 @@ class ParseTree { public: class Node { public: - std::string GetType(); - std::pair GetStartPoint(); - std::pair GetEndPoint(); - std::string GetAsSExpression(); + Node() = default; + Node(const TSNode &node, const std::string* source) : node_(node), source_(source) {} - std::string GetValue(); // from source + std::string GetType() { + return ts_node_type(node_); + } - bool IsNull(); - bool IsNamed(); - bool IsMissing(); - bool IsExtra(); // comments, etc. - bool HasError(); + std::pair GetStartPoint() { + TSPoint point = ts_node_start_point(node_); + return {point.row, point.column}; + } - Node NthChild(size_t n); - size_t ChildCount(); + std::pair GetEndPoint() { + TSPoint point = ts_node_end_point(node_); + return {point.row, point.column}; + } - Node NthNamedChild(size_t n); - size_t NamedChildCount(); + std::string GetAsSExpression() { + return ts_node_string(node_); + } - Node ChildByFieldName(const std::string& name); + std::string GetValue() { // from source + size_t start = ts_node_start_byte(node_); + size_t end = ts_node_end_byte(node_); + return source_->substr(start, end - start); // TODO check + } + + bool IsNull() { + return ts_node_is_null(node_); + } + + bool IsNamed() { + return ts_node_is_named(node_); + } + + bool IsMissing() { + return ts_node_is_missing(node_); + } + + bool IsExtra() { // comments, etc. + return ts_node_is_extra(node_); + } + + bool HasError() { + return ts_node_has_error(node_); + } + + Node NthChild(size_t n) { + return Node(ts_node_child(node_, n), source_); + } + size_t ChildCount() { + return ts_node_child_count(node_); + } + + Node NthNamedChild(size_t n) { + return Node(ts_node_named_child(node_, n), source_); + } + size_t NamedChildCount() { + return ts_node_named_child_count(node_); + } + + Node ChildByFieldName(const std::string& name) { + return Node(ts_node_child_by_field_name(node_, name.c_str(), name.size()), source_); + } // ?? use field id instaed of name ?? // ?? node equality check needed ?? private: TSNode node_; + const std::string* source_ = nullptr; }; class Cursor { // ?? needed ?? public: @@ -54,12 +100,24 @@ public: TSTreeCursor cursor_; }; - ParseTree(const std::string& input); + ParseTree(const std::string& source) : source_(source) { + TSParser* parser = ts_parser_new(); + ts_parser_set_language(parser, tree_sitter_LANG()); + + tree_ = ts_parser_parse_string( + parser, + NULL, + source_.c_str(), + source_.size()); + } + + Node GetRoot() const { + return Node(ts_tree_root_node(tree_), &source_); + } - Node GetRoot() const; private: TSTree* tree_; - std::string source; // for token value extraction + std::string source_; // for token value extraction }; } // namespace parser diff --git a/include/parser.h b/include/parser.h new file mode 100644 index 0000000..2b14ac1 --- /dev/null +++ b/include/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/src/build_visitor.cpp b/src/build_visitor.cpp index 4c429a7..d3761e7 100644 --- a/src/build_visitor.cpp +++ b/src/build_visitor.cpp @@ -1,8 +1,10 @@ +#include + +#include + // forclangd #include "../include/build_visitor.hpp" #include "../include/parse_token_types.hpp" -#include -#include namespace interpreter { @@ -77,6 +79,7 @@ void BuildVisitor::Visit(Namespace* node) { auto current_node_ = parse_node.ChildByFieldName("name"); auto current_node_type = current_node_.GetType(); + if (current_node_type == parser::tokens::DefinedAnnotatedName) { std::string name_modifier = parse_node.NthChild(1).GetValue(); // TODO if (name_modifier == "const") { @@ -254,10 +257,11 @@ void BuildVisitor::Visit(TypeclassDefinition* node) { size_t child_count = parse_node.NamedChildCount(); if (child_count > 1) { - node->requirements.resize(child_count - 1, std::make_unique()); + node->requirements.resize(child_count - 1); for (size_t i = 0; i < child_count - 1; ++i) { current_node_ = parse_node.NthNamedChild(i + 1); + node->requirements[i] = std::make_unique(); Visit(node->requirements[i].get()); } } @@ -463,12 +467,23 @@ void BuildVisitor::Visit(DefinitionParameter* node) { size_t child_count = parse_node.NamedChildCount(); if (child_count > 1) { - node->typeclasses.resize(child_count - 1, std::make_unique()); + node->typeclasses.resize(child_count - 1); for (size_t i = 0; i < child_count - 1; ++i) { current_node_ = parse_node.NthNamedChild(i + 1); - Visit(node->typeclasses[i].get()); - // choose between typeclass_expression and parametrized_typeclass + + std::string current_node_type = current_node_.GetType(); + + node->typeclasses[i] = std::make_unique(); + + if (current_node_type == parser::tokens::TypeclassExpression) { // optimize ?? + node->typeclasses[i]->typeclass_expression = std::make_unique(); + Visit(node->typeclasses[i]->typeclass_expression.get()); + } else if (current_node_type == parser::tokens::ParametrizedTypeclass) { + Visit(node->typeclasses[i].get()); + } else { + // error + } } } @@ -483,12 +498,23 @@ void BuildVisitor::Visit(DefinitionArgument* node) { size_t child_count = parse_node.NamedChildCount(); if (child_count > 1) { - node->types.resize(child_count - 1, std::make_unique()); + node->types.resize(child_count - 1); for (size_t i = 0; i < child_count - 1; ++i) { current_node_ = parse_node.NthNamedChild(i + 1); - Visit(node->types[i].get()); - // choose between type_expression and parametrized_type + + std::string current_node_type = current_node_.GetType(); + + node->types[i] = std::make_unique(); + + if (current_node_type == parser::tokens::TypeExpression) { // optimize ?? + node->types[i]->type_expression = std::make_unique(); + Visit(node->types[i]->type_expression.get()); + } else if (current_node_type == parser::tokens::ParametrizedType) { + Visit(node->types[i].get()); + } else { + // error + } } } @@ -1079,10 +1105,11 @@ void BuildVisitor::Visit(TupleName* node) { size_t names_count = parse_node.NamedChildCount(); - node->names.resize(names_count, std::make_unique()); + node->names.resize(names_count); for (size_t i = 0; i < names_count; ++i) { current_node_ = parse_node.NthNamedChild(i); + node->names[i] = std::make_unique(); Visit(node->names[i].get()); } @@ -1094,10 +1121,11 @@ void BuildVisitor::Visit(VariantName* node) { size_t names_count = parse_node.NamedChildCount(); - node->names.resize(names_count, std::make_unique()); + node->names.resize(names_count); for (size_t i = 0; i < names_count; ++i) { current_node_ = parse_node.NthNamedChild(i); + node->names[i] =std::make_unique(); Visit(node->names[i].get()); } @@ -1109,7 +1137,7 @@ void BuildVisitor::Visit(AnnotatedName* node) { node->name = parse_node.ChildByFieldName("name").GetValue(); - if (parse_node.ChildCount() > 1) { + if (parse_node.NamedChildCount() > 1) { current_node_ = parse_node.ChildByFieldName("type"); node->type = std::make_unique(); Visit(node->type.value().get()); @@ -1144,27 +1172,27 @@ void BuildVisitor::Visit(AnyName& node) { // Type void BuildVisitor::Visit(TypeConstructor* node) { - auto parse_node = current_node_; - - current_node_ = parse_node.ChildByFieldName("type"); - node->type = std::make_unique(); - Visit(node->type.get()); - - size_t parameter_count = (parse_node.NamedChildCount() - 1) / 2; - - node->parameters.resize(parameter_count); - - for (size_t i = 0; i < parameter_count * 2; ++i) { - current_node_ = parse_node.NthNamedChild(i + 1); - - if (i % 2 == 0) { - node->parameters[i / 2].first = current_node_.GetValue(); - } else { - Visit(node->parameters[i / 2].second); - } - } - - current_node_ = parse_node; + // auto parse_node = current_node_; + // + // current_node_ = parse_node.ChildByFieldName("type"); + // node->type = std::make_unique(); + // Visit(node->type.get()); + // + // size_t parameter_count = (parse_node.NamedChildCount() - 1) / 2; + // + // node->parameters.resize(parameter_count); + // + // for (size_t i = 0; i < parameter_count * 2; ++i) { + // current_node_ = parse_node.NthNamedChild(i + 1); + // + // if (i % 2 == 0) { + // node->parameters[i / 2].first = current_node_.GetValue(); + // } else { + // Visit(node->parameters[i / 2].second); + // } + // } + // + // current_node_ = parse_node; } void BuildVisitor::Visit(TupleType* node) { @@ -1245,11 +1273,23 @@ void BuildVisitor::Visit(AnnotatedType* node) { size_t child_count = parse_node.NamedChildCount(); if (child_count > 1) { - node->annotations.resize(child_count - 1, std::make_unique()); + node->annotations.resize(child_count - 1); for (size_t i = 0; i < child_count - 1; ++i) { - current_node_ = parse_node.NthNamedChild(i + 1); + current_node_ = parse_node.NthNamedChild(i + 1); + + std::string current_node_type = current_node_.GetType(); + + node->annotations[i] = std::make_unique(); + + if (current_node_type == parser::tokens::TypeclassExpression) { // optimize ?? + node->annotations[i]->typeclass_expression = std::make_unique(); + Visit(node->annotations[i]->typeclass_expression.get()); + } else if (current_node_type == parser::tokens::ParametrizedTypeclass) { Visit(node->annotations[i].get()); + } else { + // error + } } } @@ -1296,7 +1336,7 @@ void BuildVisitor::Visit(TypeExpression* node) { current_node_ = parse_node; } -void BuildVisitor::Visit(AnyType& node) { +void BuildVisitor::Visit(AnyType& node) { // Or ScopedAnyType auto parse_node = current_node_; current_node_ = parse_node.NthNamedChild(0); @@ -1349,7 +1389,10 @@ void BuildVisitor::Visit(TypeParameter& node) { std::string current_node_type = current_node_.GetType(); - if (current_node_type == parser::tokens::ParametrizedType) { // optimize ?? + if (current_node_type == parser::tokens::TypeExpression) { // optimize ?? + node = std::make_unique(); + Visit(std::get>(node).get()); + } else if (current_node_type == parser::tokens::ParametrizedType) { node = std::make_unique(); Visit(std::get>(node).get()); } else if (current_node_type == parser::tokens::Expression) { @@ -1374,11 +1417,23 @@ void BuildVisitor::Visit(AnnotatedTypeclass* node) { size_t child_count = parse_node.NamedChildCount(); if (child_count > 1) { - node->annotations.resize(child_count - 1, std::make_unique()); + node->annotations.resize(child_count - 1); for (size_t i = 0; i < child_count - 1; ++i) { current_node_ = parse_node.NthNamedChild(i + 1); - Visit(node->annotations[i].get()); + + std::string current_node_type = current_node_.GetType(); + + node->annotations[i] = std::make_unique(); + + if (current_node_type == parser::tokens::TypeclassExpression) { // optimize ?? + node->annotations[i]->typeclass_expression = std::make_unique(); + Visit(node->annotations[i]->typeclass_expression.get()); + } else if (current_node_type == parser::tokens::ParametrizedTypeclass) { + Visit(node->annotations[i].get()); + } else { + // error + } } } diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..566f6c0 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,40 @@ +#include +#include +#include + +// for clangd +#include "../include/parse_tree.hpp" +#include "../include/interpreter_tree.hpp" +#include "../include/build_visitor.hpp" +#include "../include/print_visitor.hpp" + +int main(int argc, char** argv) { // TODO, only test version + if (argc < 2 || argc > 2) { + std::cout << "Wrong argument count (provide one argument - source file)\n"; + return 0; + } + + std::string filename = argv[1]; + + std::ifstream in; + in.open(filename); // TODO handle errors + + std::stringstream source_stream; + + source_stream << in.rdbuf(); + + in.close(); + + std::string source = source_stream.str(); + + parser::ParseTree parse_tree(source); + + std::unique_ptr source_file = + std::make_unique(); + + interpreter::BuildVisitor build_visitor(parse_tree); + interpreter::PrintVisitor print_visitor(std::cout); + + build_visitor.VisitSourceFile(source_file.get()); + //print_visitor.VisitSourceFile(source_file.get()); +} diff --git a/src/node.cpp b/src/node.cpp deleted file mode 100644 index fc38d58..0000000 --- a/src/node.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// for clangd -#include "../include/node.hpp" -#include "../include/visitor.hpp" - - -namespace interpreter { - -/*void Node::Accept(Visitor* visitor) { - visitor->Visit(this); -}*/ - -} // namespace interpreter diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 0000000..df6bb80 --- /dev/null +++ b/src/parser.c @@ -0,0 +1,98452 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 2524 +#define LARGE_STATE_COUNT 2 +#define SYMBOL_COUNT 164 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 64 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 17 +#define MAX_ALIAS_SEQUENCE_LENGTH 7 +#define PRODUCTION_ID_COUNT 33 + +enum { + sym_identifier = 1, + anon_sym_namespace = 2, + anon_sym_const = 3, + anon_sym_var = 4, + anon_sym_LBRACE = 5, + anon_sym_RBRACE = 6, + anon_sym_partition = 7, + anon_sym_TEST = 8, + anon_sym_INTERFACE = 9, + anon_sym_CORE = 10, + anon_sym_LIB = 11, + anon_sym_MODULE = 12, + anon_sym_EXE = 13, + anon_sym_import = 14, + anon_sym_COLON = 15, + anon_sym_use = 16, + anon_sym_EQ = 17, + anon_sym_alias = 18, + anon_sym_decl = 19, + anon_sym_DASH_GT = 20, + anon_sym_def = 21, + anon_sym_type = 22, + anon_sym_struct = 23, + anon_sym_class = 24, + anon_sym_typeclass = 25, + anon_sym_AMP = 26, + anon_sym_LPAREN = 27, + anon_sym_RPAREN = 28, + anon_sym_PIPE = 29, + anon_sym_QMARK = 30, + anon_sym_match = 31, + anon_sym_with = 32, + anon_sym_if = 33, + anon_sym_then = 34, + anon_sym_elif = 35, + anon_sym_else = 36, + anon_sym_do = 37, + anon_sym_while = 38, + anon_sym_for = 39, + anon_sym_in = 40, + anon_sym_loop = 41, + anon_sym_SEMI = 42, + anon_sym_return = 43, + anon_sym_break = 44, + anon_sym_continue = 45, + anon_sym_BSLASH = 46, + anon_sym_DOT = 47, + anon_sym_DOLLAR = 48, + sym__line_comment = 49, + sym__doc_comment = 50, + sym__block_comment = 51, + anon_sym__ = 52, + sym_typeclass_identifier = 53, + sym_name_identifier = 54, + sym_type_identifier = 55, + sym_abstract_type_identifier = 56, + sym_operator = 57, + sym_float_number_literal = 58, + sym_number_literal = 59, + anon_sym_DQUOTE = 60, + aux_sym_string_literal_token1 = 61, + anon_sym_SQUOTE = 62, + aux_sym_char_literal_token1 = 63, + sym_source_file = 64, + sym_sources = 65, + sym_source_statement = 66, + sym_namespace = 67, + sym_partition = 68, + sym_partition_name = 69, + sym_import_symbol = 70, + sym_import_statement = 71, + sym_usage_definition = 72, + sym_alias_definition = 73, + sym_variable_definition = 74, + sym__function_declaration_statement = 75, + sym_function_declaration = 76, + sym_function_definition = 77, + sym_alias_type_definition = 78, + sym_type_definition = 79, + sym_typeclass_definition = 80, + sym_function_declartation_type = 81, + sym_defined_name = 82, + sym__name_or_operator = 83, + sym_defined_annotated_name = 84, + sym_defined_type = 85, + sym_defined_typeclass = 86, + sym_definition_parameter = 87, + sym_definition_argument = 88, + sym_flow_control = 89, + sym_match_case = 90, + sym_match = 91, + sym_condition = 92, + sym_do_while_loop = 93, + sym_while_loop = 94, + sym_for_loop = 95, + sym_loop_loop = 96, + sym_block_statement = 97, + sym_block = 98, + sym_superexpression = 99, + sym_expression = 100, + sym_prefixed_expression = 101, + sym_subexpression = 102, + sym_subexpression_token = 103, + sym_scoped_statement = 104, + sym_binary_operator_expression = 105, + sym_unary_operator_expression = 106, + sym_function_argument = 107, + sym_function_call_expression = 108, + sym_tuple_expression = 109, + sym_variant_expression = 110, + sym_return_expression = 111, + sym_loop_control_expression = 112, + sym_lambda_function = 113, + sym_name_superexpression = 114, + sym_name_subsuperexpression = 115, + sym_name_expression = 116, + sym_any_name = 117, + sym_tuple_name = 118, + sym_variant_name = 119, + sym_annotated_name = 120, + sym_type_constructor = 121, + sym_scoped_any_type = 122, + sym_any_type = 123, + sym_tuple_type = 124, + sym_variant_type = 125, + sym_type_identifier_definition = 126, + sym_annotated_type = 127, + sym__type_annotations = 128, + sym_type_parameter = 129, + sym_parametrized_type = 130, + sym_type_expression = 131, + sym_type_subexpression = 132, + sym_annotated_typeclass = 133, + sym_parametrized_typeclass = 134, + sym_typeclass_expression = 135, + sym_literal = 136, + sym_string_literal = 137, + sym_char_literal = 138, + aux_sym_source_file_repeat1 = 139, + aux_sym_sources_repeat1 = 140, + aux_sym_import_statement_repeat1 = 141, + aux_sym_function_declaration_repeat1 = 142, + aux_sym_function_declaration_repeat2 = 143, + aux_sym_typeclass_definition_repeat1 = 144, + aux_sym_defined_name_repeat1 = 145, + aux_sym_definition_parameter_repeat1 = 146, + aux_sym_definition_argument_repeat1 = 147, + aux_sym_match_repeat1 = 148, + aux_sym_condition_repeat1 = 149, + aux_sym_block_repeat1 = 150, + aux_sym_function_call_expression_repeat1 = 151, + aux_sym_tuple_expression_repeat1 = 152, + aux_sym_variant_expression_repeat1 = 153, + aux_sym_name_superexpression_repeat1 = 154, + aux_sym_name_superexpression_repeat2 = 155, + aux_sym_name_expression_repeat1 = 156, + aux_sym_tuple_name_repeat1 = 157, + aux_sym_variant_name_repeat1 = 158, + aux_sym_type_constructor_repeat1 = 159, + aux_sym_tuple_type_repeat1 = 160, + aux_sym_variant_type_repeat1 = 161, + aux_sym_type_identifier_definition_repeat1 = 162, + aux_sym_parametrized_type_repeat1 = 163, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [anon_sym_namespace] = "namespace", + [anon_sym_const] = "const", + [anon_sym_var] = "var", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_partition] = "partition", + [anon_sym_TEST] = "TEST", + [anon_sym_INTERFACE] = "INTERFACE", + [anon_sym_CORE] = "CORE", + [anon_sym_LIB] = "LIB", + [anon_sym_MODULE] = "MODULE", + [anon_sym_EXE] = "EXE", + [anon_sym_import] = "import", + [anon_sym_COLON] = ":", + [anon_sym_use] = "use", + [anon_sym_EQ] = "=", + [anon_sym_alias] = "alias", + [anon_sym_decl] = "decl", + [anon_sym_DASH_GT] = "->", + [anon_sym_def] = "def", + [anon_sym_type] = "type", + [anon_sym_struct] = "struct", + [anon_sym_class] = "class", + [anon_sym_typeclass] = "typeclass", + [anon_sym_AMP] = "&", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_PIPE] = "|", + [anon_sym_QMARK] = "\?", + [anon_sym_match] = "match", + [anon_sym_with] = "with", + [anon_sym_if] = "if", + [anon_sym_then] = "then", + [anon_sym_elif] = "elif", + [anon_sym_else] = "else", + [anon_sym_do] = "do", + [anon_sym_while] = "while", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_loop] = "loop", + [anon_sym_SEMI] = ";", + [anon_sym_return] = "return", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_BSLASH] = "\\", + [anon_sym_DOT] = ".", + [anon_sym_DOLLAR] = "$", + [sym__line_comment] = "_line_comment", + [sym__doc_comment] = "_doc_comment", + [sym__block_comment] = "_block_comment", + [anon_sym__] = "_", + [sym_typeclass_identifier] = "typeclass_identifier", + [sym_name_identifier] = "name_identifier", + [sym_type_identifier] = "type_identifier", + [sym_abstract_type_identifier] = "abstract_type_identifier", + [sym_operator] = "operator", + [sym_float_number_literal] = "float_number_literal", + [sym_number_literal] = "number_literal", + [anon_sym_DQUOTE] = "\"", + [aux_sym_string_literal_token1] = "string_literal_token1", + [anon_sym_SQUOTE] = "'", + [aux_sym_char_literal_token1] = "char_literal_token1", + [sym_source_file] = "source_file", + [sym_sources] = "sources", + [sym_source_statement] = "source_statement", + [sym_namespace] = "namespace", + [sym_partition] = "partition", + [sym_partition_name] = "partition_name", + [sym_import_symbol] = "import_symbol", + [sym_import_statement] = "import_statement", + [sym_usage_definition] = "usage_definition", + [sym_alias_definition] = "alias_definition", + [sym_variable_definition] = "variable_definition", + [sym__function_declaration_statement] = "_function_declaration_statement", + [sym_function_declaration] = "function_declaration", + [sym_function_definition] = "function_definition", + [sym_alias_type_definition] = "alias_type_definition", + [sym_type_definition] = "type_definition", + [sym_typeclass_definition] = "typeclass_definition", + [sym_function_declartation_type] = "function_declartation_type", + [sym_defined_name] = "defined_name", + [sym__name_or_operator] = "_name_or_operator", + [sym_defined_annotated_name] = "defined_annotated_name", + [sym_defined_type] = "defined_type", + [sym_defined_typeclass] = "defined_typeclass", + [sym_definition_parameter] = "definition_parameter", + [sym_definition_argument] = "definition_argument", + [sym_flow_control] = "flow_control", + [sym_match_case] = "match_case", + [sym_match] = "match", + [sym_condition] = "condition", + [sym_do_while_loop] = "do_while_loop", + [sym_while_loop] = "while_loop", + [sym_for_loop] = "for_loop", + [sym_loop_loop] = "loop_loop", + [sym_block_statement] = "block_statement", + [sym_block] = "block", + [sym_superexpression] = "superexpression", + [sym_expression] = "expression", + [sym_prefixed_expression] = "prefixed_expression", + [sym_subexpression] = "subexpression", + [sym_subexpression_token] = "subexpression_token", + [sym_scoped_statement] = "scoped_statement", + [sym_binary_operator_expression] = "binary_operator_expression", + [sym_unary_operator_expression] = "unary_operator_expression", + [sym_function_argument] = "function_argument", + [sym_function_call_expression] = "function_call_expression", + [sym_tuple_expression] = "tuple_expression", + [sym_variant_expression] = "variant_expression", + [sym_return_expression] = "return_expression", + [sym_loop_control_expression] = "loop_control_expression", + [sym_lambda_function] = "lambda_function", + [sym_name_superexpression] = "name_superexpression", + [sym_name_subsuperexpression] = "name_subsuperexpression", + [sym_name_expression] = "name_expression", + [sym_any_name] = "any_name", + [sym_tuple_name] = "tuple_name", + [sym_variant_name] = "variant_name", + [sym_annotated_name] = "annotated_name", + [sym_type_constructor] = "type_constructor", + [sym_scoped_any_type] = "scoped_any_type", + [sym_any_type] = "any_type", + [sym_tuple_type] = "tuple_type", + [sym_variant_type] = "variant_type", + [sym_type_identifier_definition] = "type_identifier_definition", + [sym_annotated_type] = "annotated_type", + [sym__type_annotations] = "_type_annotations", + [sym_type_parameter] = "type_parameter", + [sym_parametrized_type] = "parametrized_type", + [sym_type_expression] = "type_expression", + [sym_type_subexpression] = "type_subexpression", + [sym_annotated_typeclass] = "annotated_typeclass", + [sym_parametrized_typeclass] = "parametrized_typeclass", + [sym_typeclass_expression] = "typeclass_expression", + [sym_literal] = "literal", + [sym_string_literal] = "string_literal", + [sym_char_literal] = "char_literal", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_sources_repeat1] = "sources_repeat1", + [aux_sym_import_statement_repeat1] = "import_statement_repeat1", + [aux_sym_function_declaration_repeat1] = "function_declaration_repeat1", + [aux_sym_function_declaration_repeat2] = "function_declaration_repeat2", + [aux_sym_typeclass_definition_repeat1] = "typeclass_definition_repeat1", + [aux_sym_defined_name_repeat1] = "defined_name_repeat1", + [aux_sym_definition_parameter_repeat1] = "definition_parameter_repeat1", + [aux_sym_definition_argument_repeat1] = "definition_argument_repeat1", + [aux_sym_match_repeat1] = "match_repeat1", + [aux_sym_condition_repeat1] = "condition_repeat1", + [aux_sym_block_repeat1] = "block_repeat1", + [aux_sym_function_call_expression_repeat1] = "function_call_expression_repeat1", + [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", + [aux_sym_variant_expression_repeat1] = "variant_expression_repeat1", + [aux_sym_name_superexpression_repeat1] = "name_superexpression_repeat1", + [aux_sym_name_superexpression_repeat2] = "name_superexpression_repeat2", + [aux_sym_name_expression_repeat1] = "name_expression_repeat1", + [aux_sym_tuple_name_repeat1] = "tuple_name_repeat1", + [aux_sym_variant_name_repeat1] = "variant_name_repeat1", + [aux_sym_type_constructor_repeat1] = "type_constructor_repeat1", + [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", + [aux_sym_variant_type_repeat1] = "variant_type_repeat1", + [aux_sym_type_identifier_definition_repeat1] = "type_identifier_definition_repeat1", + [aux_sym_parametrized_type_repeat1] = "parametrized_type_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [anon_sym_namespace] = anon_sym_namespace, + [anon_sym_const] = anon_sym_const, + [anon_sym_var] = anon_sym_var, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_partition] = anon_sym_partition, + [anon_sym_TEST] = anon_sym_TEST, + [anon_sym_INTERFACE] = anon_sym_INTERFACE, + [anon_sym_CORE] = anon_sym_CORE, + [anon_sym_LIB] = anon_sym_LIB, + [anon_sym_MODULE] = anon_sym_MODULE, + [anon_sym_EXE] = anon_sym_EXE, + [anon_sym_import] = anon_sym_import, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_use] = anon_sym_use, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_alias] = anon_sym_alias, + [anon_sym_decl] = anon_sym_decl, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_def] = anon_sym_def, + [anon_sym_type] = anon_sym_type, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_class] = anon_sym_class, + [anon_sym_typeclass] = anon_sym_typeclass, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_match] = anon_sym_match, + [anon_sym_with] = anon_sym_with, + [anon_sym_if] = anon_sym_if, + [anon_sym_then] = anon_sym_then, + [anon_sym_elif] = anon_sym_elif, + [anon_sym_else] = anon_sym_else, + [anon_sym_do] = anon_sym_do, + [anon_sym_while] = anon_sym_while, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_loop] = anon_sym_loop, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_return] = anon_sym_return, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [sym__line_comment] = sym__line_comment, + [sym__doc_comment] = sym__doc_comment, + [sym__block_comment] = sym__block_comment, + [anon_sym__] = anon_sym__, + [sym_typeclass_identifier] = sym_typeclass_identifier, + [sym_name_identifier] = sym_name_identifier, + [sym_type_identifier] = sym_type_identifier, + [sym_abstract_type_identifier] = sym_abstract_type_identifier, + [sym_operator] = sym_operator, + [sym_float_number_literal] = sym_float_number_literal, + [sym_number_literal] = sym_number_literal, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_string_literal_token1] = aux_sym_string_literal_token1, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_char_literal_token1] = aux_sym_char_literal_token1, + [sym_source_file] = sym_source_file, + [sym_sources] = sym_sources, + [sym_source_statement] = sym_source_statement, + [sym_namespace] = sym_namespace, + [sym_partition] = sym_partition, + [sym_partition_name] = sym_partition_name, + [sym_import_symbol] = sym_import_symbol, + [sym_import_statement] = sym_import_statement, + [sym_usage_definition] = sym_usage_definition, + [sym_alias_definition] = sym_alias_definition, + [sym_variable_definition] = sym_variable_definition, + [sym__function_declaration_statement] = sym__function_declaration_statement, + [sym_function_declaration] = sym_function_declaration, + [sym_function_definition] = sym_function_definition, + [sym_alias_type_definition] = sym_alias_type_definition, + [sym_type_definition] = sym_type_definition, + [sym_typeclass_definition] = sym_typeclass_definition, + [sym_function_declartation_type] = sym_function_declartation_type, + [sym_defined_name] = sym_defined_name, + [sym__name_or_operator] = sym__name_or_operator, + [sym_defined_annotated_name] = sym_defined_annotated_name, + [sym_defined_type] = sym_defined_type, + [sym_defined_typeclass] = sym_defined_typeclass, + [sym_definition_parameter] = sym_definition_parameter, + [sym_definition_argument] = sym_definition_argument, + [sym_flow_control] = sym_flow_control, + [sym_match_case] = sym_match_case, + [sym_match] = sym_match, + [sym_condition] = sym_condition, + [sym_do_while_loop] = sym_do_while_loop, + [sym_while_loop] = sym_while_loop, + [sym_for_loop] = sym_for_loop, + [sym_loop_loop] = sym_loop_loop, + [sym_block_statement] = sym_block_statement, + [sym_block] = sym_block, + [sym_superexpression] = sym_superexpression, + [sym_expression] = sym_expression, + [sym_prefixed_expression] = sym_prefixed_expression, + [sym_subexpression] = sym_subexpression, + [sym_subexpression_token] = sym_subexpression_token, + [sym_scoped_statement] = sym_scoped_statement, + [sym_binary_operator_expression] = sym_binary_operator_expression, + [sym_unary_operator_expression] = sym_unary_operator_expression, + [sym_function_argument] = sym_function_argument, + [sym_function_call_expression] = sym_function_call_expression, + [sym_tuple_expression] = sym_tuple_expression, + [sym_variant_expression] = sym_variant_expression, + [sym_return_expression] = sym_return_expression, + [sym_loop_control_expression] = sym_loop_control_expression, + [sym_lambda_function] = sym_lambda_function, + [sym_name_superexpression] = sym_name_superexpression, + [sym_name_subsuperexpression] = sym_name_subsuperexpression, + [sym_name_expression] = sym_name_expression, + [sym_any_name] = sym_any_name, + [sym_tuple_name] = sym_tuple_name, + [sym_variant_name] = sym_variant_name, + [sym_annotated_name] = sym_annotated_name, + [sym_type_constructor] = sym_type_constructor, + [sym_scoped_any_type] = sym_scoped_any_type, + [sym_any_type] = sym_any_type, + [sym_tuple_type] = sym_tuple_type, + [sym_variant_type] = sym_variant_type, + [sym_type_identifier_definition] = sym_type_identifier_definition, + [sym_annotated_type] = sym_annotated_type, + [sym__type_annotations] = sym__type_annotations, + [sym_type_parameter] = sym_type_parameter, + [sym_parametrized_type] = sym_parametrized_type, + [sym_type_expression] = sym_type_expression, + [sym_type_subexpression] = sym_type_subexpression, + [sym_annotated_typeclass] = sym_annotated_typeclass, + [sym_parametrized_typeclass] = sym_parametrized_typeclass, + [sym_typeclass_expression] = sym_typeclass_expression, + [sym_literal] = sym_literal, + [sym_string_literal] = sym_string_literal, + [sym_char_literal] = sym_char_literal, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_sources_repeat1] = aux_sym_sources_repeat1, + [aux_sym_import_statement_repeat1] = aux_sym_import_statement_repeat1, + [aux_sym_function_declaration_repeat1] = aux_sym_function_declaration_repeat1, + [aux_sym_function_declaration_repeat2] = aux_sym_function_declaration_repeat2, + [aux_sym_typeclass_definition_repeat1] = aux_sym_typeclass_definition_repeat1, + [aux_sym_defined_name_repeat1] = aux_sym_defined_name_repeat1, + [aux_sym_definition_parameter_repeat1] = aux_sym_definition_parameter_repeat1, + [aux_sym_definition_argument_repeat1] = aux_sym_definition_argument_repeat1, + [aux_sym_match_repeat1] = aux_sym_match_repeat1, + [aux_sym_condition_repeat1] = aux_sym_condition_repeat1, + [aux_sym_block_repeat1] = aux_sym_block_repeat1, + [aux_sym_function_call_expression_repeat1] = aux_sym_function_call_expression_repeat1, + [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, + [aux_sym_variant_expression_repeat1] = aux_sym_variant_expression_repeat1, + [aux_sym_name_superexpression_repeat1] = aux_sym_name_superexpression_repeat1, + [aux_sym_name_superexpression_repeat2] = aux_sym_name_superexpression_repeat2, + [aux_sym_name_expression_repeat1] = aux_sym_name_expression_repeat1, + [aux_sym_tuple_name_repeat1] = aux_sym_tuple_name_repeat1, + [aux_sym_variant_name_repeat1] = aux_sym_variant_name_repeat1, + [aux_sym_type_constructor_repeat1] = aux_sym_type_constructor_repeat1, + [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, + [aux_sym_variant_type_repeat1] = aux_sym_variant_type_repeat1, + [aux_sym_type_identifier_definition_repeat1] = aux_sym_type_identifier_definition_repeat1, + [aux_sym_parametrized_type_repeat1] = aux_sym_parametrized_type_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_namespace] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_partition] = { + .visible = true, + .named = false, + }, + [anon_sym_TEST] = { + .visible = true, + .named = false, + }, + [anon_sym_INTERFACE] = { + .visible = true, + .named = false, + }, + [anon_sym_CORE] = { + .visible = true, + .named = false, + }, + [anon_sym_LIB] = { + .visible = true, + .named = false, + }, + [anon_sym_MODULE] = { + .visible = true, + .named = false, + }, + [anon_sym_EXE] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_use] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_alias] = { + .visible = true, + .named = false, + }, + [anon_sym_decl] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_def] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_typeclass] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_then] = { + .visible = true, + .named = false, + }, + [anon_sym_elif] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_loop] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [sym__line_comment] = { + .visible = false, + .named = true, + }, + [sym__doc_comment] = { + .visible = false, + .named = true, + }, + [sym__block_comment] = { + .visible = false, + .named = true, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [sym_typeclass_identifier] = { + .visible = true, + .named = true, + }, + [sym_name_identifier] = { + .visible = true, + .named = true, + }, + [sym_type_identifier] = { + .visible = true, + .named = true, + }, + [sym_abstract_type_identifier] = { + .visible = true, + .named = true, + }, + [sym_operator] = { + .visible = true, + .named = true, + }, + [sym_float_number_literal] = { + .visible = true, + .named = true, + }, + [sym_number_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_literal_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_char_literal_token1] = { + .visible = false, + .named = false, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym_sources] = { + .visible = true, + .named = true, + }, + [sym_source_statement] = { + .visible = true, + .named = true, + }, + [sym_namespace] = { + .visible = true, + .named = true, + }, + [sym_partition] = { + .visible = true, + .named = true, + }, + [sym_partition_name] = { + .visible = true, + .named = true, + }, + [sym_import_symbol] = { + .visible = true, + .named = true, + }, + [sym_import_statement] = { + .visible = true, + .named = true, + }, + [sym_usage_definition] = { + .visible = true, + .named = true, + }, + [sym_alias_definition] = { + .visible = true, + .named = true, + }, + [sym_variable_definition] = { + .visible = true, + .named = true, + }, + [sym__function_declaration_statement] = { + .visible = false, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_alias_type_definition] = { + .visible = true, + .named = true, + }, + [sym_type_definition] = { + .visible = true, + .named = true, + }, + [sym_typeclass_definition] = { + .visible = true, + .named = true, + }, + [sym_function_declartation_type] = { + .visible = true, + .named = true, + }, + [sym_defined_name] = { + .visible = true, + .named = true, + }, + [sym__name_or_operator] = { + .visible = false, + .named = true, + }, + [sym_defined_annotated_name] = { + .visible = true, + .named = true, + }, + [sym_defined_type] = { + .visible = true, + .named = true, + }, + [sym_defined_typeclass] = { + .visible = true, + .named = true, + }, + [sym_definition_parameter] = { + .visible = true, + .named = true, + }, + [sym_definition_argument] = { + .visible = true, + .named = true, + }, + [sym_flow_control] = { + .visible = true, + .named = true, + }, + [sym_match_case] = { + .visible = true, + .named = true, + }, + [sym_match] = { + .visible = true, + .named = true, + }, + [sym_condition] = { + .visible = true, + .named = true, + }, + [sym_do_while_loop] = { + .visible = true, + .named = true, + }, + [sym_while_loop] = { + .visible = true, + .named = true, + }, + [sym_for_loop] = { + .visible = true, + .named = true, + }, + [sym_loop_loop] = { + .visible = true, + .named = true, + }, + [sym_block_statement] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_superexpression] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = true, + .named = true, + }, + [sym_prefixed_expression] = { + .visible = true, + .named = true, + }, + [sym_subexpression] = { + .visible = true, + .named = true, + }, + [sym_subexpression_token] = { + .visible = true, + .named = true, + }, + [sym_scoped_statement] = { + .visible = true, + .named = true, + }, + [sym_binary_operator_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_operator_expression] = { + .visible = true, + .named = true, + }, + [sym_function_argument] = { + .visible = true, + .named = true, + }, + [sym_function_call_expression] = { + .visible = true, + .named = true, + }, + [sym_tuple_expression] = { + .visible = true, + .named = true, + }, + [sym_variant_expression] = { + .visible = true, + .named = true, + }, + [sym_return_expression] = { + .visible = true, + .named = true, + }, + [sym_loop_control_expression] = { + .visible = true, + .named = true, + }, + [sym_lambda_function] = { + .visible = true, + .named = true, + }, + [sym_name_superexpression] = { + .visible = true, + .named = true, + }, + [sym_name_subsuperexpression] = { + .visible = true, + .named = true, + }, + [sym_name_expression] = { + .visible = true, + .named = true, + }, + [sym_any_name] = { + .visible = true, + .named = true, + }, + [sym_tuple_name] = { + .visible = true, + .named = true, + }, + [sym_variant_name] = { + .visible = true, + .named = true, + }, + [sym_annotated_name] = { + .visible = true, + .named = true, + }, + [sym_type_constructor] = { + .visible = true, + .named = true, + }, + [sym_scoped_any_type] = { + .visible = true, + .named = true, + }, + [sym_any_type] = { + .visible = true, + .named = true, + }, + [sym_tuple_type] = { + .visible = true, + .named = true, + }, + [sym_variant_type] = { + .visible = true, + .named = true, + }, + [sym_type_identifier_definition] = { + .visible = true, + .named = true, + }, + [sym_annotated_type] = { + .visible = true, + .named = true, + }, + [sym__type_annotations] = { + .visible = false, + .named = true, + }, + [sym_type_parameter] = { + .visible = true, + .named = true, + }, + [sym_parametrized_type] = { + .visible = true, + .named = true, + }, + [sym_type_expression] = { + .visible = true, + .named = true, + }, + [sym_type_subexpression] = { + .visible = true, + .named = true, + }, + [sym_annotated_typeclass] = { + .visible = true, + .named = true, + }, + [sym_parametrized_typeclass] = { + .visible = true, + .named = true, + }, + [sym_typeclass_expression] = { + .visible = true, + .named = true, + }, + [sym_literal] = { + .visible = true, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym_char_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sources_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_import_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_declaration_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_typeclass_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_defined_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_definition_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_definition_argument_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_condition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_call_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variant_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_name_superexpression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_name_superexpression_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_name_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variant_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_constructor_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variant_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_identifier_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parametrized_type_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_condition = 1, + field_expression = 2, + field_import_statement = 3, + field_interval = 4, + field_left_expression = 5, + field_module_name = 6, + field_name = 7, + field_operator_name = 8, + field_right_expression = 9, + field_scope = 10, + field_statement = 11, + field_type = 12, + field_type_expression = 13, + field_typeclass = 14, + field_typeclass_expression = 15, + field_value = 16, + field_variable = 17, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_condition] = "condition", + [field_expression] = "expression", + [field_import_statement] = "import_statement", + [field_interval] = "interval", + [field_left_expression] = "left_expression", + [field_module_name] = "module_name", + [field_name] = "name", + [field_operator_name] = "operator_name", + [field_right_expression] = "right_expression", + [field_scope] = "scope", + [field_statement] = "statement", + [field_type] = "type", + [field_type_expression] = "type_expression", + [field_typeclass] = "typeclass", + [field_typeclass_expression] = "typeclass_expression", + [field_value] = "value", + [field_variable] = "variable", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 1}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 1}, + [9] = {.index = 8, .length = 2}, + [10] = {.index = 10, .length = 2}, + [11] = {.index = 12, .length = 2}, + [12] = {.index = 14, .length = 2}, + [13] = {.index = 16, .length = 1}, + [14] = {.index = 17, .length = 2}, + [15] = {.index = 19, .length = 1}, + [16] = {.index = 20, .length = 1}, + [17] = {.index = 21, .length = 2}, + [18] = {.index = 23, .length = 1}, + [19] = {.index = 24, .length = 2}, + [20] = {.index = 26, .length = 1}, + [21] = {.index = 27, .length = 3}, + [22] = {.index = 30, .length = 1}, + [23] = {.index = 31, .length = 2}, + [24] = {.index = 33, .length = 2}, + [25] = {.index = 35, .length = 1}, + [26] = {.index = 36, .length = 1}, + [27] = {.index = 37, .length = 1}, + [28] = {.index = 38, .length = 3}, + [29] = {.index = 41, .length = 1}, + [30] = {.index = 42, .length = 2}, + [31] = {.index = 44, .length = 2}, + [32] = {.index = 46, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_type, 0}, + [1] = + {field_type_expression, 0}, + [2] = + {field_name, 0}, + [3] = + {field_module_name, 1}, + [4] = + {field_typeclass, 0}, + [5] = + {field_typeclass, 1}, + [6] = + {field_typeclass_expression, 0}, + [7] = + {field_type, 1}, + [8] = + {field_name, 0}, + {field_type, 2}, + [10] = + {field_name, 1}, + {field_value, 3}, + [12] = + {field_import_statement, 3}, + {field_name, 1}, + [14] = + {field_type, 1}, + {field_value, 3}, + [16] = + {field_type_expression, 1}, + [17] = + {field_name, 1}, + {field_scope, 3}, + [19] = + {field_statement, 1}, + [20] = + {field_expression, 1}, + [21] = + {field_expression, 1}, + {field_operator_name, 0}, + [23] = + {field_typeclass_expression, 1}, + [24] = + {field_name, 2}, + {field_scope, 4}, + [26] = + {field_expression, 2}, + [27] = + {field_left_expression, 0}, + {field_operator_name, 1}, + {field_right_expression, 2}, + [30] = + {field_value, 1}, + [31] = + {field_condition, 3}, + {field_statement, 1}, + [33] = + {field_condition, 1}, + {field_statement, 3}, + [35] = + {field_expression, 3}, + [36] = + {field_name, 1}, + [37] = + {field_expression, 4}, + [38] = + {field_interval, 3}, + {field_statement, 5}, + {field_variable, 1}, + [41] = + {field_expression, 5}, + [42] = + {field_statement, 3}, + {field_value, 1}, + [44] = + {field_condition, 3}, + {field_value, 1}, + [46] = + {field_condition, 3}, + {field_statement, 5}, + {field_value, 1}, +}; + +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] = 2, + [6] = 2, + [7] = 2, + [8] = 2, + [9] = 2, + [10] = 2, + [11] = 2, + [12] = 2, + [13] = 2, + [14] = 2, + [15] = 2, + [16] = 2, + [17] = 2, + [18] = 18, + [19] = 2, + [20] = 2, + [21] = 2, + [22] = 2, + [23] = 2, + [24] = 2, + [25] = 2, + [26] = 2, + [27] = 2, + [28] = 2, + [29] = 2, + [30] = 2, + [31] = 2, + [32] = 2, + [33] = 2, + [34] = 2, + [35] = 2, + [36] = 2, + [37] = 2, + [38] = 2, + [39] = 2, + [40] = 2, + [41] = 2, + [42] = 2, + [43] = 2, + [44] = 2, + [45] = 2, + [46] = 2, + [47] = 2, + [48] = 2, + [49] = 2, + [50] = 2, + [51] = 2, + [52] = 2, + [53] = 2, + [54] = 2, + [55] = 2, + [56] = 2, + [57] = 2, + [58] = 2, + [59] = 59, + [60] = 59, + [61] = 59, + [62] = 59, + [63] = 59, + [64] = 59, + [65] = 65, + [66] = 59, + [67] = 67, + [68] = 59, + [69] = 59, + [70] = 65, + [71] = 59, + [72] = 59, + [73] = 59, + [74] = 59, + [75] = 59, + [76] = 59, + [77] = 59, + [78] = 59, + [79] = 59, + [80] = 67, + [81] = 59, + [82] = 59, + [83] = 59, + [84] = 59, + [85] = 59, + [86] = 59, + [87] = 59, + [88] = 59, + [89] = 59, + [90] = 59, + [91] = 59, + [92] = 59, + [93] = 59, + [94] = 59, + [95] = 59, + [96] = 59, + [97] = 59, + [98] = 59, + [99] = 59, + [100] = 59, + [101] = 59, + [102] = 59, + [103] = 59, + [104] = 59, + [105] = 59, + [106] = 59, + [107] = 59, + [108] = 59, + [109] = 59, + [110] = 59, + [111] = 59, + [112] = 65, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 123, + [125] = 122, + [126] = 121, + [127] = 122, + [128] = 123, + [129] = 121, + [130] = 122, + [131] = 121, + [132] = 122, + [133] = 123, + [134] = 123, + [135] = 121, + [136] = 121, + [137] = 121, + [138] = 122, + [139] = 121, + [140] = 122, + [141] = 122, + [142] = 121, + [143] = 123, + [144] = 123, + [145] = 122, + [146] = 123, + [147] = 121, + [148] = 123, + [149] = 122, + [150] = 122, + [151] = 123, + [152] = 122, + [153] = 121, + [154] = 121, + [155] = 123, + [156] = 123, + [157] = 157, + [158] = 123, + [159] = 122, + [160] = 123, + [161] = 123, + [162] = 121, + [163] = 121, + [164] = 122, + [165] = 123, + [166] = 122, + [167] = 122, + [168] = 123, + [169] = 121, + [170] = 123, + [171] = 123, + [172] = 122, + [173] = 121, + [174] = 121, + [175] = 123, + [176] = 122, + [177] = 122, + [178] = 121, + [179] = 121, + [180] = 121, + [181] = 122, + [182] = 182, + [183] = 183, + [184] = 121, + [185] = 185, + [186] = 186, + [187] = 182, + [188] = 185, + [189] = 122, + [190] = 185, + [191] = 123, + [192] = 192, + [193] = 193, + [194] = 193, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 183, + [200] = 183, + [201] = 193, + [202] = 121, + [203] = 123, + [204] = 195, + [205] = 196, + [206] = 183, + [207] = 207, + [208] = 193, + [209] = 185, + [210] = 186, + [211] = 197, + [212] = 182, + [213] = 213, + [214] = 214, + [215] = 192, + [216] = 195, + [217] = 122, + [218] = 183, + [219] = 193, + [220] = 196, + [221] = 197, + [222] = 183, + [223] = 193, + [224] = 185, + [225] = 121, + [226] = 186, + [227] = 182, + [228] = 192, + [229] = 229, + [230] = 186, + [231] = 231, + [232] = 183, + [233] = 186, + [234] = 193, + [235] = 185, + [236] = 186, + [237] = 182, + [238] = 238, + [239] = 182, + [240] = 192, + [241] = 185, + [242] = 183, + [243] = 183, + [244] = 121, + [245] = 193, + [246] = 185, + [247] = 186, + [248] = 193, + [249] = 122, + [250] = 182, + [251] = 122, + [252] = 193, + [253] = 253, + [254] = 123, + [255] = 192, + [256] = 192, + [257] = 257, + [258] = 123, + [259] = 183, + [260] = 260, + [261] = 193, + [262] = 185, + [263] = 186, + [264] = 182, + [265] = 192, + [266] = 183, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 195, + [271] = 193, + [272] = 185, + [273] = 185, + [274] = 186, + [275] = 182, + [276] = 192, + [277] = 182, + [278] = 192, + [279] = 183, + [280] = 193, + [281] = 185, + [282] = 186, + [283] = 182, + [284] = 192, + [285] = 192, + [286] = 193, + [287] = 185, + [288] = 186, + [289] = 182, + [290] = 186, + [291] = 182, + [292] = 238, + [293] = 185, + [294] = 267, + [295] = 192, + [296] = 183, + [297] = 193, + [298] = 186, + [299] = 185, + [300] = 186, + [301] = 182, + [302] = 192, + [303] = 192, + [304] = 185, + [305] = 183, + [306] = 193, + [307] = 185, + [308] = 186, + [309] = 193, + [310] = 182, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 260, + [315] = 192, + [316] = 182, + [317] = 183, + [318] = 183, + [319] = 231, + [320] = 229, + [321] = 193, + [322] = 185, + [323] = 253, + [324] = 186, + [325] = 257, + [326] = 182, + [327] = 186, + [328] = 182, + [329] = 312, + [330] = 198, + [331] = 121, + [332] = 213, + [333] = 186, + [334] = 185, + [335] = 186, + [336] = 192, + [337] = 182, + [338] = 257, + [339] = 196, + [340] = 122, + [341] = 197, + [342] = 193, + [343] = 269, + [344] = 182, + [345] = 313, + [346] = 311, + [347] = 214, + [348] = 183, + [349] = 183, + [350] = 268, + [351] = 123, + [352] = 313, + [353] = 183, + [354] = 183, + [355] = 213, + [356] = 185, + [357] = 198, + [358] = 253, + [359] = 192, + [360] = 229, + [361] = 182, + [362] = 231, + [363] = 260, + [364] = 312, + [365] = 192, + [366] = 238, + [367] = 186, + [368] = 192, + [369] = 121, + [370] = 193, + [371] = 183, + [372] = 193, + [373] = 182, + [374] = 185, + [375] = 269, + [376] = 268, + [377] = 192, + [378] = 311, + [379] = 186, + [380] = 267, + [381] = 257, + [382] = 185, + [383] = 192, + [384] = 122, + [385] = 193, + [386] = 214, + [387] = 192, + [388] = 313, + [389] = 193, + [390] = 183, + [391] = 268, + [392] = 269, + [393] = 185, + [394] = 123, + [395] = 192, + [396] = 311, + [397] = 192, + [398] = 214, + [399] = 183, + [400] = 238, + [401] = 182, + [402] = 186, + [403] = 267, + [404] = 183, + [405] = 186, + [406] = 312, + [407] = 260, + [408] = 182, + [409] = 231, + [410] = 229, + [411] = 253, + [412] = 186, + [413] = 213, + [414] = 193, + [415] = 198, + [416] = 185, + [417] = 121, + [418] = 123, + [419] = 122, + [420] = 121, + [421] = 121, + [422] = 122, + [423] = 123, + [424] = 122, + [425] = 123, + [426] = 426, + [427] = 121, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 123, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 122, + [441] = 429, + [442] = 442, + [443] = 443, + [444] = 429, + [445] = 445, + [446] = 443, + [447] = 445, + [448] = 442, + [449] = 429, + [450] = 445, + [451] = 443, + [452] = 442, + [453] = 429, + [454] = 429, + [455] = 442, + [456] = 445, + [457] = 442, + [458] = 429, + [459] = 443, + [460] = 445, + [461] = 443, + [462] = 445, + [463] = 443, + [464] = 464, + [465] = 445, + [466] = 429, + [467] = 467, + [468] = 468, + [469] = 442, + [470] = 442, + [471] = 443, + [472] = 429, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 443, + [477] = 445, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 442, + [488] = 488, + [489] = 475, + [490] = 474, + [491] = 481, + [492] = 492, + [493] = 482, + [494] = 475, + [495] = 474, + [496] = 473, + [497] = 429, + [498] = 488, + [499] = 499, + [500] = 482, + [501] = 501, + [502] = 483, + [503] = 488, + [504] = 478, + [505] = 485, + [506] = 479, + [507] = 480, + [508] = 480, + [509] = 475, + [510] = 483, + [511] = 478, + [512] = 479, + [513] = 480, + [514] = 479, + [515] = 473, + [516] = 485, + [517] = 481, + [518] = 486, + [519] = 483, + [520] = 478, + [521] = 429, + [522] = 429, + [523] = 473, + [524] = 485, + [525] = 481, + [526] = 117, + [527] = 486, + [528] = 488, + [529] = 486, + [530] = 445, + [531] = 486, + [532] = 481, + [533] = 485, + [534] = 473, + [535] = 119, + [536] = 488, + [537] = 475, + [538] = 482, + [539] = 478, + [540] = 429, + [541] = 474, + [542] = 479, + [543] = 482, + [544] = 474, + [545] = 483, + [546] = 480, + [547] = 547, + [548] = 482, + [549] = 488, + [550] = 486, + [551] = 482, + [552] = 479, + [553] = 486, + [554] = 429, + [555] = 482, + [556] = 473, + [557] = 474, + [558] = 445, + [559] = 482, + [560] = 488, + [561] = 429, + [562] = 481, + [563] = 483, + [564] = 475, + [565] = 478, + [566] = 479, + [567] = 567, + [568] = 473, + [569] = 480, + [570] = 570, + [571] = 474, + [572] = 483, + [573] = 481, + [574] = 480, + [575] = 429, + [576] = 576, + [577] = 479, + [578] = 485, + [579] = 483, + [580] = 485, + [581] = 480, + [582] = 582, + [583] = 479, + [584] = 475, + [585] = 478, + [586] = 485, + [587] = 488, + [588] = 486, + [589] = 429, + [590] = 492, + [591] = 478, + [592] = 478, + [593] = 481, + [594] = 482, + [595] = 473, + [596] = 474, + [597] = 492, + [598] = 488, + [599] = 474, + [600] = 483, + [601] = 475, + [602] = 445, + [603] = 473, + [604] = 492, + [605] = 480, + [606] = 479, + [607] = 485, + [608] = 429, + [609] = 474, + [610] = 478, + [611] = 479, + [612] = 488, + [613] = 475, + [614] = 492, + [615] = 480, + [616] = 616, + [617] = 483, + [618] = 618, + [619] = 485, + [620] = 482, + [621] = 475, + [622] = 622, + [623] = 474, + [624] = 473, + [625] = 486, + [626] = 486, + [627] = 475, + [628] = 481, + [629] = 629, + [630] = 445, + [631] = 474, + [632] = 486, + [633] = 633, + [634] = 478, + [635] = 481, + [636] = 482, + [637] = 488, + [638] = 638, + [639] = 481, + [640] = 481, + [641] = 473, + [642] = 642, + [643] = 429, + [644] = 483, + [645] = 488, + [646] = 485, + [647] = 480, + [648] = 486, + [649] = 485, + [650] = 478, + [651] = 479, + [652] = 480, + [653] = 475, + [654] = 483, + [655] = 429, + [656] = 445, + [657] = 473, + [658] = 429, + [659] = 616, + [660] = 485, + [661] = 492, + [662] = 485, + [663] = 429, + [664] = 429, + [665] = 429, + [666] = 486, + [667] = 481, + [668] = 473, + [669] = 429, + [670] = 492, + [671] = 671, + [672] = 483, + [673] = 485, + [674] = 486, + [675] = 480, + [676] = 481, + [677] = 479, + [678] = 473, + [679] = 478, + [680] = 488, + [681] = 492, + [682] = 483, + [683] = 486, + [684] = 480, + [685] = 479, + [686] = 686, + [687] = 478, + [688] = 445, + [689] = 482, + [690] = 488, + [691] = 475, + [692] = 445, + [693] = 474, + [694] = 481, + [695] = 492, + [696] = 482, + [697] = 475, + [698] = 488, + [699] = 474, + [700] = 445, + [701] = 478, + [702] = 475, + [703] = 474, + [704] = 475, + [705] = 474, + [706] = 429, + [707] = 474, + [708] = 479, + [709] = 429, + [710] = 482, + [711] = 482, + [712] = 480, + [713] = 474, + [714] = 445, + [715] = 475, + [716] = 483, + [717] = 492, + [718] = 488, + [719] = 473, + [720] = 488, + [721] = 474, + [722] = 478, + [723] = 482, + [724] = 475, + [725] = 479, + [726] = 488, + [727] = 445, + [728] = 480, + [729] = 478, + [730] = 492, + [731] = 473, + [732] = 479, + [733] = 480, + [734] = 483, + [735] = 475, + [736] = 478, + [737] = 483, + [738] = 482, + [739] = 474, + [740] = 481, + [741] = 473, + [742] = 482, + [743] = 481, + [744] = 486, + [745] = 486, + [746] = 473, + [747] = 576, + [748] = 481, + [749] = 488, + [750] = 445, + [751] = 486, + [752] = 478, + [753] = 485, + [754] = 479, + [755] = 429, + [756] = 480, + [757] = 122, + [758] = 483, + [759] = 488, + [760] = 485, + [761] = 473, + [762] = 445, + [763] = 481, + [764] = 486, + [765] = 483, + [766] = 123, + [767] = 482, + [768] = 492, + [769] = 121, + [770] = 479, + [771] = 485, + [772] = 478, + [773] = 486, + [774] = 481, + [775] = 485, + [776] = 473, + [777] = 475, + [778] = 479, + [779] = 480, + [780] = 483, + [781] = 485, + [782] = 480, + [783] = 429, + [784] = 784, + [785] = 492, + [786] = 485, + [787] = 492, + [788] = 478, + [789] = 789, + [790] = 429, + [791] = 791, + [792] = 486, + [793] = 474, + [794] = 481, + [795] = 795, + [796] = 482, + [797] = 492, + [798] = 474, + [799] = 483, + [800] = 480, + [801] = 492, + [802] = 479, + [803] = 483, + [804] = 485, + [805] = 478, + [806] = 492, + [807] = 445, + [808] = 488, + [809] = 486, + [810] = 481, + [811] = 482, + [812] = 473, + [813] = 474, + [814] = 483, + [815] = 475, + [816] = 480, + [817] = 479, + [818] = 488, + [819] = 475, + [820] = 820, + [821] = 429, + [822] = 445, + [823] = 121, + [824] = 122, + [825] = 482, + [826] = 429, + [827] = 123, + [828] = 475, + [829] = 473, + [830] = 474, + [831] = 482, + [832] = 485, + [833] = 478, + [834] = 486, + [835] = 481, + [836] = 473, + [837] = 474, + [838] = 838, + [839] = 483, + [840] = 480, + [841] = 123, + [842] = 479, + [843] = 488, + [844] = 488, + [845] = 475, + [846] = 122, + [847] = 445, + [848] = 478, + [849] = 482, + [850] = 492, + [851] = 488, + [852] = 121, + [853] = 479, + [854] = 445, + [855] = 478, + [856] = 480, + [857] = 485, + [858] = 475, + [859] = 445, + [860] = 492, + [861] = 479, + [862] = 483, + [863] = 863, + [864] = 486, + [865] = 480, + [866] = 481, + [867] = 473, + [868] = 473, + [869] = 445, + [870] = 429, + [871] = 871, + [872] = 483, + [873] = 481, + [874] = 480, + [875] = 479, + [876] = 876, + [877] = 478, + [878] = 445, + [879] = 485, + [880] = 488, + [881] = 492, + [882] = 123, + [883] = 122, + [884] = 121, + [885] = 485, + [886] = 482, + [887] = 445, + [888] = 429, + [889] = 474, + [890] = 486, + [891] = 481, + [892] = 475, + [893] = 473, + [894] = 486, + [895] = 481, + [896] = 483, + [897] = 445, + [898] = 485, + [899] = 478, + [900] = 492, + [901] = 121, + [902] = 122, + [903] = 123, + [904] = 486, + [905] = 481, + [906] = 482, + [907] = 473, + [908] = 474, + [909] = 483, + [910] = 492, + [911] = 480, + [912] = 479, + [913] = 488, + [914] = 445, + [915] = 475, + [916] = 492, + [917] = 492, + [918] = 429, + [919] = 445, + [920] = 492, + [921] = 445, + [922] = 492, + [923] = 445, + [924] = 475, + [925] = 474, + [926] = 482, + [927] = 473, + [928] = 488, + [929] = 478, + [930] = 479, + [931] = 480, + [932] = 475, + [933] = 483, + [934] = 123, + [935] = 429, + [936] = 474, + [937] = 481, + [938] = 473, + [939] = 482, + [940] = 486, + [941] = 485, + [942] = 486, + [943] = 488, + [944] = 121, + [945] = 121, + [946] = 429, + [947] = 478, + [948] = 485, + [949] = 122, + [950] = 479, + [951] = 480, + [952] = 122, + [953] = 123, + [954] = 445, + [955] = 482, + [956] = 121, + [957] = 492, + [958] = 121, + [959] = 478, + [960] = 121, + [961] = 123, + [962] = 488, + [963] = 122, + [964] = 123, + [965] = 121, + [966] = 122, + [967] = 123, + [968] = 123, + [969] = 445, + [970] = 474, + [971] = 485, + [972] = 122, + [973] = 486, + [974] = 445, + [975] = 475, + [976] = 481, + [977] = 121, + [978] = 122, + [979] = 121, + [980] = 492, + [981] = 479, + [982] = 122, + [983] = 480, + [984] = 123, + [985] = 429, + [986] = 492, + [987] = 445, + [988] = 123, + [989] = 122, + [990] = 483, + [991] = 473, + [992] = 445, + [993] = 122, + [994] = 123, + [995] = 121, + [996] = 122, + [997] = 492, + [998] = 123, + [999] = 121, + [1000] = 122, + [1001] = 121, + [1002] = 122, + [1003] = 123, + [1004] = 121, + [1005] = 1005, + [1006] = 121, + [1007] = 1007, + [1008] = 122, + [1009] = 123, + [1010] = 123, + [1011] = 1011, + [1012] = 1011, + [1013] = 1013, + [1014] = 1011, + [1015] = 1011, + [1016] = 1011, + [1017] = 1013, + [1018] = 1013, + [1019] = 1011, + [1020] = 1011, + [1021] = 1013, + [1022] = 1013, + [1023] = 1011, + [1024] = 1013, + [1025] = 1011, + [1026] = 1011, + [1027] = 1027, + [1028] = 1011, + [1029] = 1011, + [1030] = 1013, + [1031] = 1011, + [1032] = 1011, + [1033] = 1033, + [1034] = 1011, + [1035] = 1011, + [1036] = 1011, + [1037] = 1011, + [1038] = 1011, + [1039] = 1013, + [1040] = 1011, + [1041] = 1011, + [1042] = 1013, + [1043] = 1013, + [1044] = 1011, + [1045] = 1011, + [1046] = 1013, + [1047] = 1013, + [1048] = 1013, + [1049] = 1011, + [1050] = 1011, + [1051] = 1011, + [1052] = 1011, + [1053] = 1013, + [1054] = 1011, + [1055] = 1013, + [1056] = 1033, + [1057] = 1011, + [1058] = 1013, + [1059] = 1027, + [1060] = 1011, + [1061] = 1011, + [1062] = 1027, + [1063] = 1011, + [1064] = 1013, + [1065] = 1033, + [1066] = 1011, + [1067] = 1011, + [1068] = 1011, + [1069] = 1013, + [1070] = 1011, + [1071] = 1011, + [1072] = 1011, + [1073] = 1011, + [1074] = 1013, + [1075] = 1013, + [1076] = 1011, + [1077] = 1011, + [1078] = 1011, + [1079] = 1013, + [1080] = 1011, + [1081] = 1027, + [1082] = 1013, + [1083] = 1011, + [1084] = 1033, + [1085] = 1013, + [1086] = 1011, + [1087] = 1013, + [1088] = 1011, + [1089] = 1011, + [1090] = 1011, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1092, + [1105] = 1102, + [1106] = 1095, + [1107] = 1102, + [1108] = 1103, + [1109] = 1099, + [1110] = 1100, + [1111] = 1092, + [1112] = 1098, + [1113] = 1113, + [1114] = 1114, + [1115] = 1099, + [1116] = 1100, + [1117] = 1099, + [1118] = 1118, + [1119] = 1100, + [1120] = 1092, + [1121] = 1121, + [1122] = 119, + [1123] = 117, + [1124] = 1102, + [1125] = 1096, + [1126] = 863, + [1127] = 1091, + [1128] = 1128, + [1129] = 789, + [1130] = 1121, + [1131] = 1099, + [1132] = 1132, + [1133] = 1092, + [1134] = 1134, + [1135] = 1102, + [1136] = 1136, + [1137] = 1137, + [1138] = 1100, + [1139] = 1099, + [1140] = 1114, + [1141] = 1118, + [1142] = 1128, + [1143] = 1128, + [1144] = 1100, + [1145] = 1145, + [1146] = 1146, + [1147] = 1092, + [1148] = 1148, + [1149] = 1113, + [1150] = 789, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 863, + [1155] = 1100, + [1156] = 1102, + [1157] = 1157, + [1158] = 1099, + [1159] = 1159, + [1160] = 1100, + [1161] = 1092, + [1162] = 1099, + [1163] = 1092, + [1164] = 1164, + [1165] = 1128, + [1166] = 1166, + [1167] = 1102, + [1168] = 1168, + [1169] = 1102, + [1170] = 1170, + [1171] = 1100, + [1172] = 1136, + [1173] = 1100, + [1174] = 1174, + [1175] = 1128, + [1176] = 1176, + [1177] = 1177, + [1178] = 1092, + [1179] = 1099, + [1180] = 1180, + [1181] = 1181, + [1182] = 488, + [1183] = 1102, + [1184] = 1099, + [1185] = 1185, + [1186] = 1186, + [1187] = 1102, + [1188] = 1102, + [1189] = 1100, + [1190] = 1128, + [1191] = 1128, + [1192] = 1192, + [1193] = 1102, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1092, + [1198] = 1099, + [1199] = 1199, + [1200] = 1200, + [1201] = 1092, + [1202] = 1128, + [1203] = 1203, + [1204] = 1099, + [1205] = 1205, + [1206] = 1206, + [1207] = 1132, + [1208] = 1092, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1146, + [1213] = 1134, + [1214] = 1214, + [1215] = 1215, + [1216] = 1100, + [1217] = 1153, + [1218] = 1157, + [1219] = 1196, + [1220] = 1199, + [1221] = 1092, + [1222] = 1102, + [1223] = 1092, + [1224] = 1200, + [1225] = 1100, + [1226] = 1136, + [1227] = 1128, + [1228] = 1185, + [1229] = 1229, + [1230] = 1205, + [1231] = 1231, + [1232] = 1128, + [1233] = 1102, + [1234] = 1132, + [1235] = 1128, + [1236] = 1134, + [1237] = 1215, + [1238] = 1146, + [1239] = 1206, + [1240] = 1157, + [1241] = 1241, + [1242] = 1242, + [1243] = 1128, + [1244] = 1153, + [1245] = 1099, + [1246] = 1176, + [1247] = 1195, + [1248] = 1100, + [1249] = 1099, + [1250] = 1250, + [1251] = 481, + [1252] = 1200, + [1253] = 1250, + [1254] = 1254, + [1255] = 1250, + [1256] = 1250, + [1257] = 1250, + [1258] = 1250, + [1259] = 1250, + [1260] = 1250, + [1261] = 1250, + [1262] = 1250, + [1263] = 1250, + [1264] = 1250, + [1265] = 1250, + [1266] = 1250, + [1267] = 1128, + [1268] = 429, + [1269] = 1250, + [1270] = 1250, + [1271] = 1250, + [1272] = 1250, + [1273] = 1250, + [1274] = 1250, + [1275] = 1250, + [1276] = 1250, + [1277] = 1250, + [1278] = 1278, + [1279] = 1250, + [1280] = 1102, + [1281] = 1092, + [1282] = 1250, + [1283] = 1250, + [1284] = 1250, + [1285] = 1250, + [1286] = 1215, + [1287] = 1206, + [1288] = 1250, + [1289] = 1205, + [1290] = 1199, + [1291] = 1291, + [1292] = 1195, + [1293] = 1176, + [1294] = 1250, + [1295] = 1250, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1250, + [1300] = 1300, + [1301] = 1250, + [1302] = 1250, + [1303] = 1250, + [1304] = 1250, + [1305] = 1099, + [1306] = 1128, + [1307] = 1100, + [1308] = 1308, + [1309] = 1250, + [1310] = 1250, + [1311] = 485, + [1312] = 1250, + [1313] = 1250, + [1314] = 1250, + [1315] = 1250, + [1316] = 1250, + [1317] = 486, + [1318] = 475, + [1319] = 1250, + [1320] = 1250, + [1321] = 1321, + [1322] = 1322, + [1323] = 479, + [1324] = 474, + [1325] = 1325, + [1326] = 480, + [1327] = 1327, + [1328] = 1250, + [1329] = 483, + [1330] = 482, + [1331] = 1250, + [1332] = 1332, + [1333] = 488, + [1334] = 473, + [1335] = 478, + [1336] = 1250, + [1337] = 479, + [1338] = 473, + [1339] = 474, + [1340] = 475, + [1341] = 480, + [1342] = 485, + [1343] = 445, + [1344] = 492, + [1345] = 488, + [1346] = 114, + [1347] = 478, + [1348] = 113, + [1349] = 479, + [1350] = 1350, + [1351] = 483, + [1352] = 480, + [1353] = 475, + [1354] = 474, + [1355] = 474, + [1356] = 483, + [1357] = 475, + [1358] = 482, + [1359] = 482, + [1360] = 481, + [1361] = 429, + [1362] = 488, + [1363] = 481, + [1364] = 478, + [1365] = 488, + [1366] = 1128, + [1367] = 429, + [1368] = 473, + [1369] = 479, + [1370] = 480, + [1371] = 115, + [1372] = 483, + [1373] = 486, + [1374] = 1298, + [1375] = 486, + [1376] = 473, + [1377] = 481, + [1378] = 486, + [1379] = 478, + [1380] = 429, + [1381] = 485, + [1382] = 485, + [1383] = 482, + [1384] = 488, + [1385] = 478, + [1386] = 492, + [1387] = 445, + [1388] = 479, + [1389] = 480, + [1390] = 483, + [1391] = 473, + [1392] = 492, + [1393] = 473, + [1394] = 481, + [1395] = 492, + [1396] = 1396, + [1397] = 486, + [1398] = 475, + [1399] = 482, + [1400] = 474, + [1401] = 482, + [1402] = 488, + [1403] = 478, + [1404] = 479, + [1405] = 480, + [1406] = 483, + [1407] = 473, + [1408] = 481, + [1409] = 486, + [1410] = 485, + [1411] = 485, + [1412] = 486, + [1413] = 481, + [1414] = 445, + [1415] = 445, + [1416] = 429, + [1417] = 483, + [1418] = 480, + [1419] = 485, + [1420] = 479, + [1421] = 478, + [1422] = 488, + [1423] = 482, + [1424] = 429, + [1425] = 474, + [1426] = 475, + [1427] = 474, + [1428] = 475, + [1429] = 429, + [1430] = 1396, + [1431] = 488, + [1432] = 483, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 485, + [1440] = 478, + [1441] = 486, + [1442] = 481, + [1443] = 473, + [1444] = 474, + [1445] = 483, + [1446] = 480, + [1447] = 479, + [1448] = 485, + [1449] = 478, + [1450] = 486, + [1451] = 481, + [1452] = 482, + [1453] = 473, + [1454] = 474, + [1455] = 475, + [1456] = 480, + [1457] = 479, + [1458] = 488, + [1459] = 482, + [1460] = 475, + [1461] = 429, + [1462] = 429, + [1463] = 492, + [1464] = 483, + [1465] = 485, + [1466] = 445, + [1467] = 486, + [1468] = 481, + [1469] = 473, + [1470] = 483, + [1471] = 480, + [1472] = 479, + [1473] = 478, + [1474] = 482, + [1475] = 474, + [1476] = 475, + [1477] = 485, + [1478] = 445, + [1479] = 486, + [1480] = 481, + [1481] = 473, + [1482] = 483, + [1483] = 480, + [1484] = 479, + [1485] = 492, + [1486] = 485, + [1487] = 474, + [1488] = 474, + [1489] = 445, + [1490] = 473, + [1491] = 429, + [1492] = 482, + [1493] = 429, + [1494] = 488, + [1495] = 473, + [1496] = 429, + [1497] = 482, + [1498] = 492, + [1499] = 481, + [1500] = 475, + [1501] = 474, + [1502] = 481, + [1503] = 486, + [1504] = 486, + [1505] = 478, + [1506] = 488, + [1507] = 429, + [1508] = 482, + [1509] = 488, + [1510] = 488, + [1511] = 478, + [1512] = 478, + [1513] = 485, + [1514] = 479, + [1515] = 480, + [1516] = 475, + [1517] = 479, + [1518] = 483, + [1519] = 480, + [1520] = 475, + [1521] = 1521, + [1522] = 481, + [1523] = 1523, + [1524] = 1521, + [1525] = 445, + [1526] = 1523, + [1527] = 1521, + [1528] = 445, + [1529] = 1523, + [1530] = 1521, + [1531] = 1523, + [1532] = 481, + [1533] = 1523, + [1534] = 445, + [1535] = 1523, + [1536] = 1521, + [1537] = 1537, + [1538] = 1523, + [1539] = 1521, + [1540] = 1523, + [1541] = 1521, + [1542] = 1523, + [1543] = 1543, + [1544] = 1523, + [1545] = 1521, + [1546] = 492, + [1547] = 1523, + [1548] = 492, + [1549] = 1521, + [1550] = 1523, + [1551] = 1521, + [1552] = 1523, + [1553] = 1521, + [1554] = 478, + [1555] = 485, + [1556] = 1523, + [1557] = 1523, + [1558] = 1521, + [1559] = 478, + [1560] = 1521, + [1561] = 1521, + [1562] = 1523, + [1563] = 1521, + [1564] = 482, + [1565] = 1523, + [1566] = 1521, + [1567] = 473, + [1568] = 429, + [1569] = 1521, + [1570] = 1523, + [1571] = 1523, + [1572] = 1521, + [1573] = 492, + [1574] = 1523, + [1575] = 1521, + [1576] = 474, + [1577] = 1523, + [1578] = 1521, + [1579] = 486, + [1580] = 481, + [1581] = 483, + [1582] = 1521, + [1583] = 445, + [1584] = 1523, + [1585] = 482, + [1586] = 1523, + [1587] = 492, + [1588] = 1521, + [1589] = 473, + [1590] = 475, + [1591] = 1521, + [1592] = 1523, + [1593] = 1523, + [1594] = 1521, + [1595] = 480, + [1596] = 1523, + [1597] = 1521, + [1598] = 474, + [1599] = 483, + [1600] = 479, + [1601] = 1523, + [1602] = 1521, + [1603] = 480, + [1604] = 479, + [1605] = 1521, + [1606] = 488, + [1607] = 1523, + [1608] = 475, + [1609] = 1521, + [1610] = 1523, + [1611] = 445, + [1612] = 1523, + [1613] = 1521, + [1614] = 1523, + [1615] = 1521, + [1616] = 1616, + [1617] = 445, + [1618] = 485, + [1619] = 478, + [1620] = 1521, + [1621] = 486, + [1622] = 1521, + [1623] = 488, + [1624] = 486, + [1625] = 475, + [1626] = 1523, + [1627] = 482, + [1628] = 1523, + [1629] = 1521, + [1630] = 1521, + [1631] = 488, + [1632] = 1523, + [1633] = 1521, + [1634] = 473, + [1635] = 1521, + [1636] = 1523, + [1637] = 429, + [1638] = 474, + [1639] = 486, + [1640] = 483, + [1641] = 480, + [1642] = 429, + [1643] = 479, + [1644] = 480, + [1645] = 479, + [1646] = 478, + [1647] = 1521, + [1648] = 1523, + [1649] = 1521, + [1650] = 488, + [1651] = 1523, + [1652] = 1523, + [1653] = 486, + [1654] = 492, + [1655] = 1521, + [1656] = 1521, + [1657] = 1521, + [1658] = 1523, + [1659] = 481, + [1660] = 1523, + [1661] = 482, + [1662] = 473, + [1663] = 474, + [1664] = 483, + [1665] = 1523, + [1666] = 1523, + [1667] = 1521, + [1668] = 475, + [1669] = 480, + [1670] = 479, + [1671] = 485, + [1672] = 1523, + [1673] = 1521, + [1674] = 429, + [1675] = 483, + [1676] = 1523, + [1677] = 474, + [1678] = 473, + [1679] = 1521, + [1680] = 1523, + [1681] = 482, + [1682] = 1523, + [1683] = 492, + [1684] = 1521, + [1685] = 481, + [1686] = 485, + [1687] = 1523, + [1688] = 488, + [1689] = 1521, + [1690] = 429, + [1691] = 478, + [1692] = 485, + [1693] = 475, + [1694] = 1521, + [1695] = 1523, + [1696] = 1521, + [1697] = 492, + [1698] = 445, + [1699] = 492, + [1700] = 1700, + [1701] = 445, + [1702] = 492, + [1703] = 838, + [1704] = 492, + [1705] = 445, + [1706] = 1706, + [1707] = 492, + [1708] = 445, + [1709] = 871, + [1710] = 445, + [1711] = 1711, + [1712] = 1712, + [1713] = 1711, + [1714] = 1711, + [1715] = 1715, + [1716] = 1711, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1720, + [1722] = 1712, + [1723] = 1723, + [1724] = 1718, + [1725] = 1725, + [1726] = 1712, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1729, + [1731] = 1731, + [1732] = 1729, + [1733] = 1729, + [1734] = 1734, + [1735] = 1729, + [1736] = 1729, + [1737] = 1729, + [1738] = 1729, + [1739] = 1729, + [1740] = 1731, + [1741] = 1729, + [1742] = 1734, + [1743] = 1729, + [1744] = 1729, + [1745] = 1729, + [1746] = 1729, + [1747] = 1729, + [1748] = 1748, + [1749] = 1729, + [1750] = 1734, + [1751] = 1729, + [1752] = 1729, + [1753] = 1729, + [1754] = 1754, + [1755] = 1755, + [1756] = 1729, + [1757] = 1729, + [1758] = 1755, + [1759] = 1759, + [1760] = 1729, + [1761] = 1729, + [1762] = 1729, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1114, + [1768] = 1766, + [1769] = 1766, + [1770] = 1770, + [1771] = 1766, + [1772] = 1766, + [1773] = 1773, + [1774] = 1770, + [1775] = 1766, + [1776] = 1776, + [1777] = 1765, + [1778] = 1778, + [1779] = 1779, + [1780] = 1766, + [1781] = 1766, + [1782] = 1766, + [1783] = 1766, + [1784] = 1765, + [1785] = 1785, + [1786] = 1766, + [1787] = 1766, + [1788] = 1788, + [1789] = 1766, + [1790] = 1766, + [1791] = 1791, + [1792] = 1792, + [1793] = 1766, + [1794] = 1766, + [1795] = 1795, + [1796] = 1766, + [1797] = 1766, + [1798] = 1766, + [1799] = 1766, + [1800] = 1791, + [1801] = 1766, + [1802] = 1766, + [1803] = 1766, + [1804] = 1766, + [1805] = 1805, + [1806] = 1100, + [1807] = 1807, + [1808] = 1099, + [1809] = 1091, + [1810] = 1810, + [1811] = 1805, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1095, + [1816] = 1092, + [1817] = 1817, + [1818] = 1102, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1099, + [1824] = 1819, + [1825] = 1825, + [1826] = 1819, + [1827] = 1819, + [1828] = 1092, + [1829] = 1822, + [1830] = 1830, + [1831] = 1825, + [1832] = 1825, + [1833] = 1819, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1822, + [1838] = 1822, + [1839] = 1092, + [1840] = 1825, + [1841] = 1825, + [1842] = 1819, + [1843] = 1819, + [1844] = 1822, + [1845] = 1822, + [1846] = 1099, + [1847] = 1819, + [1848] = 1825, + [1849] = 1819, + [1850] = 1185, + [1851] = 1851, + [1852] = 1100, + [1853] = 1825, + [1854] = 1825, + [1855] = 1819, + [1856] = 1819, + [1857] = 1822, + [1858] = 1825, + [1859] = 1825, + [1860] = 1822, + [1861] = 1822, + [1862] = 1862, + [1863] = 1820, + [1864] = 1819, + [1865] = 1820, + [1866] = 1820, + [1867] = 1102, + [1868] = 1100, + [1869] = 1822, + [1870] = 1825, + [1871] = 1825, + [1872] = 1819, + [1873] = 1819, + [1874] = 1822, + [1875] = 1822, + [1876] = 1825, + [1877] = 1825, + [1878] = 1878, + [1879] = 1822, + [1880] = 1196, + [1881] = 1820, + [1882] = 1121, + [1883] = 1825, + [1884] = 1819, + [1885] = 1820, + [1886] = 1825, + [1887] = 1819, + [1888] = 1819, + [1889] = 1822, + [1890] = 1822, + [1891] = 1820, + [1892] = 1820, + [1893] = 1825, + [1894] = 1128, + [1895] = 1820, + [1896] = 1834, + [1897] = 1825, + [1898] = 1820, + [1899] = 1820, + [1900] = 1820, + [1901] = 1825, + [1902] = 1819, + [1903] = 1819, + [1904] = 1820, + [1905] = 1822, + [1906] = 1102, + [1907] = 1822, + [1908] = 1825, + [1909] = 1820, + [1910] = 1820, + [1911] = 1820, + [1912] = 1820, + [1913] = 1819, + [1914] = 1820, + [1915] = 1822, + [1916] = 1825, + [1917] = 1820, + [1918] = 1819, + [1919] = 1820, + [1920] = 1822, + [1921] = 1921, + [1922] = 1819, + [1923] = 1822, + [1924] = 1825, + [1925] = 1822, + [1926] = 1820, + [1927] = 1819, + [1928] = 1820, + [1929] = 1820, + [1930] = 1822, + [1931] = 1825, + [1932] = 1822, + [1933] = 1819, + [1934] = 1820, + [1935] = 1822, + [1936] = 1118, + [1937] = 1825, + [1938] = 1938, + [1939] = 1092, + [1940] = 1940, + [1941] = 1941, + [1942] = 1137, + [1943] = 1128, + [1944] = 1944, + [1945] = 1128, + [1946] = 1946, + [1947] = 1136, + [1948] = 1146, + [1949] = 1949, + [1950] = 1950, + [1951] = 1132, + [1952] = 1153, + [1953] = 1941, + [1954] = 1954, + [1955] = 1134, + [1956] = 1100, + [1957] = 1954, + [1958] = 1944, + [1959] = 1959, + [1960] = 1960, + [1961] = 1946, + [1962] = 1145, + [1963] = 1157, + [1964] = 1166, + [1965] = 1102, + [1966] = 1099, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1944, + [1971] = 1164, + [1972] = 1959, + [1973] = 1959, + [1974] = 1974, + [1975] = 1975, + [1976] = 1205, + [1977] = 1092, + [1978] = 1099, + [1979] = 1176, + [1980] = 1194, + [1981] = 1981, + [1982] = 1100, + [1983] = 1128, + [1984] = 1100, + [1985] = 1985, + [1986] = 1102, + [1987] = 1099, + [1988] = 1100, + [1989] = 1989, + [1990] = 1099, + [1991] = 1177, + [1992] = 1992, + [1993] = 1989, + [1994] = 1100, + [1995] = 1099, + [1996] = 1989, + [1997] = 1092, + [1998] = 1199, + [1999] = 1102, + [2000] = 1192, + [2001] = 1092, + [2002] = 1215, + [2003] = 1206, + [2004] = 2004, + [2005] = 2005, + [2006] = 2006, + [2007] = 1099, + [2008] = 2005, + [2009] = 1102, + [2010] = 1102, + [2011] = 1102, + [2012] = 1981, + [2013] = 1092, + [2014] = 1992, + [2015] = 1985, + [2016] = 1092, + [2017] = 1200, + [2018] = 2018, + [2019] = 1100, + [2020] = 1989, + [2021] = 1195, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2022, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 1128, + [2030] = 1128, + [2031] = 2031, + [2032] = 2028, + [2033] = 2027, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2026, + [2038] = 2038, + [2039] = 2038, + [2040] = 1128, + [2041] = 2041, + [2042] = 1128, + [2043] = 2043, + [2044] = 1128, + [2045] = 2024, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2046, + [2050] = 2050, + [2051] = 2051, + [2052] = 2047, + [2053] = 2048, + [2054] = 2046, + [2055] = 2050, + [2056] = 2051, + [2057] = 2047, + [2058] = 2058, + [2059] = 2048, + [2060] = 2046, + [2061] = 2061, + [2062] = 2050, + [2063] = 2051, + [2064] = 2047, + [2065] = 2065, + [2066] = 2048, + [2067] = 2046, + [2068] = 2047, + [2069] = 2050, + [2070] = 2051, + [2071] = 2047, + [2072] = 2072, + [2073] = 2048, + [2074] = 2046, + [2075] = 2050, + [2076] = 2051, + [2077] = 2047, + [2078] = 2048, + [2079] = 2046, + [2080] = 2048, + [2081] = 2050, + [2082] = 2051, + [2083] = 2047, + [2084] = 2051, + [2085] = 2048, + [2086] = 2046, + [2087] = 2050, + [2088] = 2050, + [2089] = 2051, + [2090] = 2047, + [2091] = 2091, + [2092] = 2048, + [2093] = 2046, + [2094] = 2094, + [2095] = 2050, + [2096] = 2051, + [2097] = 2047, + [2098] = 2098, + [2099] = 2048, + [2100] = 2046, + [2101] = 2046, + [2102] = 2050, + [2103] = 2051, + [2104] = 2047, + [2105] = 2048, + [2106] = 2048, + [2107] = 2046, + [2108] = 2047, + [2109] = 2050, + [2110] = 2051, + [2111] = 2047, + [2112] = 2051, + [2113] = 2048, + [2114] = 2046, + [2115] = 2115, + [2116] = 2050, + [2117] = 2051, + [2118] = 2047, + [2119] = 2050, + [2120] = 2048, + [2121] = 2046, + [2122] = 2122, + [2123] = 2050, + [2124] = 2051, + [2125] = 2047, + [2126] = 2048, + [2127] = 2046, + [2128] = 2128, + [2129] = 2050, + [2130] = 2051, + [2131] = 2047, + [2132] = 2048, + [2133] = 2046, + [2134] = 2046, + [2135] = 2050, + [2136] = 2051, + [2137] = 2047, + [2138] = 2050, + [2139] = 2050, + [2140] = 2050, + [2141] = 2050, + [2142] = 2050, + [2143] = 2050, + [2144] = 2050, + [2145] = 2050, + [2146] = 475, + [2147] = 2047, + [2148] = 2148, + [2149] = 2051, + [2150] = 2050, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2046, + [2155] = 2048, + [2156] = 2047, + [2157] = 2051, + [2158] = 2050, + [2159] = 2051, + [2160] = 2046, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2048, + [2165] = 2047, + [2166] = 2051, + [2167] = 2050, + [2168] = 2168, + [2169] = 2122, + [2170] = 2170, + [2171] = 2168, + [2172] = 2172, + [2173] = 2148, + [2174] = 2151, + [2175] = 2175, + [2176] = 2163, + [2177] = 2162, + [2178] = 2050, + [2179] = 2161, + [2180] = 2163, + [2181] = 2046, + [2182] = 2048, + [2183] = 2047, + [2184] = 2051, + [2185] = 2050, + [2186] = 2122, + [2187] = 2046, + [2188] = 2168, + [2189] = 2189, + [2190] = 2151, + [2191] = 2048, + [2192] = 2192, + [2193] = 2193, + [2194] = 2161, + [2195] = 2163, + [2196] = 2047, + [2197] = 2051, + [2198] = 2050, + [2199] = 2122, + [2200] = 2168, + [2201] = 2151, + [2202] = 2202, + [2203] = 2161, + [2204] = 2094, + [2205] = 2205, + [2206] = 2122, + [2207] = 2151, + [2208] = 2048, + [2209] = 2161, + [2210] = 2047, + [2211] = 2051, + [2212] = 2122, + [2213] = 2151, + [2214] = 2050, + [2215] = 2161, + [2216] = 2046, + [2217] = 2217, + [2218] = 2122, + [2219] = 2151, + [2220] = 2048, + [2221] = 2161, + [2222] = 2047, + [2223] = 2051, + [2224] = 2122, + [2225] = 2151, + [2226] = 2161, + [2227] = 2050, + [2228] = 2046, + [2229] = 2122, + [2230] = 2151, + [2231] = 2161, + [2232] = 2048, + [2233] = 2047, + [2234] = 2122, + [2235] = 2151, + [2236] = 2161, + [2237] = 2051, + [2238] = 2046, + [2239] = 2122, + [2240] = 2151, + [2241] = 2161, + [2242] = 2046, + [2243] = 2048, + [2244] = 2122, + [2245] = 2151, + [2246] = 2161, + [2247] = 2047, + [2248] = 2248, + [2249] = 2122, + [2250] = 2151, + [2251] = 2161, + [2252] = 2051, + [2253] = 2050, + [2254] = 2122, + [2255] = 2151, + [2256] = 2161, + [2257] = 2046, + [2258] = 2048, + [2259] = 2122, + [2260] = 2151, + [2261] = 2161, + [2262] = 2047, + [2263] = 2051, + [2264] = 2122, + [2265] = 2151, + [2266] = 2161, + [2267] = 2050, + [2268] = 2048, + [2269] = 2122, + [2270] = 2151, + [2271] = 2161, + [2272] = 2048, + [2273] = 2273, + [2274] = 2122, + [2275] = 2151, + [2276] = 2161, + [2277] = 2047, + [2278] = 2051, + [2279] = 2122, + [2280] = 2151, + [2281] = 2161, + [2282] = 2050, + [2283] = 2046, + [2284] = 2122, + [2285] = 2151, + [2286] = 2161, + [2287] = 2046, + [2288] = 2161, + [2289] = 2122, + [2290] = 2151, + [2291] = 2161, + [2292] = 2048, + [2293] = 2047, + [2294] = 2122, + [2295] = 2151, + [2296] = 2161, + [2297] = 2051, + [2298] = 2050, + [2299] = 2122, + [2300] = 2151, + [2301] = 2161, + [2302] = 2046, + [2303] = 2048, + [2304] = 2122, + [2305] = 2151, + [2306] = 2161, + [2307] = 2047, + [2308] = 2151, + [2309] = 2161, + [2310] = 2051, + [2311] = 2151, + [2312] = 2161, + [2313] = 2313, + [2314] = 2151, + [2315] = 2161, + [2316] = 2050, + [2317] = 2151, + [2318] = 2161, + [2319] = 2046, + [2320] = 2151, + [2321] = 2161, + [2322] = 2322, + [2323] = 2151, + [2324] = 2161, + [2325] = 2325, + [2326] = 2151, + [2327] = 2161, + [2328] = 2328, + [2329] = 2151, + [2330] = 2161, + [2331] = 2048, + [2332] = 2151, + [2333] = 2161, + [2334] = 479, + [2335] = 2151, + [2336] = 2161, + [2337] = 2047, + [2338] = 2151, + [2339] = 2161, + [2340] = 2051, + [2341] = 2151, + [2342] = 2161, + [2343] = 2050, + [2344] = 2151, + [2345] = 2161, + [2346] = 2046, + [2347] = 2151, + [2348] = 2161, + [2349] = 2048, + [2350] = 2151, + [2351] = 2161, + [2352] = 2047, + [2353] = 2151, + [2354] = 2161, + [2355] = 2051, + [2356] = 2151, + [2357] = 2161, + [2358] = 2050, + [2359] = 2151, + [2360] = 2161, + [2361] = 2046, + [2362] = 2151, + [2363] = 2161, + [2364] = 2048, + [2365] = 2151, + [2366] = 2161, + [2367] = 2367, + [2368] = 2151, + [2369] = 2161, + [2370] = 2047, + [2371] = 2151, + [2372] = 2161, + [2373] = 2051, + [2374] = 2151, + [2375] = 2161, + [2376] = 2050, + [2377] = 2151, + [2378] = 2161, + [2379] = 2046, + [2380] = 2047, + [2381] = 2047, + [2382] = 2051, + [2383] = 2383, + [2384] = 2050, + [2385] = 2046, + [2386] = 2189, + [2387] = 2162, + [2388] = 2170, + [2389] = 2072, + [2390] = 2048, + [2391] = 2047, + [2392] = 2051, + [2393] = 2050, + [2394] = 2046, + [2395] = 2048, + [2396] = 2189, + [2397] = 2162, + [2398] = 2170, + [2399] = 2072, + [2400] = 482, + [2401] = 2051, + [2402] = 2050, + [2403] = 2046, + [2404] = 2048, + [2405] = 2170, + [2406] = 2072, + [2407] = 2047, + [2408] = 2051, + [2409] = 2409, + [2410] = 2050, + [2411] = 2072, + [2412] = 2046, + [2413] = 2048, + [2414] = 2072, + [2415] = 2047, + [2416] = 2051, + [2417] = 2072, + [2418] = 2050, + [2419] = 2048, + [2420] = 2072, + [2421] = 2046, + [2422] = 2422, + [2423] = 2072, + [2424] = 2048, + [2425] = 2047, + [2426] = 2072, + [2427] = 480, + [2428] = 2051, + [2429] = 2072, + [2430] = 2050, + [2431] = 2046, + [2432] = 2072, + [2433] = 2433, + [2434] = 2434, + [2435] = 2072, + [2436] = 2048, + [2437] = 2152, + [2438] = 2072, + [2439] = 2048, + [2440] = 2047, + [2441] = 2072, + [2442] = 2051, + [2443] = 2443, + [2444] = 2072, + [2445] = 2445, + [2446] = 2383, + [2447] = 2072, + [2448] = 2151, + [2449] = 2449, + [2450] = 2072, + [2451] = 2451, + [2452] = 2050, + [2453] = 2072, + [2454] = 2046, + [2455] = 2048, + [2456] = 2072, + [2457] = 2148, + [2458] = 2047, + [2459] = 2072, + [2460] = 2051, + [2461] = 2050, + [2462] = 2072, + [2463] = 2046, + [2464] = 2048, + [2465] = 2072, + [2466] = 2047, + [2467] = 2051, + [2468] = 2072, + [2469] = 2050, + [2470] = 2470, + [2471] = 2471, + [2472] = 2322, + [2473] = 2046, + [2474] = 2048, + [2475] = 478, + [2476] = 2322, + [2477] = 2047, + [2478] = 2051, + [2479] = 2050, + [2480] = 474, + [2481] = 2046, + [2482] = 2048, + [2483] = 2047, + [2484] = 2484, + [2485] = 2051, + [2486] = 2050, + [2487] = 2487, + [2488] = 2046, + [2489] = 2048, + [2490] = 2047, + [2491] = 2051, + [2492] = 2050, + [2493] = 2046, + [2494] = 2047, + [2495] = 2047, + [2496] = 2471, + [2497] = 2051, + [2498] = 2050, + [2499] = 2046, + [2500] = 2048, + [2501] = 2094, + [2502] = 2047, + [2503] = 2051, + [2504] = 2172, + [2505] = 2175, + [2506] = 2050, + [2507] = 2046, + [2508] = 2048, + [2509] = 2048, + [2510] = 2046, + [2511] = 2094, + [2512] = 2047, + [2513] = 2051, + [2514] = 2172, + [2515] = 2175, + [2516] = 2050, + [2517] = 2050, + [2518] = 2175, + [2519] = 2172, + [2520] = 2051, + [2521] = 2046, + [2522] = 2048, + [2523] = 2098, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '#') ADVANCE(177); + if (lookahead == '$') ADVANCE(319); + if (lookahead == '&') ADVANCE(266); + if (lookahead == '\'') ADVANCE(533); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(317); + if (lookahead == '/') ADVANCE(82); + if (lookahead == ':') ADVANCE(238); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '=') ADVANCE(242); + if (lookahead == '?') ADVANCE(272); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'b') ADVANCE(493); + if (lookahead == 'c') ADVANCE(473); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'f') ADVANCE(482); + if (lookahead == 'i') ADVANCE(457); + if (lookahead == 'l') ADVANCE(483); + if (lookahead == 'm') ADVANCE(435); + if (lookahead == 'n') ADVANCE(433); + if (lookahead == 'p') ADVANCE(437); + if (lookahead == 'r') ADVANCE(454); + if (lookahead == 's') ADVANCE(512); + if (lookahead == 't') ADVANCE(462); + if (lookahead == 'u') ADVANCE(501); + if (lookahead == 'v') ADVANCE(440); + if (lookahead == 'w') ADVANCE(461); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(270); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + if (lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(432); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(428); + END_STATE(); + case 1: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '&') ADVANCE(266); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '/') ADVANCE(82); + if (lookahead == '=') ADVANCE(242); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(270); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(1) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 2: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '$') ADVANCE(320); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 3: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '$') ADVANCE(320); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 4: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 5: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 6: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 7: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 8: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 9: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 10: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 14: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 15: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 16: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(16) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 17: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 19: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(19) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 20: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 21: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(21) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 22: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(22) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 23: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 24: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(24) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 25: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(25) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 26: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 27: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 28: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 29: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(29) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 30: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 31: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 't') ADVANCE(361); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(31) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 32: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 33: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(367); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(33) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 34: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 35: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 36: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 37: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(37) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 38: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 39: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 't') ADVANCE(361); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(39) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 40: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 41: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(367); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 42: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 43: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 44: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 45: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 46: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 47: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 48: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(48) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 49: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 50: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(50) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 51: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(51) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 52: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(52) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 53: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(53) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 54: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 55: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 56: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 57: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(57) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 58: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 59: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(59) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 60: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(60) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 61: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 62: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(62) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 63: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(63) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 64: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(64) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 65: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(65) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 66: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(66) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 67: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(67) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 68: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 69: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 't') ADVANCE(361); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(69) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 70: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(70) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 71: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(367); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(71) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 72: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'b') ADVANCE(399); + if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(72) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 73: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(73) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 74: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 75: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(75) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 76: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'd') ADVANCE(386); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 77: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 't') ADVANCE(361); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(77) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 78: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(358); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(78) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 79: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'w') ADVANCE(367); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(79) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 80: + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(532); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(82); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(80) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 81: + if (lookahead == '#') ADVANCE(178); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(317); + if (lookahead == '/') ADVANCE(82); + if (lookahead == '=') ADVANCE(242); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(81) + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 82: + if (lookahead == '*') ADVANCE(83); + if (lookahead == '/') ADVANCE(323); + END_STATE(); + case 83: + if (lookahead == '*') ADVANCE(85); + if (lookahead != 0) ADVANCE(83); + END_STATE(); + case 84: + if (lookahead == '/') ADVANCE(82); + if (lookahead == '#' || + lookahead == '\'') ADVANCE(180); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(84) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 85: + if (lookahead == '/') ADVANCE(327); + if (lookahead != 0) ADVANCE(83); + END_STATE(); + case 86: + if (lookahead == '/') ADVANCE(536); + if (lookahead == '\\') ADVANCE(181); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(537); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'') ADVANCE(535); + END_STATE(); + case 87: + if (lookahead == '>') ADVANCE(249); + END_STATE(); + case 88: + if (lookahead == 'a') ADVANCE(133); + END_STATE(); + case 89: + if (lookahead == 'a') ADVANCE(126); + END_STATE(); + case 90: + if (lookahead == 'a') ADVANCE(163); + END_STATE(); + case 91: + if (lookahead == 'a') ADVANCE(159); + END_STATE(); + case 92: + if (lookahead == 'a') ADVANCE(153); + END_STATE(); + case 93: + if (lookahead == 'a') ADVANCE(155); + END_STATE(); + case 94: + if (lookahead == 'a') ADVANCE(100); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(149); + END_STATE(); + case 96: + if (lookahead == 'a') ADVANCE(162); + END_STATE(); + case 97: + if (lookahead == 'c') ADVANCE(116); + END_STATE(); + case 98: + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'f') ADVANCE(251); + END_STATE(); + case 99: + if (lookahead == 'c') ADVANCE(168); + END_STATE(); + case 100: + if (lookahead == 'c') ADVANCE(107); + END_STATE(); + case 101: + if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'o') ADVANCE(292); + END_STATE(); + case 102: + if (lookahead == 'e') ADVANCE(239); + END_STATE(); + case 103: + if (lookahead == 'e') ADVANCE(289); + END_STATE(); + case 104: + if (lookahead == 'e') ADVANCE(255); + END_STATE(); + case 105: + if (lookahead == 'e') ADVANCE(295); + END_STATE(); + case 106: + if (lookahead == 'e') ADVANCE(313); + END_STATE(); + case 107: + if (lookahead == 'e') ADVANCE(221); + END_STATE(); + case 108: + if (lookahead == 'e') ADVANCE(135); + END_STATE(); + case 109: + if (lookahead == 'e') ADVANCE(164); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(160); + END_STATE(); + case 111: + if (lookahead == 'e') ADVANCE(89); + END_STATE(); + case 112: + if (lookahead == 'f') ADVANCE(280); + if (lookahead == 'm') ADVANCE(147); + END_STATE(); + case 113: + if (lookahead == 'f') ADVANCE(280); + if (lookahead == 'm') ADVANCE(147); + if (lookahead == 'n') ADVANCE(301); + END_STATE(); + case 114: + if (lookahead == 'f') ADVANCE(286); + END_STATE(); + case 115: + if (lookahead == 'h') ADVANCE(277); + END_STATE(); + case 116: + if (lookahead == 'h') ADVANCE(274); + END_STATE(); + case 117: + if (lookahead == 'h') ADVANCE(122); + END_STATE(); + case 118: + if (lookahead == 'h') ADVANCE(122); + if (lookahead == 'i') ADVANCE(165); + END_STATE(); + case 119: + if (lookahead == 'h') ADVANCE(108); + if (lookahead == 'y') ADVANCE(145); + END_STATE(); + case 120: + if (lookahead == 'i') ADVANCE(114); + if (lookahead == 's') ADVANCE(103); + END_STATE(); + case 121: + if (lookahead == 'i') ADVANCE(138); + END_STATE(); + case 122: + if (lookahead == 'i') ADVANCE(131); + END_STATE(); + case 123: + if (lookahead == 'i') ADVANCE(142); + END_STATE(); + case 124: + if (lookahead == 'i') ADVANCE(93); + END_STATE(); + case 125: + if (lookahead == 'i') ADVANCE(171); + END_STATE(); + case 126: + if (lookahead == 'k') ADVANCE(310); + END_STATE(); + case 127: + if (lookahead == 'l') ADVANCE(124); + END_STATE(); + case 128: + if (lookahead == 'l') ADVANCE(120); + END_STATE(); + case 129: + if (lookahead == 'l') ADVANCE(246); + END_STATE(); + case 130: + if (lookahead == 'l') ADVANCE(91); + if (lookahead == 'o') ADVANCE(134); + END_STATE(); + case 131: + if (lookahead == 'l') ADVANCE(105); + END_STATE(); + case 132: + if (lookahead == 'l') ADVANCE(96); + END_STATE(); + case 133: + if (lookahead == 'm') ADVANCE(110); + END_STATE(); + case 134: + if (lookahead == 'n') ADVANCE(161); + END_STATE(); + case 135: + if (lookahead == 'n') ADVANCE(283); + END_STATE(); + case 136: + if (lookahead == 'n') ADVANCE(307); + END_STATE(); + case 137: + if (lookahead == 'n') ADVANCE(232); + END_STATE(); + case 138: + if (lookahead == 'n') ADVANCE(174); + END_STATE(); + case 139: + if (lookahead == 'o') ADVANCE(148); + END_STATE(); + case 140: + if (lookahead == 'o') ADVANCE(141); + END_STATE(); + case 141: + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 142: + if (lookahead == 'o') ADVANCE(137); + END_STATE(); + case 143: + if (lookahead == 'o') ADVANCE(154); + END_STATE(); + case 144: + if (lookahead == 'p') ADVANCE(303); + END_STATE(); + case 145: + if (lookahead == 'p') ADVANCE(104); + END_STATE(); + case 146: + if (lookahead == 'p') ADVANCE(94); + END_STATE(); + case 147: + if (lookahead == 'p') ADVANCE(143); + END_STATE(); + case 148: + if (lookahead == 'r') ADVANCE(298); + END_STATE(); + case 149: + if (lookahead == 'r') ADVANCE(227); + END_STATE(); + case 150: + if (lookahead == 'r') ADVANCE(111); + END_STATE(); + case 151: + if (lookahead == 'r') ADVANCE(172); + END_STATE(); + case 152: + if (lookahead == 'r') ADVANCE(136); + END_STATE(); + case 153: + if (lookahead == 'r') ADVANCE(170); + END_STATE(); + case 154: + if (lookahead == 'r') ADVANCE(167); + END_STATE(); + case 155: + if (lookahead == 's') ADVANCE(243); + END_STATE(); + case 156: + if (lookahead == 's') ADVANCE(260); + END_STATE(); + case 157: + if (lookahead == 's') ADVANCE(263); + END_STATE(); + case 158: + if (lookahead == 's') ADVANCE(102); + END_STATE(); + case 159: + if (lookahead == 's') ADVANCE(156); + END_STATE(); + case 160: + if (lookahead == 's') ADVANCE(146); + END_STATE(); + case 161: + if (lookahead == 's') ADVANCE(166); + if (lookahead == 't') ADVANCE(121); + END_STATE(); + case 162: + if (lookahead == 's') ADVANCE(157); + END_STATE(); + case 163: + if (lookahead == 't') ADVANCE(97); + END_STATE(); + case 164: + if (lookahead == 't') ADVANCE(173); + END_STATE(); + case 165: + if (lookahead == 't') ADVANCE(115); + END_STATE(); + case 166: + if (lookahead == 't') ADVANCE(224); + END_STATE(); + case 167: + if (lookahead == 't') ADVANCE(235); + END_STATE(); + case 168: + if (lookahead == 't') ADVANCE(257); + END_STATE(); + case 169: + if (lookahead == 't') ADVANCE(151); + END_STATE(); + case 170: + if (lookahead == 't') ADVANCE(125); + END_STATE(); + case 171: + if (lookahead == 't') ADVANCE(123); + END_STATE(); + case 172: + if (lookahead == 'u') ADVANCE(99); + END_STATE(); + case 173: + if (lookahead == 'u') ADVANCE(152); + END_STATE(); + case 174: + if (lookahead == 'u') ADVANCE(106); + END_STATE(); + case 175: + if (lookahead == 'y') ADVANCE(145); + END_STATE(); + case 176: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(524); + END_STATE(); + case 177: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(330); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 178: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(331); + END_STATE(); + case 179: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(431); + END_STATE(); + case 180: + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 181: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(535); + END_STATE(); + case 182: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(182) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 183: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(183) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 184: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(184) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 185: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(185) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 186: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(186) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 187: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(187) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 188: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(188) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 189: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(189) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 190: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(190) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 191: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '&') ADVANCE(267); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(191) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 192: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(192) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 193: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(193) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 194: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(194) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 195: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(195) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 196: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(196) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 197: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(197) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 198: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(198) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 199: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(199) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 200: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(200) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 201: + if (eof) ADVANCE(220); + if (lookahead == '"') ADVANCE(526); + if (lookahead == '\'') ADVANCE(534); + if (lookahead == '(') ADVANCE(268); + if (lookahead == '/') ADVANCE(519); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(201) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 202: + if (eof) ADVANCE(220); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '&') ADVANCE(266); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(317); + if (lookahead == '/') ADVANCE(82); + if (lookahead == ':') ADVANCE(238); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '=') ADVANCE(242); + if (lookahead == '?') ADVANCE(272); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(119); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(118); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(270); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(202) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 203: + if (eof) ADVANCE(220); + if (lookahead == '#') ADVANCE(178); + if (lookahead == '&') ADVANCE(266); + if (lookahead == '\'') ADVANCE(179); + if (lookahead == '(') ADVANCE(268); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(317); + if (lookahead == '/') ADVANCE(82); + if (lookahead == ':') ADVANCE(238); + if (lookahead == '=') ADVANCE(242); + if (lookahead == '?') ADVANCE(272); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'i') ADVANCE(376); + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 'p') ADVANCE(339); + if (lookahead == 's') ADVANCE(422); + if (lookahead == 't') ADVANCE(426); + if (lookahead == 'u') ADVANCE(411); + if (lookahead == 'v') ADVANCE(338); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(270); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(203) + if (lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(429); + END_STATE(); + case 204: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(204) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ',') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 205: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(205) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ',') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 206: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(206) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 207: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(207) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 208: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(119); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(118); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(208) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 209: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(209) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 210: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(119); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(118); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(210) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 211: + if (eof) ADVANCE(220); + if (lookahead == '&') ADVANCE(267); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(211) + if (lookahead == '!' || + lookahead == '$' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 212: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(212) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ',') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 213: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(213) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= ',') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 214: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == '?') ADVANCE(273); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(214) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 215: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '-') ADVANCE(522); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(215) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 216: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(119); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(118); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(216) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '-') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 217: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '.') ADVANCE(318); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(217) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '-') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 218: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(119); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(118); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(218) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 219: + if (eof) ADVANCE(220); + if (lookahead == ')') ADVANCE(269); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(306); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(150); + if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(169); + if (lookahead == 't') ADVANCE(175); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'v') ADVANCE(95); + if (lookahead == 'w') ADVANCE(117); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(271); + if (lookahead == '}') ADVANCE(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(219) + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(523); + END_STATE(); + case 220: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_namespace); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_namespace); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_var); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_var); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_partition); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_partition); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_partition); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_alias); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_alias); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 245: + ACCEPT_TOKEN(anon_sym_alias); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_decl); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_decl); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_decl); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_def); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_def); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(132); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(375); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_class); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_class); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_typeclass); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_typeclass); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_typeclass); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 273: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym_match); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_match); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 277: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 278: + ACCEPT_TOKEN(anon_sym_with); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_with); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 281: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 284: + ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_elif); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_elif); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_do); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_do); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_loop); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_loop); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_return); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_return); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_break); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_break); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_continue); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_continue); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead == '\n') ADVANCE(531); + if (lookahead == '/') ADVANCE(322); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\') ADVANCE(326); + if (lookahead != 0) ADVANCE(322); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead == '\n') ADVANCE(531); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\') ADVANCE(326); + if (lookahead != 0) ADVANCE(322); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead == '/') ADVANCE(326); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(326); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead == '/') ADVANCE(325); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(325); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(326); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(325); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(326); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym__line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(326); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym__block_comment); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym__block_comment); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym__block_comment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(531); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym_typeclass_identifier); + if (lookahead == '_') ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); + END_STATE(); + case 331: + ACCEPT_TOKEN(sym_typeclass_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); + END_STATE(); + case 332: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 333: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(404); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 335: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(377); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 336: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(410); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'a') ADVANCE(412); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'c') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'f') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'c') ADVANCE(417); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'c') ADVANCE(351); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(240); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(414); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'e') ADVANCE(381); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'f') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'f') ADVANCE(287); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'h') ADVANCE(362); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'h') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'h') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'h') ADVANCE(355); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(372); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 363: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(357); + if (lookahead == 's') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(382); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 365: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(334); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'i') ADVANCE(391); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 369: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'k') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 370: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 371: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 372: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 373: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(365); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 374: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(337); + if (lookahead == 'o') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 375: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'l') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 376: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'm') ADVANCE(394); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 377: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'm') ADVANCE(354); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 378: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 379: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 381: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 382: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(425); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 383: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(418); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'n') ADVANCE(408); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 386: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 390: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 391: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(380); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 392: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'o') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 393: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'p') ADVANCE(304); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 394: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'p') ADVANCE(392); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 395: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'p') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'p') ADVANCE(350); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 398: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 399: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(378); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 401: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 402: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(420); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 403: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'r') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 404: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 405: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(261); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 406: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 407: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(415); + if (lookahead == 't') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(395); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(349); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 's') ADVANCE(406); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(341); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(424); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(236); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(360); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 't') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'u') ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'u') ADVANCE(400); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'u') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'y') ADVANCE(396); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym_name_identifier); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym_type_identifier); + if (lookahead == '_') ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(428); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym_type_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(429); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym_abstract_type_identifier); + if (lookahead == '_') ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(430); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym_abstract_type_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(431); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(432); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(472); + if (lookahead == 'f') ADVANCE(253); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'o') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(241); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(291); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(297); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 'm') ADVANCE(490); + if (lookahead == 'n') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(288); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(465); + if (lookahead == 'i') ADVANCE(508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(453); + if (lookahead == 'y') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(458); + if (lookahead == 's') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(514); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(463); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(436); + if (lookahead == 'o') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(441); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(515); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(509); + if (lookahead == 't') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '*') ADVANCE(520); + if (lookahead == '/') ADVANCE(324); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '*') ADVANCE(521); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(520); + if (lookahead != 0) ADVANCE(83); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '/') ADVANCE(328); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(520); + if (lookahead != 0) ADVANCE(83); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '>') ADVANCE(250); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 523: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(523); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym_float_number_literal); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(524); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '.') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 527: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(528); + if (lookahead == '/') ADVANCE(321); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(531); + END_STATE(); + case 528: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(530); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\') ADVANCE(83); + if (lookahead != 0) ADVANCE(528); + END_STATE(); + case 529: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(527); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(529); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(531); + END_STATE(); + case 530: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(329); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\') ADVANCE(83); + if (lookahead != 0) ADVANCE(528); + END_STATE(); + case 531: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(531); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(430); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(518); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(431); + END_STATE(); + case 535: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 536: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(83); + if (lookahead == '/') ADVANCE(323); + END_STATE(); + case 537: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '/') ADVANCE(536); + if (lookahead == '\\') ADVANCE(181); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(537); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\'') ADVANCE(535); + 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 == 'C') ADVANCE(1); + if (lookahead == 'E') ADVANCE(2); + if (lookahead == 'I') ADVANCE(3); + if (lookahead == 'L') ADVANCE(4); + if (lookahead == 'M') ADVANCE(5); + if (lookahead == 'T') ADVANCE(6); + if (lookahead == '_') ADVANCE(7); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'O') ADVANCE(8); + END_STATE(); + case 2: + if (lookahead == 'X') ADVANCE(9); + END_STATE(); + case 3: + if (lookahead == 'N') ADVANCE(10); + END_STATE(); + case 4: + if (lookahead == 'I') ADVANCE(11); + END_STATE(); + case 5: + if (lookahead == 'O') ADVANCE(12); + END_STATE(); + case 6: + if (lookahead == 'E') ADVANCE(13); + END_STATE(); + case 7: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 8: + if (lookahead == 'R') ADVANCE(14); + END_STATE(); + case 9: + if (lookahead == 'E') ADVANCE(15); + END_STATE(); + case 10: + if (lookahead == 'T') ADVANCE(16); + END_STATE(); + case 11: + if (lookahead == 'B') ADVANCE(17); + END_STATE(); + case 12: + if (lookahead == 'D') ADVANCE(18); + END_STATE(); + case 13: + if (lookahead == 'S') ADVANCE(19); + END_STATE(); + case 14: + if (lookahead == 'E') ADVANCE(20); + END_STATE(); + case 15: + ACCEPT_TOKEN(anon_sym_EXE); + END_STATE(); + case 16: + if (lookahead == 'E') ADVANCE(21); + END_STATE(); + case 17: + ACCEPT_TOKEN(anon_sym_LIB); + END_STATE(); + case 18: + if (lookahead == 'U') ADVANCE(22); + END_STATE(); + case 19: + if (lookahead == 'T') ADVANCE(23); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_CORE); + END_STATE(); + case 21: + if (lookahead == 'R') ADVANCE(24); + END_STATE(); + case 22: + if (lookahead == 'L') ADVANCE(25); + END_STATE(); + case 23: + ACCEPT_TOKEN(anon_sym_TEST); + END_STATE(); + case 24: + if (lookahead == 'F') ADVANCE(26); + END_STATE(); + case 25: + if (lookahead == 'E') ADVANCE(27); + END_STATE(); + case 26: + if (lookahead == 'A') ADVANCE(28); + END_STATE(); + case 27: + ACCEPT_TOKEN(anon_sym_MODULE); + END_STATE(); + case 28: + if (lookahead == 'C') ADVANCE(29); + END_STATE(); + case 29: + if (lookahead == 'E') ADVANCE(30); + END_STATE(); + case 30: + ACCEPT_TOKEN(anon_sym_INTERFACE); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 202}, + [2] = {.lex_state = 2}, + [3] = {.lex_state = 2}, + [4] = {.lex_state = 2}, + [5] = {.lex_state = 2}, + [6] = {.lex_state = 2}, + [7] = {.lex_state = 2}, + [8] = {.lex_state = 2}, + [9] = {.lex_state = 2}, + [10] = {.lex_state = 2}, + [11] = {.lex_state = 2}, + [12] = {.lex_state = 2}, + [13] = {.lex_state = 2}, + [14] = {.lex_state = 2}, + [15] = {.lex_state = 2}, + [16] = {.lex_state = 2}, + [17] = {.lex_state = 2}, + [18] = {.lex_state = 2}, + [19] = {.lex_state = 2}, + [20] = {.lex_state = 2}, + [21] = {.lex_state = 2}, + [22] = {.lex_state = 2}, + [23] = {.lex_state = 2}, + [24] = {.lex_state = 2}, + [25] = {.lex_state = 2}, + [26] = {.lex_state = 2}, + [27] = {.lex_state = 2}, + [28] = {.lex_state = 2}, + [29] = {.lex_state = 2}, + [30] = {.lex_state = 2}, + [31] = {.lex_state = 2}, + [32] = {.lex_state = 2}, + [33] = {.lex_state = 2}, + [34] = {.lex_state = 2}, + [35] = {.lex_state = 2}, + [36] = {.lex_state = 2}, + [37] = {.lex_state = 2}, + [38] = {.lex_state = 2}, + [39] = {.lex_state = 2}, + [40] = {.lex_state = 2}, + [41] = {.lex_state = 2}, + [42] = {.lex_state = 2}, + [43] = {.lex_state = 2}, + [44] = {.lex_state = 2}, + [45] = {.lex_state = 2}, + [46] = {.lex_state = 2}, + [47] = {.lex_state = 2}, + [48] = {.lex_state = 2}, + [49] = {.lex_state = 2}, + [50] = {.lex_state = 2}, + [51] = {.lex_state = 2}, + [52] = {.lex_state = 2}, + [53] = {.lex_state = 2}, + [54] = {.lex_state = 2}, + [55] = {.lex_state = 2}, + [56] = {.lex_state = 2}, + [57] = {.lex_state = 2}, + [58] = {.lex_state = 2}, + [59] = {.lex_state = 2}, + [60] = {.lex_state = 2}, + [61] = {.lex_state = 2}, + [62] = {.lex_state = 2}, + [63] = {.lex_state = 2}, + [64] = {.lex_state = 2}, + [65] = {.lex_state = 2}, + [66] = {.lex_state = 2}, + [67] = {.lex_state = 2}, + [68] = {.lex_state = 2}, + [69] = {.lex_state = 2}, + [70] = {.lex_state = 2}, + [71] = {.lex_state = 2}, + [72] = {.lex_state = 2}, + [73] = {.lex_state = 2}, + [74] = {.lex_state = 2}, + [75] = {.lex_state = 2}, + [76] = {.lex_state = 2}, + [77] = {.lex_state = 2}, + [78] = {.lex_state = 2}, + [79] = {.lex_state = 2}, + [80] = {.lex_state = 2}, + [81] = {.lex_state = 2}, + [82] = {.lex_state = 2}, + [83] = {.lex_state = 2}, + [84] = {.lex_state = 2}, + [85] = {.lex_state = 2}, + [86] = {.lex_state = 2}, + [87] = {.lex_state = 2}, + [88] = {.lex_state = 2}, + [89] = {.lex_state = 2}, + [90] = {.lex_state = 2}, + [91] = {.lex_state = 2}, + [92] = {.lex_state = 2}, + [93] = {.lex_state = 2}, + [94] = {.lex_state = 2}, + [95] = {.lex_state = 2}, + [96] = {.lex_state = 2}, + [97] = {.lex_state = 2}, + [98] = {.lex_state = 2}, + [99] = {.lex_state = 2}, + [100] = {.lex_state = 2}, + [101] = {.lex_state = 2}, + [102] = {.lex_state = 2}, + [103] = {.lex_state = 2}, + [104] = {.lex_state = 2}, + [105] = {.lex_state = 2}, + [106] = {.lex_state = 2}, + [107] = {.lex_state = 2}, + [108] = {.lex_state = 2}, + [109] = {.lex_state = 2}, + [110] = {.lex_state = 2}, + [111] = {.lex_state = 2}, + [112] = {.lex_state = 2}, + [113] = {.lex_state = 202}, + [114] = {.lex_state = 202}, + [115] = {.lex_state = 202}, + [116] = {.lex_state = 202}, + [117] = {.lex_state = 202}, + [118] = {.lex_state = 202}, + [119] = {.lex_state = 202}, + [120] = {.lex_state = 202}, + [121] = {.lex_state = 6}, + [122] = {.lex_state = 6}, + [123] = {.lex_state = 6}, + [124] = {.lex_state = 7}, + [125] = {.lex_state = 44}, + [126] = {.lex_state = 44}, + [127] = {.lex_state = 7}, + [128] = {.lex_state = 13}, + [129] = {.lex_state = 7}, + [130] = {.lex_state = 13}, + [131] = {.lex_state = 184}, + [132] = {.lex_state = 184}, + [133] = {.lex_state = 44}, + [134] = {.lex_state = 184}, + [135] = {.lex_state = 13}, + [136] = {.lex_state = 51}, + [137] = {.lex_state = 194}, + [138] = {.lex_state = 51}, + [139] = {.lex_state = 22}, + [140] = {.lex_state = 185}, + [141] = {.lex_state = 194}, + [142] = {.lex_state = 45}, + [143] = {.lex_state = 185}, + [144] = {.lex_state = 189}, + [145] = {.lex_state = 22}, + [146] = {.lex_state = 51}, + [147] = {.lex_state = 185}, + [148] = {.lex_state = 14}, + [149] = {.lex_state = 189}, + [150] = {.lex_state = 14}, + [151] = {.lex_state = 45}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 14}, + [154] = {.lex_state = 189}, + [155] = {.lex_state = 194}, + [156] = {.lex_state = 22}, + [157] = {.lex_state = 3}, + [158] = {.lex_state = 23}, + [159] = {.lex_state = 190}, + [160] = {.lex_state = 195}, + [161] = {.lex_state = 190}, + [162] = {.lex_state = 23}, + [163] = {.lex_state = 35}, + [164] = {.lex_state = 199}, + [165] = {.lex_state = 34}, + [166] = {.lex_state = 35}, + [167] = {.lex_state = 34}, + [168] = {.lex_state = 35}, + [169] = {.lex_state = 34}, + [170] = {.lex_state = 60}, + [171] = {.lex_state = 52}, + [172] = {.lex_state = 52}, + [173] = {.lex_state = 52}, + [174] = {.lex_state = 190}, + [175] = {.lex_state = 199}, + [176] = {.lex_state = 60}, + [177] = {.lex_state = 23}, + [178] = {.lex_state = 60}, + [179] = {.lex_state = 199}, + [180] = {.lex_state = 195}, + [181] = {.lex_state = 195}, + [182] = {.lex_state = 3}, + [183] = {.lex_state = 3}, + [184] = {.lex_state = 36}, + [185] = {.lex_state = 3}, + [186] = {.lex_state = 3}, + [187] = {.lex_state = 3}, + [188] = {.lex_state = 3}, + [189] = {.lex_state = 36}, + [190] = {.lex_state = 3}, + [191] = {.lex_state = 36}, + [192] = {.lex_state = 3}, + [193] = {.lex_state = 3}, + [194] = {.lex_state = 3}, + [195] = {.lex_state = 3}, + [196] = {.lex_state = 3}, + [197] = {.lex_state = 3}, + [198] = {.lex_state = 3}, + [199] = {.lex_state = 3}, + [200] = {.lex_state = 3}, + [201] = {.lex_state = 3}, + [202] = {.lex_state = 73}, + [203] = {.lex_state = 61}, + [204] = {.lex_state = 3}, + [205] = {.lex_state = 3}, + [206] = {.lex_state = 3}, + [207] = {.lex_state = 3}, + [208] = {.lex_state = 3}, + [209] = {.lex_state = 3}, + [210] = {.lex_state = 3}, + [211] = {.lex_state = 3}, + [212] = {.lex_state = 3}, + [213] = {.lex_state = 3}, + [214] = {.lex_state = 3}, + [215] = {.lex_state = 3}, + [216] = {.lex_state = 3}, + [217] = {.lex_state = 61}, + [218] = {.lex_state = 3}, + [219] = {.lex_state = 3}, + [220] = {.lex_state = 3}, + [221] = {.lex_state = 3}, + [222] = {.lex_state = 3}, + [223] = {.lex_state = 3}, + [224] = {.lex_state = 3}, + [225] = {.lex_state = 61}, + [226] = {.lex_state = 3}, + [227] = {.lex_state = 3}, + [228] = {.lex_state = 3}, + [229] = {.lex_state = 3}, + [230] = {.lex_state = 3}, + [231] = {.lex_state = 3}, + [232] = {.lex_state = 3}, + [233] = {.lex_state = 3}, + [234] = {.lex_state = 3}, + [235] = {.lex_state = 3}, + [236] = {.lex_state = 3}, + [237] = {.lex_state = 3}, + [238] = {.lex_state = 3}, + [239] = {.lex_state = 3}, + [240] = {.lex_state = 3}, + [241] = {.lex_state = 3}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 3}, + [244] = {.lex_state = 72}, + [245] = {.lex_state = 3}, + [246] = {.lex_state = 3}, + [247] = {.lex_state = 3}, + [248] = {.lex_state = 3}, + [249] = {.lex_state = 72}, + [250] = {.lex_state = 3}, + [251] = {.lex_state = 73}, + [252] = {.lex_state = 3}, + [253] = {.lex_state = 3}, + [254] = {.lex_state = 72}, + [255] = {.lex_state = 3}, + [256] = {.lex_state = 3}, + [257] = {.lex_state = 3}, + [258] = {.lex_state = 73}, + [259] = {.lex_state = 3}, + [260] = {.lex_state = 3}, + [261] = {.lex_state = 3}, + [262] = {.lex_state = 3}, + [263] = {.lex_state = 3}, + [264] = {.lex_state = 3}, + [265] = {.lex_state = 3}, + [266] = {.lex_state = 3}, + [267] = {.lex_state = 3}, + [268] = {.lex_state = 3}, + [269] = {.lex_state = 3}, + [270] = {.lex_state = 3}, + [271] = {.lex_state = 3}, + [272] = {.lex_state = 3}, + [273] = {.lex_state = 3}, + [274] = {.lex_state = 3}, + [275] = {.lex_state = 3}, + [276] = {.lex_state = 3}, + [277] = {.lex_state = 3}, + [278] = {.lex_state = 3}, + [279] = {.lex_state = 3}, + [280] = {.lex_state = 3}, + [281] = {.lex_state = 3}, + [282] = {.lex_state = 3}, + [283] = {.lex_state = 3}, + [284] = {.lex_state = 3}, + [285] = {.lex_state = 3}, + [286] = {.lex_state = 3}, + [287] = {.lex_state = 3}, + [288] = {.lex_state = 3}, + [289] = {.lex_state = 3}, + [290] = {.lex_state = 3}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 3}, + [293] = {.lex_state = 3}, + [294] = {.lex_state = 3}, + [295] = {.lex_state = 3}, + [296] = {.lex_state = 3}, + [297] = {.lex_state = 3}, + [298] = {.lex_state = 3}, + [299] = {.lex_state = 3}, + [300] = {.lex_state = 3}, + [301] = {.lex_state = 3}, + [302] = {.lex_state = 3}, + [303] = {.lex_state = 3}, + [304] = {.lex_state = 3}, + [305] = {.lex_state = 3}, + [306] = {.lex_state = 3}, + [307] = {.lex_state = 3}, + [308] = {.lex_state = 3}, + [309] = {.lex_state = 3}, + [310] = {.lex_state = 3}, + [311] = {.lex_state = 3}, + [312] = {.lex_state = 3}, + [313] = {.lex_state = 3}, + [314] = {.lex_state = 3}, + [315] = {.lex_state = 3}, + [316] = {.lex_state = 3}, + [317] = {.lex_state = 3}, + [318] = {.lex_state = 3}, + [319] = {.lex_state = 3}, + [320] = {.lex_state = 3}, + [321] = {.lex_state = 3}, + [322] = {.lex_state = 3}, + [323] = {.lex_state = 3}, + [324] = {.lex_state = 3}, + [325] = {.lex_state = 3}, + [326] = {.lex_state = 3}, + [327] = {.lex_state = 3}, + [328] = {.lex_state = 3}, + [329] = {.lex_state = 3}, + [330] = {.lex_state = 3}, + [331] = {.lex_state = 200}, + [332] = {.lex_state = 3}, + [333] = {.lex_state = 3}, + [334] = {.lex_state = 3}, + [335] = {.lex_state = 3}, + [336] = {.lex_state = 3}, + [337] = {.lex_state = 3}, + [338] = {.lex_state = 3}, + [339] = {.lex_state = 3}, + [340] = {.lex_state = 200}, + [341] = {.lex_state = 3}, + [342] = {.lex_state = 3}, + [343] = {.lex_state = 3}, + [344] = {.lex_state = 3}, + [345] = {.lex_state = 3}, + [346] = {.lex_state = 3}, + [347] = {.lex_state = 3}, + [348] = {.lex_state = 3}, + [349] = {.lex_state = 3}, + [350] = {.lex_state = 3}, + [351] = {.lex_state = 200}, + [352] = {.lex_state = 3}, + [353] = {.lex_state = 3}, + [354] = {.lex_state = 3}, + [355] = {.lex_state = 3}, + [356] = {.lex_state = 3}, + [357] = {.lex_state = 3}, + [358] = {.lex_state = 3}, + [359] = {.lex_state = 3}, + [360] = {.lex_state = 3}, + [361] = {.lex_state = 3}, + [362] = {.lex_state = 3}, + [363] = {.lex_state = 3}, + [364] = {.lex_state = 3}, + [365] = {.lex_state = 3}, + [366] = {.lex_state = 3}, + [367] = {.lex_state = 3}, + [368] = {.lex_state = 3}, + [369] = {.lex_state = 191}, + [370] = {.lex_state = 3}, + [371] = {.lex_state = 3}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 3}, + [375] = {.lex_state = 3}, + [376] = {.lex_state = 3}, + [377] = {.lex_state = 3}, + [378] = {.lex_state = 3}, + [379] = {.lex_state = 3}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 3}, + [383] = {.lex_state = 3}, + [384] = {.lex_state = 191}, + [385] = {.lex_state = 3}, + [386] = {.lex_state = 3}, + [387] = {.lex_state = 3}, + [388] = {.lex_state = 3}, + [389] = {.lex_state = 3}, + [390] = {.lex_state = 3}, + [391] = {.lex_state = 3}, + [392] = {.lex_state = 3}, + [393] = {.lex_state = 3}, + [394] = {.lex_state = 191}, + [395] = {.lex_state = 3}, + [396] = {.lex_state = 3}, + [397] = {.lex_state = 3}, + [398] = {.lex_state = 3}, + [399] = {.lex_state = 3}, + [400] = {.lex_state = 3}, + [401] = {.lex_state = 3}, + [402] = {.lex_state = 3}, + [403] = {.lex_state = 3}, + [404] = {.lex_state = 3}, + [405] = {.lex_state = 3}, + [406] = {.lex_state = 3}, + [407] = {.lex_state = 3}, + [408] = {.lex_state = 3}, + [409] = {.lex_state = 3}, + [410] = {.lex_state = 3}, + [411] = {.lex_state = 3}, + [412] = {.lex_state = 3}, + [413] = {.lex_state = 3}, + [414] = {.lex_state = 3}, + [415] = {.lex_state = 3}, + [416] = {.lex_state = 3}, + [417] = {.lex_state = 74}, + [418] = {.lex_state = 74}, + [419] = {.lex_state = 74}, + [420] = {.lex_state = 201}, + [421] = {.lex_state = 37}, + [422] = {.lex_state = 37}, + [423] = {.lex_state = 37}, + [424] = {.lex_state = 201}, + [425] = {.lex_state = 201}, + [426] = {.lex_state = 202}, + [427] = {.lex_state = 75}, + [428] = {.lex_state = 202}, + [429] = {.lex_state = 208}, + [430] = {.lex_state = 202}, + [431] = {.lex_state = 202}, + [432] = {.lex_state = 202}, + [433] = {.lex_state = 202}, + [434] = {.lex_state = 202}, + [435] = {.lex_state = 202}, + [436] = {.lex_state = 75}, + [437] = {.lex_state = 202}, + [438] = {.lex_state = 202}, + [439] = {.lex_state = 202}, + [440] = {.lex_state = 75}, + [441] = {.lex_state = 204}, + [442] = {.lex_state = 210}, + [443] = {.lex_state = 210}, + [444] = {.lex_state = 216}, + [445] = {.lex_state = 210}, + [446] = {.lex_state = 218}, + [447] = {.lex_state = 206}, + [448] = {.lex_state = 218}, + [449] = {.lex_state = 212}, + [450] = {.lex_state = 218}, + [451] = {.lex_state = 206}, + [452] = {.lex_state = 206}, + [453] = {.lex_state = 205}, + [454] = {.lex_state = 213}, + [455] = {.lex_state = 207}, + [456] = {.lex_state = 207}, + [457] = {.lex_state = 214}, + [458] = {.lex_state = 209}, + [459] = {.lex_state = 214}, + [460] = {.lex_state = 214}, + [461] = {.lex_state = 207}, + [462] = {.lex_state = 211}, + [463] = {.lex_state = 215}, + [464] = {.lex_state = 202}, + [465] = {.lex_state = 215}, + [466] = {.lex_state = 217}, + [467] = {.lex_state = 202}, + [468] = {.lex_state = 202}, + [469] = {.lex_state = 215}, + [470] = {.lex_state = 211}, + [471] = {.lex_state = 211}, + [472] = {.lex_state = 18}, + [473] = {.lex_state = 18}, + [474] = {.lex_state = 18}, + [475] = {.lex_state = 18}, + [476] = {.lex_state = 219}, + [477] = {.lex_state = 219}, + [478] = {.lex_state = 18}, + [479] = {.lex_state = 18}, + [480] = {.lex_state = 18}, + [481] = {.lex_state = 18}, + [482] = {.lex_state = 18}, + [483] = {.lex_state = 18}, + [484] = {.lex_state = 202}, + [485] = {.lex_state = 18}, + [486] = {.lex_state = 18}, + [487] = {.lex_state = 219}, + [488] = {.lex_state = 18}, + [489] = {.lex_state = 56}, + [490] = {.lex_state = 56}, + [491] = {.lex_state = 56}, + [492] = {.lex_state = 6}, + [493] = {.lex_state = 182}, + [494] = {.lex_state = 19}, + [495] = {.lex_state = 19}, + [496] = {.lex_state = 56}, + [497] = {.lex_state = 24}, + [498] = {.lex_state = 182}, + [499] = {.lex_state = 202}, + [500] = {.lex_state = 19}, + [501] = {.lex_state = 202}, + [502] = {.lex_state = 56}, + [503] = {.lex_state = 19}, + [504] = {.lex_state = 19}, + [505] = {.lex_state = 56}, + [506] = {.lex_state = 19}, + [507] = {.lex_state = 19}, + [508] = {.lex_state = 56}, + [509] = {.lex_state = 182}, + [510] = {.lex_state = 19}, + [511] = {.lex_state = 182}, + [512] = {.lex_state = 182}, + [513] = {.lex_state = 182}, + [514] = {.lex_state = 56}, + [515] = {.lex_state = 19}, + [516] = {.lex_state = 24}, + [517] = {.lex_state = 19}, + [518] = {.lex_state = 19}, + [519] = {.lex_state = 182}, + [520] = {.lex_state = 56}, + [521] = {.lex_state = 56}, + [522] = {.lex_state = 19}, + [523] = {.lex_state = 182}, + [524] = {.lex_state = 19}, + [525] = {.lex_state = 182}, + [526] = {.lex_state = 203}, + [527] = {.lex_state = 182}, + [528] = {.lex_state = 56}, + [529] = {.lex_state = 24}, + [530] = {.lex_state = 6}, + [531] = {.lex_state = 56}, + [532] = {.lex_state = 24}, + [533] = {.lex_state = 182}, + [534] = {.lex_state = 24}, + [535] = {.lex_state = 203}, + [536] = {.lex_state = 24}, + [537] = {.lex_state = 24}, + [538] = {.lex_state = 56}, + [539] = {.lex_state = 24}, + [540] = {.lex_state = 182}, + [541] = {.lex_state = 24}, + [542] = {.lex_state = 24}, + [543] = {.lex_state = 24}, + [544] = {.lex_state = 182}, + [545] = {.lex_state = 24}, + [546] = {.lex_state = 24}, + [547] = {.lex_state = 202}, + [548] = {.lex_state = 57}, + [549] = {.lex_state = 183}, + [550] = {.lex_state = 20}, + [551] = {.lex_state = 192}, + [552] = {.lex_state = 20}, + [553] = {.lex_state = 57}, + [554] = {.lex_state = 183}, + [555] = {.lex_state = 183}, + [556] = {.lex_state = 20}, + [557] = {.lex_state = 183}, + [558] = {.lex_state = 13}, + [559] = {.lex_state = 62}, + [560] = {.lex_state = 192}, + [561] = {.lex_state = 192}, + [562] = {.lex_state = 57}, + [563] = {.lex_state = 20}, + [564] = {.lex_state = 183}, + [565] = {.lex_state = 192}, + [566] = {.lex_state = 192}, + [567] = {.lex_state = 202}, + [568] = {.lex_state = 57}, + [569] = {.lex_state = 192}, + [570] = {.lex_state = 202}, + [571] = {.lex_state = 62}, + [572] = {.lex_state = 192}, + [573] = {.lex_state = 20}, + [574] = {.lex_state = 20}, + [575] = {.lex_state = 57}, + [576] = {.lex_state = 203}, + [577] = {.lex_state = 62}, + [578] = {.lex_state = 25}, + [579] = {.lex_state = 57}, + [580] = {.lex_state = 57}, + [581] = {.lex_state = 57}, + [582] = {.lex_state = 202}, + [583] = {.lex_state = 57}, + [584] = {.lex_state = 62}, + [585] = {.lex_state = 20}, + [586] = {.lex_state = 62}, + [587] = {.lex_state = 20}, + [588] = {.lex_state = 25}, + [589] = {.lex_state = 20}, + [590] = {.lex_state = 184}, + [591] = {.lex_state = 57}, + [592] = {.lex_state = 183}, + [593] = {.lex_state = 25}, + [594] = {.lex_state = 20}, + [595] = {.lex_state = 25}, + [596] = {.lex_state = 192}, + [597] = {.lex_state = 44}, + [598] = {.lex_state = 57}, + [599] = {.lex_state = 20}, + [600] = {.lex_state = 25}, + [601] = {.lex_state = 20}, + [602] = {.lex_state = 184}, + [603] = {.lex_state = 192}, + [604] = {.lex_state = 13}, + [605] = {.lex_state = 25}, + [606] = {.lex_state = 25}, + [607] = {.lex_state = 20}, + [608] = {.lex_state = 25}, + [609] = {.lex_state = 57}, + [610] = {.lex_state = 25}, + [611] = {.lex_state = 183}, + [612] = {.lex_state = 25}, + [613] = {.lex_state = 57}, + [614] = {.lex_state = 7}, + [615] = {.lex_state = 183}, + [616] = {.lex_state = 203}, + [617] = {.lex_state = 183}, + [618] = {.lex_state = 202}, + [619] = {.lex_state = 186}, + [620] = {.lex_state = 25}, + [621] = {.lex_state = 186}, + [622] = {.lex_state = 202}, + [623] = {.lex_state = 25}, + [624] = {.lex_state = 183}, + [625] = {.lex_state = 186}, + [626] = {.lex_state = 62}, + [627] = {.lex_state = 25}, + [628] = {.lex_state = 183}, + [629] = {.lex_state = 202}, + [630] = {.lex_state = 7}, + [631] = {.lex_state = 186}, + [632] = {.lex_state = 183}, + [633] = {.lex_state = 202}, + [634] = {.lex_state = 62}, + [635] = {.lex_state = 186}, + [636] = {.lex_state = 186}, + [637] = {.lex_state = 62}, + [638] = {.lex_state = 202}, + [639] = {.lex_state = 192}, + [640] = {.lex_state = 62}, + [641] = {.lex_state = 62}, + [642] = {.lex_state = 202}, + [643] = {.lex_state = 62}, + [644] = {.lex_state = 62}, + [645] = {.lex_state = 186}, + [646] = {.lex_state = 192}, + [647] = {.lex_state = 62}, + [648] = {.lex_state = 192}, + [649] = {.lex_state = 183}, + [650] = {.lex_state = 186}, + [651] = {.lex_state = 186}, + [652] = {.lex_state = 186}, + [653] = {.lex_state = 192}, + [654] = {.lex_state = 186}, + [655] = {.lex_state = 186}, + [656] = {.lex_state = 44}, + [657] = {.lex_state = 186}, + [658] = {.lex_state = 187}, + [659] = {.lex_state = 81}, + [660] = {.lex_state = 196}, + [661] = {.lex_state = 189}, + [662] = {.lex_state = 193}, + [663] = {.lex_state = 21}, + [664] = {.lex_state = 27}, + [665] = {.lex_state = 63}, + [666] = {.lex_state = 193}, + [667] = {.lex_state = 193}, + [668] = {.lex_state = 193}, + [669] = {.lex_state = 26}, + [670] = {.lex_state = 14}, + [671] = {.lex_state = 202}, + [672] = {.lex_state = 193}, + [673] = {.lex_state = 21}, + [674] = {.lex_state = 196}, + [675] = {.lex_state = 193}, + [676] = {.lex_state = 196}, + [677] = {.lex_state = 193}, + [678] = {.lex_state = 196}, + [679] = {.lex_state = 193}, + [680] = {.lex_state = 193}, + [681] = {.lex_state = 22}, + [682] = {.lex_state = 196}, + [683] = {.lex_state = 21}, + [684] = {.lex_state = 196}, + [685] = {.lex_state = 196}, + [686] = {.lex_state = 202}, + [687] = {.lex_state = 196}, + [688] = {.lex_state = 14}, + [689] = {.lex_state = 193}, + [690] = {.lex_state = 196}, + [691] = {.lex_state = 187}, + [692] = {.lex_state = 194}, + [693] = {.lex_state = 187}, + [694] = {.lex_state = 21}, + [695] = {.lex_state = 185}, + [696] = {.lex_state = 196}, + [697] = {.lex_state = 63}, + [698] = {.lex_state = 187}, + [699] = {.lex_state = 196}, + [700] = {.lex_state = 22}, + [701] = {.lex_state = 187}, + [702] = {.lex_state = 196}, + [703] = {.lex_state = 63}, + [704] = {.lex_state = 58}, + [705] = {.lex_state = 193}, + [706] = {.lex_state = 58}, + [707] = {.lex_state = 58}, + [708] = {.lex_state = 187}, + [709] = {.lex_state = 193}, + [710] = {.lex_state = 63}, + [711] = {.lex_state = 58}, + [712] = {.lex_state = 187}, + [713] = {.lex_state = 21}, + [714] = {.lex_state = 45}, + [715] = {.lex_state = 27}, + [716] = {.lex_state = 187}, + [717] = {.lex_state = 45}, + [718] = {.lex_state = 58}, + [719] = {.lex_state = 21}, + [720] = {.lex_state = 63}, + [721] = {.lex_state = 27}, + [722] = {.lex_state = 58}, + [723] = {.lex_state = 21}, + [724] = {.lex_state = 193}, + [725] = {.lex_state = 58}, + [726] = {.lex_state = 21}, + [727] = {.lex_state = 185}, + [728] = {.lex_state = 58}, + [729] = {.lex_state = 63}, + [730] = {.lex_state = 51}, + [731] = {.lex_state = 187}, + [732] = {.lex_state = 63}, + [733] = {.lex_state = 63}, + [734] = {.lex_state = 58}, + [735] = {.lex_state = 26}, + [736] = {.lex_state = 21}, + [737] = {.lex_state = 63}, + [738] = {.lex_state = 27}, + [739] = {.lex_state = 26}, + [740] = {.lex_state = 187}, + [741] = {.lex_state = 63}, + [742] = {.lex_state = 26}, + [743] = {.lex_state = 63}, + [744] = {.lex_state = 187}, + [745] = {.lex_state = 63}, + [746] = {.lex_state = 58}, + [747] = {.lex_state = 81}, + [748] = {.lex_state = 58}, + [749] = {.lex_state = 26}, + [750] = {.lex_state = 51}, + [751] = {.lex_state = 58}, + [752] = {.lex_state = 26}, + [753] = {.lex_state = 63}, + [754] = {.lex_state = 26}, + [755] = {.lex_state = 196}, + [756] = {.lex_state = 26}, + [757] = {.lex_state = 8}, + [758] = {.lex_state = 26}, + [759] = {.lex_state = 27}, + [760] = {.lex_state = 58}, + [761] = {.lex_state = 26}, + [762] = {.lex_state = 189}, + [763] = {.lex_state = 26}, + [764] = {.lex_state = 26}, + [765] = {.lex_state = 21}, + [766] = {.lex_state = 8}, + [767] = {.lex_state = 187}, + [768] = {.lex_state = 194}, + [769] = {.lex_state = 8}, + [770] = {.lex_state = 21}, + [771] = {.lex_state = 27}, + [772] = {.lex_state = 27}, + [773] = {.lex_state = 27}, + [774] = {.lex_state = 27}, + [775] = {.lex_state = 187}, + [776] = {.lex_state = 27}, + [777] = {.lex_state = 21}, + [778] = {.lex_state = 27}, + [779] = {.lex_state = 21}, + [780] = {.lex_state = 27}, + [781] = {.lex_state = 26}, + [782] = {.lex_state = 27}, + [783] = {.lex_state = 59}, + [784] = {.lex_state = 202}, + [785] = {.lex_state = 35}, + [786] = {.lex_state = 188}, + [787] = {.lex_state = 34}, + [788] = {.lex_state = 188}, + [789] = {.lex_state = 202}, + [790] = {.lex_state = 65}, + [791] = {.lex_state = 202}, + [792] = {.lex_state = 188}, + [793] = {.lex_state = 28}, + [794] = {.lex_state = 188}, + [795] = {.lex_state = 202}, + [796] = {.lex_state = 188}, + [797] = {.lex_state = 190}, + [798] = {.lex_state = 188}, + [799] = {.lex_state = 188}, + [800] = {.lex_state = 188}, + [801] = {.lex_state = 60}, + [802] = {.lex_state = 188}, + [803] = {.lex_state = 28}, + [804] = {.lex_state = 197}, + [805] = {.lex_state = 197}, + [806] = {.lex_state = 52}, + [807] = {.lex_state = 199}, + [808] = {.lex_state = 188}, + [809] = {.lex_state = 197}, + [810] = {.lex_state = 197}, + [811] = {.lex_state = 197}, + [812] = {.lex_state = 197}, + [813] = {.lex_state = 197}, + [814] = {.lex_state = 197}, + [815] = {.lex_state = 188}, + [816] = {.lex_state = 197}, + [817] = {.lex_state = 197}, + [818] = {.lex_state = 197}, + [819] = {.lex_state = 197}, + [820] = {.lex_state = 202}, + [821] = {.lex_state = 188}, + [822] = {.lex_state = 195}, + [823] = {.lex_state = 15}, + [824] = {.lex_state = 15}, + [825] = {.lex_state = 28}, + [826] = {.lex_state = 197}, + [827] = {.lex_state = 15}, + [828] = {.lex_state = 59}, + [829] = {.lex_state = 188}, + [830] = {.lex_state = 59}, + [831] = {.lex_state = 59}, + [832] = {.lex_state = 64}, + [833] = {.lex_state = 64}, + [834] = {.lex_state = 64}, + [835] = {.lex_state = 64}, + [836] = {.lex_state = 64}, + [837] = {.lex_state = 64}, + [838] = {.lex_state = 202}, + [839] = {.lex_state = 64}, + [840] = {.lex_state = 64}, + [841] = {.lex_state = 46}, + [842] = {.lex_state = 64}, + [843] = {.lex_state = 59}, + [844] = {.lex_state = 64}, + [845] = {.lex_state = 28}, + [846] = {.lex_state = 46}, + [847] = {.lex_state = 60}, + [848] = {.lex_state = 59}, + [849] = {.lex_state = 64}, + [850] = {.lex_state = 23}, + [851] = {.lex_state = 28}, + [852] = {.lex_state = 46}, + [853] = {.lex_state = 59}, + [854] = {.lex_state = 190}, + [855] = {.lex_state = 28}, + [856] = {.lex_state = 59}, + [857] = {.lex_state = 65}, + [858] = {.lex_state = 64}, + [859] = {.lex_state = 34}, + [860] = {.lex_state = 199}, + [861] = {.lex_state = 28}, + [862] = {.lex_state = 59}, + [863] = {.lex_state = 202}, + [864] = {.lex_state = 65}, + [865] = {.lex_state = 28}, + [866] = {.lex_state = 65}, + [867] = {.lex_state = 59}, + [868] = {.lex_state = 65}, + [869] = {.lex_state = 23}, + [870] = {.lex_state = 28}, + [871] = {.lex_state = 202}, + [872] = {.lex_state = 65}, + [873] = {.lex_state = 59}, + [874] = {.lex_state = 65}, + [875] = {.lex_state = 65}, + [876] = {.lex_state = 202}, + [877] = {.lex_state = 65}, + [878] = {.lex_state = 52}, + [879] = {.lex_state = 59}, + [880] = {.lex_state = 65}, + [881] = {.lex_state = 195}, + [882] = {.lex_state = 9}, + [883] = {.lex_state = 9}, + [884] = {.lex_state = 9}, + [885] = {.lex_state = 28}, + [886] = {.lex_state = 65}, + [887] = {.lex_state = 35}, + [888] = {.lex_state = 64}, + [889] = {.lex_state = 65}, + [890] = {.lex_state = 28}, + [891] = {.lex_state = 28}, + [892] = {.lex_state = 65}, + [893] = {.lex_state = 28}, + [894] = {.lex_state = 59}, + [895] = {.lex_state = 66}, + [896] = {.lex_state = 29}, + [897] = {.lex_state = 36}, + [898] = {.lex_state = 198}, + [899] = {.lex_state = 198}, + [900] = {.lex_state = 36}, + [901] = {.lex_state = 16}, + [902] = {.lex_state = 16}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 198}, + [905] = {.lex_state = 198}, + [906] = {.lex_state = 198}, + [907] = {.lex_state = 198}, + [908] = {.lex_state = 198}, + [909] = {.lex_state = 198}, + [910] = {.lex_state = 73}, + [911] = {.lex_state = 198}, + [912] = {.lex_state = 198}, + [913] = {.lex_state = 198}, + [914] = {.lex_state = 61}, + [915] = {.lex_state = 198}, + [916] = {.lex_state = 191}, + [917] = {.lex_state = 200}, + [918] = {.lex_state = 198}, + [919] = {.lex_state = 200}, + [920] = {.lex_state = 72}, + [921] = {.lex_state = 191}, + [922] = {.lex_state = 61}, + [923] = {.lex_state = 72}, + [924] = {.lex_state = 66}, + [925] = {.lex_state = 66}, + [926] = {.lex_state = 66}, + [927] = {.lex_state = 29}, + [928] = {.lex_state = 66}, + [929] = {.lex_state = 66}, + [930] = {.lex_state = 66}, + [931] = {.lex_state = 66}, + [932] = {.lex_state = 29}, + [933] = {.lex_state = 66}, + [934] = {.lex_state = 47}, + [935] = {.lex_state = 66}, + [936] = {.lex_state = 29}, + [937] = {.lex_state = 29}, + [938] = {.lex_state = 66}, + [939] = {.lex_state = 29}, + [940] = {.lex_state = 66}, + [941] = {.lex_state = 29}, + [942] = {.lex_state = 29}, + [943] = {.lex_state = 29}, + [944] = {.lex_state = 53}, + [945] = {.lex_state = 47}, + [946] = {.lex_state = 29}, + [947] = {.lex_state = 29}, + [948] = {.lex_state = 66}, + [949] = {.lex_state = 53}, + [950] = {.lex_state = 29}, + [951] = {.lex_state = 29}, + [952] = {.lex_state = 47}, + [953] = {.lex_state = 53}, + [954] = {.lex_state = 73}, + [955] = {.lex_state = 67}, + [956] = {.lex_state = 38}, + [957] = {.lex_state = 201}, + [958] = {.lex_state = 41}, + [959] = {.lex_state = 67}, + [960] = {.lex_state = 39}, + [961] = {.lex_state = 41}, + [962] = {.lex_state = 67}, + [963] = {.lex_state = 54}, + [964] = {.lex_state = 17}, + [965] = {.lex_state = 17}, + [966] = {.lex_state = 41}, + [967] = {.lex_state = 40}, + [968] = {.lex_state = 39}, + [969] = {.lex_state = 201}, + [970] = {.lex_state = 67}, + [971] = {.lex_state = 67}, + [972] = {.lex_state = 40}, + [973] = {.lex_state = 67}, + [974] = {.lex_state = 74}, + [975] = {.lex_state = 67}, + [976] = {.lex_state = 67}, + [977] = {.lex_state = 40}, + [978] = {.lex_state = 17}, + [979] = {.lex_state = 54}, + [980] = {.lex_state = 37}, + [981] = {.lex_state = 67}, + [982] = {.lex_state = 39}, + [983] = {.lex_state = 67}, + [984] = {.lex_state = 38}, + [985] = {.lex_state = 67}, + [986] = {.lex_state = 74}, + [987] = {.lex_state = 37}, + [988] = {.lex_state = 54}, + [989] = {.lex_state = 38}, + [990] = {.lex_state = 67}, + [991] = {.lex_state = 67}, + [992] = {.lex_state = 75}, + [993] = {.lex_state = 76}, + [994] = {.lex_state = 76}, + [995] = {.lex_state = 78}, + [996] = {.lex_state = 78}, + [997] = {.lex_state = 75}, + [998] = {.lex_state = 78}, + [999] = {.lex_state = 77}, + [1000] = {.lex_state = 77}, + [1001] = {.lex_state = 79}, + [1002] = {.lex_state = 79}, + [1003] = {.lex_state = 79}, + [1004] = {.lex_state = 76}, + [1005] = {.lex_state = 202}, + [1006] = {.lex_state = 55}, + [1007] = {.lex_state = 202}, + [1008] = {.lex_state = 55}, + [1009] = {.lex_state = 77}, + [1010] = {.lex_state = 55}, + [1011] = {.lex_state = 1}, + [1012] = {.lex_state = 1}, + [1013] = {.lex_state = 1}, + [1014] = {.lex_state = 1}, + [1015] = {.lex_state = 1}, + [1016] = {.lex_state = 1}, + [1017] = {.lex_state = 1}, + [1018] = {.lex_state = 1}, + [1019] = {.lex_state = 1}, + [1020] = {.lex_state = 1}, + [1021] = {.lex_state = 1}, + [1022] = {.lex_state = 1}, + [1023] = {.lex_state = 1}, + [1024] = {.lex_state = 1}, + [1025] = {.lex_state = 1}, + [1026] = {.lex_state = 1}, + [1027] = {.lex_state = 1}, + [1028] = {.lex_state = 1}, + [1029] = {.lex_state = 1}, + [1030] = {.lex_state = 1}, + [1031] = {.lex_state = 1}, + [1032] = {.lex_state = 1}, + [1033] = {.lex_state = 1}, + [1034] = {.lex_state = 1}, + [1035] = {.lex_state = 1}, + [1036] = {.lex_state = 1}, + [1037] = {.lex_state = 1}, + [1038] = {.lex_state = 1}, + [1039] = {.lex_state = 1}, + [1040] = {.lex_state = 1}, + [1041] = {.lex_state = 1}, + [1042] = {.lex_state = 1}, + [1043] = {.lex_state = 1}, + [1044] = {.lex_state = 1}, + [1045] = {.lex_state = 1}, + [1046] = {.lex_state = 1}, + [1047] = {.lex_state = 1}, + [1048] = {.lex_state = 1}, + [1049] = {.lex_state = 1}, + [1050] = {.lex_state = 1}, + [1051] = {.lex_state = 1}, + [1052] = {.lex_state = 1}, + [1053] = {.lex_state = 1}, + [1054] = {.lex_state = 1}, + [1055] = {.lex_state = 1}, + [1056] = {.lex_state = 1}, + [1057] = {.lex_state = 1}, + [1058] = {.lex_state = 1}, + [1059] = {.lex_state = 1}, + [1060] = {.lex_state = 1}, + [1061] = {.lex_state = 1}, + [1062] = {.lex_state = 1}, + [1063] = {.lex_state = 1}, + [1064] = {.lex_state = 1}, + [1065] = {.lex_state = 1}, + [1066] = {.lex_state = 1}, + [1067] = {.lex_state = 1}, + [1068] = {.lex_state = 1}, + [1069] = {.lex_state = 1}, + [1070] = {.lex_state = 1}, + [1071] = {.lex_state = 1}, + [1072] = {.lex_state = 1}, + [1073] = {.lex_state = 1}, + [1074] = {.lex_state = 1}, + [1075] = {.lex_state = 1}, + [1076] = {.lex_state = 1}, + [1077] = {.lex_state = 1}, + [1078] = {.lex_state = 1}, + [1079] = {.lex_state = 1}, + [1080] = {.lex_state = 1}, + [1081] = {.lex_state = 1}, + [1082] = {.lex_state = 1}, + [1083] = {.lex_state = 1}, + [1084] = {.lex_state = 1}, + [1085] = {.lex_state = 1}, + [1086] = {.lex_state = 1}, + [1087] = {.lex_state = 1}, + [1088] = {.lex_state = 1}, + [1089] = {.lex_state = 1}, + [1090] = {.lex_state = 1}, + [1091] = {.lex_state = 202}, + [1092] = {.lex_state = 206}, + [1093] = {.lex_state = 202}, + [1094] = {.lex_state = 202}, + [1095] = {.lex_state = 202}, + [1096] = {.lex_state = 203}, + [1097] = {.lex_state = 202}, + [1098] = {.lex_state = 203}, + [1099] = {.lex_state = 202}, + [1100] = {.lex_state = 202}, + [1101] = {.lex_state = 202}, + [1102] = {.lex_state = 202}, + [1103] = {.lex_state = 203}, + [1104] = {.lex_state = 210}, + [1105] = {.lex_state = 202}, + [1106] = {.lex_state = 202}, + [1107] = {.lex_state = 202}, + [1108] = {.lex_state = 81}, + [1109] = {.lex_state = 202}, + [1110] = {.lex_state = 202}, + [1111] = {.lex_state = 207}, + [1112] = {.lex_state = 81}, + [1113] = {.lex_state = 203}, + [1114] = {.lex_state = 203}, + [1115] = {.lex_state = 202}, + [1116] = {.lex_state = 202}, + [1117] = {.lex_state = 202}, + [1118] = {.lex_state = 203}, + [1119] = {.lex_state = 202}, + [1120] = {.lex_state = 206}, + [1121] = {.lex_state = 203}, + [1122] = {.lex_state = 81}, + [1123] = {.lex_state = 81}, + [1124] = {.lex_state = 202}, + [1125] = {.lex_state = 81}, + [1126] = {.lex_state = 203}, + [1127] = {.lex_state = 202}, + [1128] = {.lex_state = 214}, + [1129] = {.lex_state = 203}, + [1130] = {.lex_state = 81}, + [1131] = {.lex_state = 202}, + [1132] = {.lex_state = 202}, + [1133] = {.lex_state = 207}, + [1134] = {.lex_state = 202}, + [1135] = {.lex_state = 202}, + [1136] = {.lex_state = 202}, + [1137] = {.lex_state = 202}, + [1138] = {.lex_state = 202}, + [1139] = {.lex_state = 202}, + [1140] = {.lex_state = 81}, + [1141] = {.lex_state = 81}, + [1142] = {.lex_state = 218}, + [1143] = {.lex_state = 214}, + [1144] = {.lex_state = 202}, + [1145] = {.lex_state = 202}, + [1146] = {.lex_state = 202}, + [1147] = {.lex_state = 210}, + [1148] = {.lex_state = 202}, + [1149] = {.lex_state = 81}, + [1150] = {.lex_state = 81}, + [1151] = {.lex_state = 202}, + [1152] = {.lex_state = 202}, + [1153] = {.lex_state = 202}, + [1154] = {.lex_state = 81}, + [1155] = {.lex_state = 202}, + [1156] = {.lex_state = 202}, + [1157] = {.lex_state = 202}, + [1158] = {.lex_state = 202}, + [1159] = {.lex_state = 202}, + [1160] = {.lex_state = 202}, + [1161] = {.lex_state = 211}, + [1162] = {.lex_state = 202}, + [1163] = {.lex_state = 206}, + [1164] = {.lex_state = 202}, + [1165] = {.lex_state = 215}, + [1166] = {.lex_state = 202}, + [1167] = {.lex_state = 202}, + [1168] = {.lex_state = 202}, + [1169] = {.lex_state = 202}, + [1170] = {.lex_state = 202}, + [1171] = {.lex_state = 202}, + [1172] = {.lex_state = 202}, + [1173] = {.lex_state = 202}, + [1174] = {.lex_state = 202}, + [1175] = {.lex_state = 214}, + [1176] = {.lex_state = 202}, + [1177] = {.lex_state = 202}, + [1178] = {.lex_state = 210}, + [1179] = {.lex_state = 202}, + [1180] = {.lex_state = 202}, + [1181] = {.lex_state = 202}, + [1182] = {.lex_state = 202}, + [1183] = {.lex_state = 202}, + [1184] = {.lex_state = 202}, + [1185] = {.lex_state = 203}, + [1186] = {.lex_state = 202}, + [1187] = {.lex_state = 202}, + [1188] = {.lex_state = 202}, + [1189] = {.lex_state = 202}, + [1190] = {.lex_state = 218}, + [1191] = {.lex_state = 219}, + [1192] = {.lex_state = 202}, + [1193] = {.lex_state = 202}, + [1194] = {.lex_state = 202}, + [1195] = {.lex_state = 202}, + [1196] = {.lex_state = 203}, + [1197] = {.lex_state = 207}, + [1198] = {.lex_state = 202}, + [1199] = {.lex_state = 219}, + [1200] = {.lex_state = 202}, + [1201] = {.lex_state = 211}, + [1202] = {.lex_state = 215}, + [1203] = {.lex_state = 202}, + [1204] = {.lex_state = 202}, + [1205] = {.lex_state = 210}, + [1206] = {.lex_state = 202}, + [1207] = {.lex_state = 202}, + [1208] = {.lex_state = 210}, + [1209] = {.lex_state = 202}, + [1210] = {.lex_state = 202}, + [1211] = {.lex_state = 202}, + [1212] = {.lex_state = 202}, + [1213] = {.lex_state = 202}, + [1214] = {.lex_state = 202}, + [1215] = {.lex_state = 202}, + [1216] = {.lex_state = 202}, + [1217] = {.lex_state = 202}, + [1218] = {.lex_state = 202}, + [1219] = {.lex_state = 81}, + [1220] = {.lex_state = 219}, + [1221] = {.lex_state = 211}, + [1222] = {.lex_state = 202}, + [1223] = {.lex_state = 210}, + [1224] = {.lex_state = 202}, + [1225] = {.lex_state = 202}, + [1226] = {.lex_state = 202}, + [1227] = {.lex_state = 215}, + [1228] = {.lex_state = 81}, + [1229] = {.lex_state = 202}, + [1230] = {.lex_state = 210}, + [1231] = {.lex_state = 202}, + [1232] = {.lex_state = 218}, + [1233] = {.lex_state = 202}, + [1234] = {.lex_state = 202}, + [1235] = {.lex_state = 219}, + [1236] = {.lex_state = 202}, + [1237] = {.lex_state = 202}, + [1238] = {.lex_state = 202}, + [1239] = {.lex_state = 202}, + [1240] = {.lex_state = 202}, + [1241] = {.lex_state = 202}, + [1242] = {.lex_state = 202}, + [1243] = {.lex_state = 218}, + [1244] = {.lex_state = 202}, + [1245] = {.lex_state = 202}, + [1246] = {.lex_state = 202}, + [1247] = {.lex_state = 202}, + [1248] = {.lex_state = 202}, + [1249] = {.lex_state = 202}, + [1250] = {.lex_state = 1}, + [1251] = {.lex_state = 4}, + [1252] = {.lex_state = 202}, + [1253] = {.lex_state = 1}, + [1254] = {.lex_state = 202}, + [1255] = {.lex_state = 1}, + [1256] = {.lex_state = 1}, + [1257] = {.lex_state = 1}, + [1258] = {.lex_state = 1}, + [1259] = {.lex_state = 1}, + [1260] = {.lex_state = 1}, + [1261] = {.lex_state = 1}, + [1262] = {.lex_state = 1}, + [1263] = {.lex_state = 1}, + [1264] = {.lex_state = 1}, + [1265] = {.lex_state = 1}, + [1266] = {.lex_state = 1}, + [1267] = {.lex_state = 219}, + [1268] = {.lex_state = 4}, + [1269] = {.lex_state = 1}, + [1270] = {.lex_state = 1}, + [1271] = {.lex_state = 1}, + [1272] = {.lex_state = 1}, + [1273] = {.lex_state = 1}, + [1274] = {.lex_state = 1}, + [1275] = {.lex_state = 1}, + [1276] = {.lex_state = 1}, + [1277] = {.lex_state = 1}, + [1278] = {.lex_state = 202}, + [1279] = {.lex_state = 1}, + [1280] = {.lex_state = 202}, + [1281] = {.lex_state = 210}, + [1282] = {.lex_state = 1}, + [1283] = {.lex_state = 1}, + [1284] = {.lex_state = 1}, + [1285] = {.lex_state = 1}, + [1286] = {.lex_state = 202}, + [1287] = {.lex_state = 202}, + [1288] = {.lex_state = 1}, + [1289] = {.lex_state = 210}, + [1290] = {.lex_state = 219}, + [1291] = {.lex_state = 202}, + [1292] = {.lex_state = 202}, + [1293] = {.lex_state = 202}, + [1294] = {.lex_state = 1}, + [1295] = {.lex_state = 1}, + [1296] = {.lex_state = 202}, + [1297] = {.lex_state = 202}, + [1298] = {.lex_state = 202}, + [1299] = {.lex_state = 1}, + [1300] = {.lex_state = 202}, + [1301] = {.lex_state = 1}, + [1302] = {.lex_state = 1}, + [1303] = {.lex_state = 1}, + [1304] = {.lex_state = 1}, + [1305] = {.lex_state = 202}, + [1306] = {.lex_state = 218}, + [1307] = {.lex_state = 202}, + [1308] = {.lex_state = 1}, + [1309] = {.lex_state = 1}, + [1310] = {.lex_state = 1}, + [1311] = {.lex_state = 4}, + [1312] = {.lex_state = 1}, + [1313] = {.lex_state = 1}, + [1314] = {.lex_state = 1}, + [1315] = {.lex_state = 1}, + [1316] = {.lex_state = 1}, + [1317] = {.lex_state = 4}, + [1318] = {.lex_state = 4}, + [1319] = {.lex_state = 1}, + [1320] = {.lex_state = 1}, + [1321] = {.lex_state = 202}, + [1322] = {.lex_state = 202}, + [1323] = {.lex_state = 4}, + [1324] = {.lex_state = 4}, + [1325] = {.lex_state = 202}, + [1326] = {.lex_state = 4}, + [1327] = {.lex_state = 202}, + [1328] = {.lex_state = 1}, + [1329] = {.lex_state = 4}, + [1330] = {.lex_state = 4}, + [1331] = {.lex_state = 1}, + [1332] = {.lex_state = 202}, + [1333] = {.lex_state = 4}, + [1334] = {.lex_state = 4}, + [1335] = {.lex_state = 4}, + [1336] = {.lex_state = 1}, + [1337] = {.lex_state = 42}, + [1338] = {.lex_state = 5}, + [1339] = {.lex_state = 5}, + [1340] = {.lex_state = 5}, + [1341] = {.lex_state = 42}, + [1342] = {.lex_state = 42}, + [1343] = {.lex_state = 8}, + [1344] = {.lex_state = 8}, + [1345] = {.lex_state = 5}, + [1346] = {.lex_state = 202}, + [1347] = {.lex_state = 5}, + [1348] = {.lex_state = 202}, + [1349] = {.lex_state = 5}, + [1350] = {.lex_state = 202}, + [1351] = {.lex_state = 42}, + [1352] = {.lex_state = 5}, + [1353] = {.lex_state = 10}, + [1354] = {.lex_state = 42}, + [1355] = {.lex_state = 10}, + [1356] = {.lex_state = 5}, + [1357] = {.lex_state = 42}, + [1358] = {.lex_state = 42}, + [1359] = {.lex_state = 10}, + [1360] = {.lex_state = 42}, + [1361] = {.lex_state = 10}, + [1362] = {.lex_state = 10}, + [1363] = {.lex_state = 5}, + [1364] = {.lex_state = 10}, + [1365] = {.lex_state = 42}, + [1366] = {.lex_state = 218}, + [1367] = {.lex_state = 5}, + [1368] = {.lex_state = 42}, + [1369] = {.lex_state = 10}, + [1370] = {.lex_state = 10}, + [1371] = {.lex_state = 202}, + [1372] = {.lex_state = 10}, + [1373] = {.lex_state = 5}, + [1374] = {.lex_state = 202}, + [1375] = {.lex_state = 42}, + [1376] = {.lex_state = 10}, + [1377] = {.lex_state = 10}, + [1378] = {.lex_state = 10}, + [1379] = {.lex_state = 42}, + [1380] = {.lex_state = 42}, + [1381] = {.lex_state = 10}, + [1382] = {.lex_state = 5}, + [1383] = {.lex_state = 5}, + [1384] = {.lex_state = 11}, + [1385] = {.lex_state = 11}, + [1386] = {.lex_state = 46}, + [1387] = {.lex_state = 46}, + [1388] = {.lex_state = 11}, + [1389] = {.lex_state = 11}, + [1390] = {.lex_state = 11}, + [1391] = {.lex_state = 48}, + [1392] = {.lex_state = 9}, + [1393] = {.lex_state = 11}, + [1394] = {.lex_state = 11}, + [1395] = {.lex_state = 15}, + [1396] = {.lex_state = 1}, + [1397] = {.lex_state = 11}, + [1398] = {.lex_state = 43}, + [1399] = {.lex_state = 48}, + [1400] = {.lex_state = 43}, + [1401] = {.lex_state = 43}, + [1402] = {.lex_state = 43}, + [1403] = {.lex_state = 43}, + [1404] = {.lex_state = 43}, + [1405] = {.lex_state = 43}, + [1406] = {.lex_state = 43}, + [1407] = {.lex_state = 43}, + [1408] = {.lex_state = 43}, + [1409] = {.lex_state = 43}, + [1410] = {.lex_state = 43}, + [1411] = {.lex_state = 48}, + [1412] = {.lex_state = 48}, + [1413] = {.lex_state = 48}, + [1414] = {.lex_state = 15}, + [1415] = {.lex_state = 9}, + [1416] = {.lex_state = 11}, + [1417] = {.lex_state = 48}, + [1418] = {.lex_state = 48}, + [1419] = {.lex_state = 11}, + [1420] = {.lex_state = 48}, + [1421] = {.lex_state = 48}, + [1422] = {.lex_state = 48}, + [1423] = {.lex_state = 11}, + [1424] = {.lex_state = 43}, + [1425] = {.lex_state = 48}, + [1426] = {.lex_state = 48}, + [1427] = {.lex_state = 11}, + [1428] = {.lex_state = 11}, + [1429] = {.lex_state = 48}, + [1430] = {.lex_state = 1}, + [1431] = {.lex_state = 12}, + [1432] = {.lex_state = 32}, + [1433] = {.lex_state = 202}, + [1434] = {.lex_state = 202}, + [1435] = {.lex_state = 202}, + [1436] = {.lex_state = 202}, + [1437] = {.lex_state = 202}, + [1438] = {.lex_state = 202}, + [1439] = {.lex_state = 12}, + [1440] = {.lex_state = 12}, + [1441] = {.lex_state = 12}, + [1442] = {.lex_state = 12}, + [1443] = {.lex_state = 12}, + [1444] = {.lex_state = 12}, + [1445] = {.lex_state = 12}, + [1446] = {.lex_state = 12}, + [1447] = {.lex_state = 12}, + [1448] = {.lex_state = 49}, + [1449] = {.lex_state = 49}, + [1450] = {.lex_state = 49}, + [1451] = {.lex_state = 49}, + [1452] = {.lex_state = 12}, + [1453] = {.lex_state = 49}, + [1454] = {.lex_state = 49}, + [1455] = {.lex_state = 12}, + [1456] = {.lex_state = 49}, + [1457] = {.lex_state = 49}, + [1458] = {.lex_state = 49}, + [1459] = {.lex_state = 49}, + [1460] = {.lex_state = 49}, + [1461] = {.lex_state = 12}, + [1462] = {.lex_state = 49}, + [1463] = {.lex_state = 53}, + [1464] = {.lex_state = 49}, + [1465] = {.lex_state = 33}, + [1466] = {.lex_state = 53}, + [1467] = {.lex_state = 33}, + [1468] = {.lex_state = 33}, + [1469] = {.lex_state = 33}, + [1470] = {.lex_state = 33}, + [1471] = {.lex_state = 33}, + [1472] = {.lex_state = 33}, + [1473] = {.lex_state = 33}, + [1474] = {.lex_state = 33}, + [1475] = {.lex_state = 33}, + [1476] = {.lex_state = 33}, + [1477] = {.lex_state = 31}, + [1478] = {.lex_state = 16}, + [1479] = {.lex_state = 31}, + [1480] = {.lex_state = 31}, + [1481] = {.lex_state = 31}, + [1482] = {.lex_state = 31}, + [1483] = {.lex_state = 31}, + [1484] = {.lex_state = 31}, + [1485] = {.lex_state = 16}, + [1486] = {.lex_state = 32}, + [1487] = {.lex_state = 31}, + [1488] = {.lex_state = 32}, + [1489] = {.lex_state = 47}, + [1490] = {.lex_state = 30}, + [1491] = {.lex_state = 30}, + [1492] = {.lex_state = 32}, + [1493] = {.lex_state = 32}, + [1494] = {.lex_state = 33}, + [1495] = {.lex_state = 32}, + [1496] = {.lex_state = 31}, + [1497] = {.lex_state = 31}, + [1498] = {.lex_state = 47}, + [1499] = {.lex_state = 30}, + [1500] = {.lex_state = 30}, + [1501] = {.lex_state = 30}, + [1502] = {.lex_state = 32}, + [1503] = {.lex_state = 32}, + [1504] = {.lex_state = 30}, + [1505] = {.lex_state = 31}, + [1506] = {.lex_state = 31}, + [1507] = {.lex_state = 33}, + [1508] = {.lex_state = 30}, + [1509] = {.lex_state = 30}, + [1510] = {.lex_state = 32}, + [1511] = {.lex_state = 30}, + [1512] = {.lex_state = 32}, + [1513] = {.lex_state = 30}, + [1514] = {.lex_state = 30}, + [1515] = {.lex_state = 30}, + [1516] = {.lex_state = 32}, + [1517] = {.lex_state = 32}, + [1518] = {.lex_state = 30}, + [1519] = {.lex_state = 32}, + [1520] = {.lex_state = 31}, + [1521] = {.lex_state = 80}, + [1522] = {.lex_state = 71}, + [1523] = {.lex_state = 80}, + [1524] = {.lex_state = 80}, + [1525] = {.lex_state = 38}, + [1526] = {.lex_state = 80}, + [1527] = {.lex_state = 80}, + [1528] = {.lex_state = 39}, + [1529] = {.lex_state = 80}, + [1530] = {.lex_state = 80}, + [1531] = {.lex_state = 80}, + [1532] = {.lex_state = 68}, + [1533] = {.lex_state = 80}, + [1534] = {.lex_state = 41}, + [1535] = {.lex_state = 80}, + [1536] = {.lex_state = 80}, + [1537] = {.lex_state = 80}, + [1538] = {.lex_state = 80}, + [1539] = {.lex_state = 80}, + [1540] = {.lex_state = 80}, + [1541] = {.lex_state = 80}, + [1542] = {.lex_state = 80}, + [1543] = {.lex_state = 202}, + [1544] = {.lex_state = 80}, + [1545] = {.lex_state = 80}, + [1546] = {.lex_state = 38}, + [1547] = {.lex_state = 80}, + [1548] = {.lex_state = 40}, + [1549] = {.lex_state = 80}, + [1550] = {.lex_state = 80}, + [1551] = {.lex_state = 80}, + [1552] = {.lex_state = 80}, + [1553] = {.lex_state = 80}, + [1554] = {.lex_state = 70}, + [1555] = {.lex_state = 50}, + [1556] = {.lex_state = 80}, + [1557] = {.lex_state = 80}, + [1558] = {.lex_state = 80}, + [1559] = {.lex_state = 50}, + [1560] = {.lex_state = 80}, + [1561] = {.lex_state = 80}, + [1562] = {.lex_state = 80}, + [1563] = {.lex_state = 80}, + [1564] = {.lex_state = 68}, + [1565] = {.lex_state = 80}, + [1566] = {.lex_state = 80}, + [1567] = {.lex_state = 68}, + [1568] = {.lex_state = 71}, + [1569] = {.lex_state = 80}, + [1570] = {.lex_state = 80}, + [1571] = {.lex_state = 80}, + [1572] = {.lex_state = 80}, + [1573] = {.lex_state = 39}, + [1574] = {.lex_state = 80}, + [1575] = {.lex_state = 80}, + [1576] = {.lex_state = 68}, + [1577] = {.lex_state = 80}, + [1578] = {.lex_state = 80}, + [1579] = {.lex_state = 50}, + [1580] = {.lex_state = 50}, + [1581] = {.lex_state = 68}, + [1582] = {.lex_state = 80}, + [1583] = {.lex_state = 40}, + [1584] = {.lex_state = 80}, + [1585] = {.lex_state = 50}, + [1586] = {.lex_state = 80}, + [1587] = {.lex_state = 41}, + [1588] = {.lex_state = 80}, + [1589] = {.lex_state = 50}, + [1590] = {.lex_state = 70}, + [1591] = {.lex_state = 80}, + [1592] = {.lex_state = 80}, + [1593] = {.lex_state = 80}, + [1594] = {.lex_state = 80}, + [1595] = {.lex_state = 68}, + [1596] = {.lex_state = 80}, + [1597] = {.lex_state = 80}, + [1598] = {.lex_state = 50}, + [1599] = {.lex_state = 50}, + [1600] = {.lex_state = 68}, + [1601] = {.lex_state = 80}, + [1602] = {.lex_state = 80}, + [1603] = {.lex_state = 50}, + [1604] = {.lex_state = 50}, + [1605] = {.lex_state = 80}, + [1606] = {.lex_state = 50}, + [1607] = {.lex_state = 80}, + [1608] = {.lex_state = 50}, + [1609] = {.lex_state = 80}, + [1610] = {.lex_state = 80}, + [1611] = {.lex_state = 54}, + [1612] = {.lex_state = 80}, + [1613] = {.lex_state = 80}, + [1614] = {.lex_state = 80}, + [1615] = {.lex_state = 80}, + [1616] = {.lex_state = 1}, + [1617] = {.lex_state = 17}, + [1618] = {.lex_state = 71}, + [1619] = {.lex_state = 71}, + [1620] = {.lex_state = 80}, + [1621] = {.lex_state = 70}, + [1622] = {.lex_state = 80}, + [1623] = {.lex_state = 69}, + [1624] = {.lex_state = 71}, + [1625] = {.lex_state = 69}, + [1626] = {.lex_state = 80}, + [1627] = {.lex_state = 71}, + [1628] = {.lex_state = 80}, + [1629] = {.lex_state = 80}, + [1630] = {.lex_state = 80}, + [1631] = {.lex_state = 68}, + [1632] = {.lex_state = 80}, + [1633] = {.lex_state = 80}, + [1634] = {.lex_state = 71}, + [1635] = {.lex_state = 80}, + [1636] = {.lex_state = 80}, + [1637] = {.lex_state = 50}, + [1638] = {.lex_state = 71}, + [1639] = {.lex_state = 68}, + [1640] = {.lex_state = 71}, + [1641] = {.lex_state = 71}, + [1642] = {.lex_state = 68}, + [1643] = {.lex_state = 71}, + [1644] = {.lex_state = 70}, + [1645] = {.lex_state = 70}, + [1646] = {.lex_state = 69}, + [1647] = {.lex_state = 80}, + [1648] = {.lex_state = 80}, + [1649] = {.lex_state = 80}, + [1650] = {.lex_state = 71}, + [1651] = {.lex_state = 80}, + [1652] = {.lex_state = 80}, + [1653] = {.lex_state = 69}, + [1654] = {.lex_state = 54}, + [1655] = {.lex_state = 80}, + [1656] = {.lex_state = 80}, + [1657] = {.lex_state = 80}, + [1658] = {.lex_state = 80}, + [1659] = {.lex_state = 69}, + [1660] = {.lex_state = 80}, + [1661] = {.lex_state = 69}, + [1662] = {.lex_state = 69}, + [1663] = {.lex_state = 69}, + [1664] = {.lex_state = 69}, + [1665] = {.lex_state = 80}, + [1666] = {.lex_state = 80}, + [1667] = {.lex_state = 80}, + [1668] = {.lex_state = 71}, + [1669] = {.lex_state = 69}, + [1670] = {.lex_state = 69}, + [1671] = {.lex_state = 70}, + [1672] = {.lex_state = 80}, + [1673] = {.lex_state = 80}, + [1674] = {.lex_state = 70}, + [1675] = {.lex_state = 70}, + [1676] = {.lex_state = 80}, + [1677] = {.lex_state = 70}, + [1678] = {.lex_state = 70}, + [1679] = {.lex_state = 80}, + [1680] = {.lex_state = 80}, + [1681] = {.lex_state = 70}, + [1682] = {.lex_state = 80}, + [1683] = {.lex_state = 17}, + [1684] = {.lex_state = 80}, + [1685] = {.lex_state = 70}, + [1686] = {.lex_state = 69}, + [1687] = {.lex_state = 80}, + [1688] = {.lex_state = 70}, + [1689] = {.lex_state = 80}, + [1690] = {.lex_state = 69}, + [1691] = {.lex_state = 68}, + [1692] = {.lex_state = 68}, + [1693] = {.lex_state = 68}, + [1694] = {.lex_state = 80}, + [1695] = {.lex_state = 80}, + [1696] = {.lex_state = 80}, + [1697] = {.lex_state = 78}, + [1698] = {.lex_state = 79}, + [1699] = {.lex_state = 76}, + [1700] = {.lex_state = 202}, + [1701] = {.lex_state = 76}, + [1702] = {.lex_state = 77}, + [1703] = {.lex_state = 202}, + [1704] = {.lex_state = 55}, + [1705] = {.lex_state = 78}, + [1706] = {.lex_state = 202}, + [1707] = {.lex_state = 79}, + [1708] = {.lex_state = 77}, + [1709] = {.lex_state = 202}, + [1710] = {.lex_state = 55}, + [1711] = {.lex_state = 1}, + [1712] = {.lex_state = 1}, + [1713] = {.lex_state = 1}, + [1714] = {.lex_state = 1}, + [1715] = {.lex_state = 202}, + [1716] = {.lex_state = 1}, + [1717] = {.lex_state = 1}, + [1718] = {.lex_state = 202}, + [1719] = {.lex_state = 202}, + [1720] = {.lex_state = 1}, + [1721] = {.lex_state = 1}, + [1722] = {.lex_state = 1}, + [1723] = {.lex_state = 202}, + [1724] = {.lex_state = 202}, + [1725] = {.lex_state = 202}, + [1726] = {.lex_state = 1}, + [1727] = {.lex_state = 202}, + [1728] = {.lex_state = 202}, + [1729] = {.lex_state = 1}, + [1730] = {.lex_state = 1}, + [1731] = {.lex_state = 202}, + [1732] = {.lex_state = 1}, + [1733] = {.lex_state = 1}, + [1734] = {.lex_state = 202}, + [1735] = {.lex_state = 1}, + [1736] = {.lex_state = 1}, + [1737] = {.lex_state = 1}, + [1738] = {.lex_state = 1}, + [1739] = {.lex_state = 1}, + [1740] = {.lex_state = 202}, + [1741] = {.lex_state = 1}, + [1742] = {.lex_state = 202}, + [1743] = {.lex_state = 1}, + [1744] = {.lex_state = 1}, + [1745] = {.lex_state = 1}, + [1746] = {.lex_state = 1}, + [1747] = {.lex_state = 1}, + [1748] = {.lex_state = 202}, + [1749] = {.lex_state = 1}, + [1750] = {.lex_state = 202}, + [1751] = {.lex_state = 1}, + [1752] = {.lex_state = 1}, + [1753] = {.lex_state = 1}, + [1754] = {.lex_state = 202}, + [1755] = {.lex_state = 1}, + [1756] = {.lex_state = 1}, + [1757] = {.lex_state = 1}, + [1758] = {.lex_state = 1}, + [1759] = {.lex_state = 202}, + [1760] = {.lex_state = 1}, + [1761] = {.lex_state = 1}, + [1762] = {.lex_state = 1}, + [1763] = {.lex_state = 202}, + [1764] = {.lex_state = 202}, + [1765] = {.lex_state = 202}, + [1766] = {.lex_state = 202}, + [1767] = {.lex_state = 1}, + [1768] = {.lex_state = 202}, + [1769] = {.lex_state = 202}, + [1770] = {.lex_state = 202}, + [1771] = {.lex_state = 202}, + [1772] = {.lex_state = 202}, + [1773] = {.lex_state = 202}, + [1774] = {.lex_state = 202}, + [1775] = {.lex_state = 202}, + [1776] = {.lex_state = 202}, + [1777] = {.lex_state = 202}, + [1778] = {.lex_state = 202}, + [1779] = {.lex_state = 202}, + [1780] = {.lex_state = 202}, + [1781] = {.lex_state = 202}, + [1782] = {.lex_state = 202}, + [1783] = {.lex_state = 202}, + [1784] = {.lex_state = 202}, + [1785] = {.lex_state = 202}, + [1786] = {.lex_state = 202}, + [1787] = {.lex_state = 202}, + [1788] = {.lex_state = 84}, + [1789] = {.lex_state = 202}, + [1790] = {.lex_state = 202}, + [1791] = {.lex_state = 202}, + [1792] = {.lex_state = 202}, + [1793] = {.lex_state = 202}, + [1794] = {.lex_state = 202}, + [1795] = {.lex_state = 202}, + [1796] = {.lex_state = 202}, + [1797] = {.lex_state = 202}, + [1798] = {.lex_state = 202}, + [1799] = {.lex_state = 202}, + [1800] = {.lex_state = 202}, + [1801] = {.lex_state = 202}, + [1802] = {.lex_state = 202}, + [1803] = {.lex_state = 202}, + [1804] = {.lex_state = 202}, + [1805] = {.lex_state = 202}, + [1806] = {.lex_state = 0}, + [1807] = {.lex_state = 202}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 202}, + [1810] = {.lex_state = 1}, + [1811] = {.lex_state = 202}, + [1812] = {.lex_state = 202}, + [1813] = {.lex_state = 80}, + [1814] = {.lex_state = 202}, + [1815] = {.lex_state = 202}, + [1816] = {.lex_state = 6}, + [1817] = {.lex_state = 1}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 1}, + [1820] = {.lex_state = 202}, + [1821] = {.lex_state = 202}, + [1822] = {.lex_state = 1}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 1}, + [1825] = {.lex_state = 1}, + [1826] = {.lex_state = 1}, + [1827] = {.lex_state = 1}, + [1828] = {.lex_state = 7}, + [1829] = {.lex_state = 1}, + [1830] = {.lex_state = 202}, + [1831] = {.lex_state = 1}, + [1832] = {.lex_state = 1}, + [1833] = {.lex_state = 1}, + [1834] = {.lex_state = 202}, + [1835] = {.lex_state = 202}, + [1836] = {.lex_state = 1}, + [1837] = {.lex_state = 1}, + [1838] = {.lex_state = 1}, + [1839] = {.lex_state = 210}, + [1840] = {.lex_state = 1}, + [1841] = {.lex_state = 1}, + [1842] = {.lex_state = 1}, + [1843] = {.lex_state = 1}, + [1844] = {.lex_state = 1}, + [1845] = {.lex_state = 1}, + [1846] = {.lex_state = 202}, + [1847] = {.lex_state = 1}, + [1848] = {.lex_state = 1}, + [1849] = {.lex_state = 1}, + [1850] = {.lex_state = 1}, + [1851] = {.lex_state = 202}, + [1852] = {.lex_state = 202}, + [1853] = {.lex_state = 1}, + [1854] = {.lex_state = 1}, + [1855] = {.lex_state = 1}, + [1856] = {.lex_state = 1}, + [1857] = {.lex_state = 1}, + [1858] = {.lex_state = 1}, + [1859] = {.lex_state = 1}, + [1860] = {.lex_state = 1}, + [1861] = {.lex_state = 1}, + [1862] = {.lex_state = 202}, + [1863] = {.lex_state = 202}, + [1864] = {.lex_state = 1}, + [1865] = {.lex_state = 202}, + [1866] = {.lex_state = 202}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 1}, + [1870] = {.lex_state = 1}, + [1871] = {.lex_state = 1}, + [1872] = {.lex_state = 1}, + [1873] = {.lex_state = 1}, + [1874] = {.lex_state = 1}, + [1875] = {.lex_state = 1}, + [1876] = {.lex_state = 1}, + [1877] = {.lex_state = 1}, + [1878] = {.lex_state = 202}, + [1879] = {.lex_state = 1}, + [1880] = {.lex_state = 1}, + [1881] = {.lex_state = 202}, + [1882] = {.lex_state = 1}, + [1883] = {.lex_state = 1}, + [1884] = {.lex_state = 1}, + [1885] = {.lex_state = 202}, + [1886] = {.lex_state = 1}, + [1887] = {.lex_state = 1}, + [1888] = {.lex_state = 1}, + [1889] = {.lex_state = 1}, + [1890] = {.lex_state = 1}, + [1891] = {.lex_state = 202}, + [1892] = {.lex_state = 202}, + [1893] = {.lex_state = 1}, + [1894] = {.lex_state = 44}, + [1895] = {.lex_state = 202}, + [1896] = {.lex_state = 202}, + [1897] = {.lex_state = 1}, + [1898] = {.lex_state = 202}, + [1899] = {.lex_state = 202}, + [1900] = {.lex_state = 202}, + [1901] = {.lex_state = 1}, + [1902] = {.lex_state = 1}, + [1903] = {.lex_state = 1}, + [1904] = {.lex_state = 202}, + [1905] = {.lex_state = 1}, + [1906] = {.lex_state = 202}, + [1907] = {.lex_state = 1}, + [1908] = {.lex_state = 1}, + [1909] = {.lex_state = 202}, + [1910] = {.lex_state = 202}, + [1911] = {.lex_state = 202}, + [1912] = {.lex_state = 202}, + [1913] = {.lex_state = 1}, + [1914] = {.lex_state = 202}, + [1915] = {.lex_state = 1}, + [1916] = {.lex_state = 1}, + [1917] = {.lex_state = 202}, + [1918] = {.lex_state = 1}, + [1919] = {.lex_state = 202}, + [1920] = {.lex_state = 1}, + [1921] = {.lex_state = 1}, + [1922] = {.lex_state = 1}, + [1923] = {.lex_state = 1}, + [1924] = {.lex_state = 1}, + [1925] = {.lex_state = 1}, + [1926] = {.lex_state = 202}, + [1927] = {.lex_state = 1}, + [1928] = {.lex_state = 202}, + [1929] = {.lex_state = 202}, + [1930] = {.lex_state = 1}, + [1931] = {.lex_state = 1}, + [1932] = {.lex_state = 1}, + [1933] = {.lex_state = 1}, + [1934] = {.lex_state = 202}, + [1935] = {.lex_state = 1}, + [1936] = {.lex_state = 1}, + [1937] = {.lex_state = 1}, + [1938] = {.lex_state = 202}, + [1939] = {.lex_state = 14}, + [1940] = {.lex_state = 202}, + [1941] = {.lex_state = 1}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 45}, + [1944] = {.lex_state = 1}, + [1945] = {.lex_state = 218}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 202}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 202}, + [1950] = {.lex_state = 1}, + [1951] = {.lex_state = 202}, + [1952] = {.lex_state = 202}, + [1953] = {.lex_state = 1}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 202}, + [1958] = {.lex_state = 1}, + [1959] = {.lex_state = 1}, + [1960] = {.lex_state = 1}, + [1961] = {.lex_state = 0}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 0}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 1}, + [1968] = {.lex_state = 1}, + [1969] = {.lex_state = 1}, + [1970] = {.lex_state = 1}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 1}, + [1973] = {.lex_state = 1}, + [1974] = {.lex_state = 1}, + [1975] = {.lex_state = 202}, + [1976] = {.lex_state = 13}, + [1977] = {.lex_state = 210}, + [1978] = {.lex_state = 202}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 52}, + [1984] = {.lex_state = 202}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 202}, + [1987] = {.lex_state = 202}, + [1988] = {.lex_state = 202}, + [1989] = {.lex_state = 0}, + [1990] = {.lex_state = 202}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 0}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 202}, + [1995] = {.lex_state = 202}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 210}, + [1998] = {.lex_state = 52}, + [1999] = {.lex_state = 202}, + [2000] = {.lex_state = 0}, + [2001] = {.lex_state = 210}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 202}, + [2005] = {.lex_state = 0}, + [2006] = {.lex_state = 202}, + [2007] = {.lex_state = 0}, + [2008] = {.lex_state = 202}, + [2009] = {.lex_state = 202}, + [2010] = {.lex_state = 202}, + [2011] = {.lex_state = 0}, + [2012] = {.lex_state = 202}, + [2013] = {.lex_state = 210}, + [2014] = {.lex_state = 202}, + [2015] = {.lex_state = 202}, + [2016] = {.lex_state = 13}, + [2017] = {.lex_state = 0}, + [2018] = {.lex_state = 202}, + [2019] = {.lex_state = 202}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 0}, + [2022] = {.lex_state = 1}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 1}, + [2026] = {.lex_state = 1}, + [2027] = {.lex_state = 202}, + [2028] = {.lex_state = 1}, + [2029] = {.lex_state = 218}, + [2030] = {.lex_state = 218}, + [2031] = {.lex_state = 1}, + [2032] = {.lex_state = 1}, + [2033] = {.lex_state = 202}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 1}, + [2037] = {.lex_state = 1}, + [2038] = {.lex_state = 1}, + [2039] = {.lex_state = 1}, + [2040] = {.lex_state = 218}, + [2041] = {.lex_state = 1}, + [2042] = {.lex_state = 218}, + [2043] = {.lex_state = 202}, + [2044] = {.lex_state = 51}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 80}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 0}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 80}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 0}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 80}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 0}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 80}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 1}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 80}, + [2077] = {.lex_state = 0}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 0}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 80}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 80}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 80}, + [2090] = {.lex_state = 0}, + [2091] = {.lex_state = 0}, + [2092] = {.lex_state = 0}, + [2093] = {.lex_state = 0}, + [2094] = {.lex_state = 202}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 80}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 0}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 80}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 0}, + [2107] = {.lex_state = 0}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 80}, + [2111] = {.lex_state = 0}, + [2112] = {.lex_state = 80}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 0}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 80}, + [2118] = {.lex_state = 0}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 80}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 1}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 80}, + [2131] = {.lex_state = 0}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 80}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 0}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 0}, + [2148] = {.lex_state = 0}, + [2149] = {.lex_state = 80}, + [2150] = {.lex_state = 0}, + [2151] = {.lex_state = 529}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 0}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 80}, + [2158] = {.lex_state = 0}, + [2159] = {.lex_state = 80}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 86}, + [2162] = {.lex_state = 202}, + [2163] = {.lex_state = 202}, + [2164] = {.lex_state = 0}, + [2165] = {.lex_state = 0}, + [2166] = {.lex_state = 80}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 202}, + [2169] = {.lex_state = 0}, + [2170] = {.lex_state = 202}, + [2171] = {.lex_state = 202}, + [2172] = {.lex_state = 202}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 529}, + [2175] = {.lex_state = 202}, + [2176] = {.lex_state = 202}, + [2177] = {.lex_state = 202}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 86}, + [2180] = {.lex_state = 202}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 0}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 80}, + [2185] = {.lex_state = 0}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 202}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 529}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 86}, + [2195] = {.lex_state = 202}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 80}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 202}, + [2201] = {.lex_state = 529}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 86}, + [2204] = {.lex_state = 202}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 529}, + [2208] = {.lex_state = 0}, + [2209] = {.lex_state = 86}, + [2210] = {.lex_state = 0}, + [2211] = {.lex_state = 80}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 529}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 86}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 529}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 86}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 80}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 529}, + [2226] = {.lex_state = 86}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 529}, + [2231] = {.lex_state = 86}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 529}, + [2236] = {.lex_state = 86}, + [2237] = {.lex_state = 80}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 529}, + [2241] = {.lex_state = 86}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 529}, + [2246] = {.lex_state = 86}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 529}, + [2251] = {.lex_state = 86}, + [2252] = {.lex_state = 80}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 529}, + [2256] = {.lex_state = 86}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 0}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 529}, + [2261] = {.lex_state = 86}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 80}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 529}, + [2266] = {.lex_state = 86}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 0}, + [2270] = {.lex_state = 529}, + [2271] = {.lex_state = 86}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 529}, + [2276] = {.lex_state = 86}, + [2277] = {.lex_state = 0}, + [2278] = {.lex_state = 80}, + [2279] = {.lex_state = 0}, + [2280] = {.lex_state = 529}, + [2281] = {.lex_state = 86}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 0}, + [2285] = {.lex_state = 529}, + [2286] = {.lex_state = 86}, + [2287] = {.lex_state = 0}, + [2288] = {.lex_state = 86}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 529}, + [2291] = {.lex_state = 86}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 0}, + [2294] = {.lex_state = 0}, + [2295] = {.lex_state = 529}, + [2296] = {.lex_state = 86}, + [2297] = {.lex_state = 80}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 529}, + [2301] = {.lex_state = 86}, + [2302] = {.lex_state = 0}, + [2303] = {.lex_state = 0}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 529}, + [2306] = {.lex_state = 86}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 529}, + [2309] = {.lex_state = 86}, + [2310] = {.lex_state = 80}, + [2311] = {.lex_state = 529}, + [2312] = {.lex_state = 86}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 529}, + [2315] = {.lex_state = 86}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 529}, + [2318] = {.lex_state = 86}, + [2319] = {.lex_state = 0}, + [2320] = {.lex_state = 529}, + [2321] = {.lex_state = 86}, + [2322] = {.lex_state = 1}, + [2323] = {.lex_state = 529}, + [2324] = {.lex_state = 86}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 529}, + [2327] = {.lex_state = 86}, + [2328] = {.lex_state = 0}, + [2329] = {.lex_state = 529}, + [2330] = {.lex_state = 86}, + [2331] = {.lex_state = 0}, + [2332] = {.lex_state = 529}, + [2333] = {.lex_state = 86}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 529}, + [2336] = {.lex_state = 86}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 529}, + [2339] = {.lex_state = 86}, + [2340] = {.lex_state = 80}, + [2341] = {.lex_state = 529}, + [2342] = {.lex_state = 86}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 529}, + [2345] = {.lex_state = 86}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 529}, + [2348] = {.lex_state = 86}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 529}, + [2351] = {.lex_state = 86}, + [2352] = {.lex_state = 0}, + [2353] = {.lex_state = 529}, + [2354] = {.lex_state = 86}, + [2355] = {.lex_state = 80}, + [2356] = {.lex_state = 529}, + [2357] = {.lex_state = 86}, + [2358] = {.lex_state = 0}, + [2359] = {.lex_state = 529}, + [2360] = {.lex_state = 86}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 529}, + [2363] = {.lex_state = 86}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 529}, + [2366] = {.lex_state = 86}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 529}, + [2369] = {.lex_state = 86}, + [2370] = {.lex_state = 0}, + [2371] = {.lex_state = 529}, + [2372] = {.lex_state = 86}, + [2373] = {.lex_state = 80}, + [2374] = {.lex_state = 529}, + [2375] = {.lex_state = 86}, + [2376] = {.lex_state = 0}, + [2377] = {.lex_state = 529}, + [2378] = {.lex_state = 86}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 0}, + [2381] = {.lex_state = 0}, + [2382] = {.lex_state = 80}, + [2383] = {.lex_state = 0}, + [2384] = {.lex_state = 0}, + [2385] = {.lex_state = 0}, + [2386] = {.lex_state = 0}, + [2387] = {.lex_state = 202}, + [2388] = {.lex_state = 202}, + [2389] = {.lex_state = 1}, + [2390] = {.lex_state = 0}, + [2391] = {.lex_state = 0}, + [2392] = {.lex_state = 80}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 202}, + [2398] = {.lex_state = 202}, + [2399] = {.lex_state = 1}, + [2400] = {.lex_state = 0}, + [2401] = {.lex_state = 80}, + [2402] = {.lex_state = 0}, + [2403] = {.lex_state = 0}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 202}, + [2406] = {.lex_state = 1}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 80}, + [2409] = {.lex_state = 202}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 1}, + [2412] = {.lex_state = 0}, + [2413] = {.lex_state = 0}, + [2414] = {.lex_state = 1}, + [2415] = {.lex_state = 0}, + [2416] = {.lex_state = 80}, + [2417] = {.lex_state = 1}, + [2418] = {.lex_state = 0}, + [2419] = {.lex_state = 0}, + [2420] = {.lex_state = 1}, + [2421] = {.lex_state = 0}, + [2422] = {.lex_state = 0}, + [2423] = {.lex_state = 1}, + [2424] = {.lex_state = 0}, + [2425] = {.lex_state = 0}, + [2426] = {.lex_state = 1}, + [2427] = {.lex_state = 0}, + [2428] = {.lex_state = 80}, + [2429] = {.lex_state = 1}, + [2430] = {.lex_state = 0}, + [2431] = {.lex_state = 0}, + [2432] = {.lex_state = 1}, + [2433] = {.lex_state = 0}, + [2434] = {.lex_state = 0}, + [2435] = {.lex_state = 1}, + [2436] = {.lex_state = 0}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 1}, + [2439] = {.lex_state = 0}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 1}, + [2442] = {.lex_state = 80}, + [2443] = {.lex_state = 51}, + [2444] = {.lex_state = 1}, + [2445] = {.lex_state = 0}, + [2446] = {.lex_state = 0}, + [2447] = {.lex_state = 1}, + [2448] = {.lex_state = 529}, + [2449] = {.lex_state = 0}, + [2450] = {.lex_state = 1}, + [2451] = {.lex_state = 0}, + [2452] = {.lex_state = 0}, + [2453] = {.lex_state = 1}, + [2454] = {.lex_state = 0}, + [2455] = {.lex_state = 0}, + [2456] = {.lex_state = 1}, + [2457] = {.lex_state = 0}, + [2458] = {.lex_state = 0}, + [2459] = {.lex_state = 1}, + [2460] = {.lex_state = 80}, + [2461] = {.lex_state = 0}, + [2462] = {.lex_state = 1}, + [2463] = {.lex_state = 0}, + [2464] = {.lex_state = 0}, + [2465] = {.lex_state = 1}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 80}, + [2468] = {.lex_state = 1}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 202}, + [2472] = {.lex_state = 1}, + [2473] = {.lex_state = 0}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 0}, + [2476] = {.lex_state = 1}, + [2477] = {.lex_state = 0}, + [2478] = {.lex_state = 80}, + [2479] = {.lex_state = 0}, + [2480] = {.lex_state = 0}, + [2481] = {.lex_state = 0}, + [2482] = {.lex_state = 0}, + [2483] = {.lex_state = 0}, + [2484] = {.lex_state = 0}, + [2485] = {.lex_state = 80}, + [2486] = {.lex_state = 0}, + [2487] = {.lex_state = 0}, + [2488] = {.lex_state = 0}, + [2489] = {.lex_state = 0}, + [2490] = {.lex_state = 0}, + [2491] = {.lex_state = 80}, + [2492] = {.lex_state = 0}, + [2493] = {.lex_state = 0}, + [2494] = {.lex_state = 0}, + [2495] = {.lex_state = 0}, + [2496] = {.lex_state = 202}, + [2497] = {.lex_state = 80}, + [2498] = {.lex_state = 0}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 0}, + [2501] = {.lex_state = 202}, + [2502] = {.lex_state = 0}, + [2503] = {.lex_state = 80}, + [2504] = {.lex_state = 202}, + [2505] = {.lex_state = 202}, + [2506] = {.lex_state = 0}, + [2507] = {.lex_state = 0}, + [2508] = {.lex_state = 0}, + [2509] = {.lex_state = 0}, + [2510] = {.lex_state = 0}, + [2511] = {.lex_state = 202}, + [2512] = {.lex_state = 0}, + [2513] = {.lex_state = 80}, + [2514] = {.lex_state = 202}, + [2515] = {.lex_state = 202}, + [2516] = {.lex_state = 0}, + [2517] = {.lex_state = 0}, + [2518] = {.lex_state = 202}, + [2519] = {.lex_state = 202}, + [2520] = {.lex_state = 80}, + [2521] = {.lex_state = 0}, + [2522] = {.lex_state = 0}, + [2523] = {.lex_state = 0}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_namespace] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_partition] = ACTIONS(1), + [anon_sym_TEST] = ACTIONS(1), + [anon_sym_INTERFACE] = ACTIONS(1), + [anon_sym_CORE] = ACTIONS(1), + [anon_sym_LIB] = ACTIONS(1), + [anon_sym_MODULE] = ACTIONS(1), + [anon_sym_EXE] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_alias] = ACTIONS(1), + [anon_sym_decl] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_def] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_typeclass] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_then] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_loop] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(3), + [anon_sym__] = ACTIONS(1), + [sym_typeclass_identifier] = ACTIONS(1), + [sym_type_identifier] = ACTIONS(1), + [sym_abstract_type_identifier] = ACTIONS(1), + [sym_float_number_literal] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + }, + [1] = { + [sym_source_file] = STATE(2487), + [sym_source_statement] = STATE(567), + [sym_namespace] = STATE(1278), + [sym_partition] = STATE(567), + [sym_import_statement] = STATE(1278), + [sym_usage_definition] = STATE(1278), + [sym_alias_definition] = STATE(1278), + [sym_variable_definition] = STATE(1278), + [sym__function_declaration_statement] = STATE(1278), + [sym_function_definition] = STATE(1278), + [sym_alias_type_definition] = STATE(1278), + [sym_type_definition] = STATE(1278), + [sym_typeclass_definition] = STATE(1278), + [aux_sym_source_file_repeat1] = STATE(567), + [anon_sym_namespace] = ACTIONS(7), + [anon_sym_const] = ACTIONS(9), + [anon_sym_var] = ACTIONS(9), + [anon_sym_partition] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_use] = ACTIONS(15), + [anon_sym_alias] = ACTIONS(17), + [anon_sym_decl] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_class] = ACTIONS(25), + [anon_sym_typeclass] = ACTIONS(27), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2048), 1, + sym_parametrized_type, + STATE(2081), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [146] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2062), 1, + sym_superexpression, + STATE(2155), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [292] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2393), 1, + sym_superexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [438] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + STATE(2516), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [584] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2439), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + STATE(2479), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [730] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2126), 1, + sym_parametrized_type, + STATE(2143), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [876] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2069), 1, + sym_superexpression, + STATE(2080), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1022] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2055), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1168] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + STATE(2517), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1314] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2106), 1, + sym_parametrized_type, + STATE(2140), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1460] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2109), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1606] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2099), 1, + sym_parametrized_type, + STATE(2139), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1752] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2486), 1, + sym_superexpression, + STATE(2500), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [1898] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2116), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2044] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2132), 1, + sym_parametrized_type, + STATE(2144), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2190] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2113), 1, + sym_parametrized_type, + STATE(2141), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2336] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2068), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2482] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2085), 1, + sym_parametrized_type, + STATE(2135), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2628] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2050), 1, + sym_superexpression, + STATE(2164), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2774] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2492), 1, + sym_superexpression, + STATE(2508), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [2920] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2073), 1, + sym_parametrized_type, + STATE(2123), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3066] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2066), 1, + sym_parametrized_type, + STATE(2102), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3212] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2092), 1, + sym_parametrized_type, + STATE(2138), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3358] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2059), 1, + sym_parametrized_type, + STATE(2095), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3504] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2053), 1, + sym_parametrized_type, + STATE(2088), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3650] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2498), 1, + sym_superexpression, + STATE(2522), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3796] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2267), 1, + sym_superexpression, + STATE(2331), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [3942] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2075), 1, + sym_superexpression, + STATE(2105), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4088] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2227), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4234] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2120), 1, + sym_parametrized_type, + STATE(2142), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4380] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2078), 1, + sym_parametrized_type, + STATE(2129), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4526] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2506), 1, + sym_superexpression, + STATE(2509), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4672] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2087), 1, + sym_superexpression, + STATE(2182), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4818] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2119), 1, + sym_superexpression, + STATE(2191), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [4964] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2150), 1, + sym_superexpression, + STATE(2208), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5110] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2178), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5256] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2158), 1, + sym_superexpression, + STATE(2220), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5402] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2167), 1, + sym_superexpression, + STATE(2232), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5548] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2461), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2482), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5694] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2185), 1, + sym_superexpression, + STATE(2243), 1, + sym_parametrized_type, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5840] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2452), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2474), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [5986] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2469), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2489), 1, + sym_parametrized_type, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6132] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2430), 1, + sym_superexpression, + STATE(2464), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6278] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2418), 1, + sym_superexpression, + STATE(2455), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6424] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2198), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2258), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6570] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2298), 1, + sym_superexpression, + STATE(2364), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6716] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2410), 1, + sym_superexpression, + STATE(2436), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [6862] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2402), 1, + sym_superexpression, + STATE(2424), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7008] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2145), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2292), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7154] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2384), 1, + sym_superexpression, + STATE(2413), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7300] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2376), 1, + sym_superexpression, + STATE(2404), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7446] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2358), 1, + sym_superexpression, + STATE(2395), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7592] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2253), 1, + sym_superexpression, + STATE(2303), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7738] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2282), 1, + sym_superexpression, + STATE(2349), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [7884] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2343), 1, + sym_superexpression, + STATE(2390), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8030] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2214), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2272), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8176] = 42, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2268), 1, + sym_parametrized_type, + STATE(2316), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8322] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2352), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8462] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2458), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8602] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2495), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8742] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2490), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [8882] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2483), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9022] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2477), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9162] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(73), 1, + anon_sym_AMP, + ACTIONS(75), 1, + anon_sym_PIPE, + ACTIONS(77), 1, + anon_sym_match, + ACTIONS(79), 1, + anon_sym_if, + ACTIONS(81), 1, + anon_sym_do, + ACTIONS(83), 1, + anon_sym_while, + ACTIONS(85), 1, + anon_sym_for, + ACTIONS(87), 1, + anon_sym_loop, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(686), 1, + sym_superexpression, + STATE(832), 1, + sym_literal, + STATE(1206), 1, + aux_sym_variant_expression_repeat1, + STATE(1215), 1, + aux_sym_tuple_expression_repeat1, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9302] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2337), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9442] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_AMP, + ACTIONS(109), 1, + anon_sym_PIPE, + ACTIONS(111), 1, + anon_sym_match, + ACTIONS(113), 1, + anon_sym_if, + ACTIONS(115), 1, + anon_sym_do, + ACTIONS(117), 1, + anon_sym_while, + ACTIONS(119), 1, + anon_sym_for, + ACTIONS(121), 1, + anon_sym_loop, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1286), 1, + aux_sym_tuple_expression_repeat1, + STATE(1287), 1, + aux_sym_variant_expression_repeat1, + STATE(1327), 1, + sym_superexpression, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9582] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2494), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9722] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2512), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [9862] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_AMP, + ACTIONS(143), 1, + anon_sym_PIPE, + ACTIONS(145), 1, + anon_sym_match, + ACTIONS(147), 1, + anon_sym_if, + ACTIONS(149), 1, + anon_sym_do, + ACTIONS(151), 1, + anon_sym_while, + ACTIONS(153), 1, + anon_sym_for, + ACTIONS(155), 1, + anon_sym_loop, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(686), 1, + sym_superexpression, + STATE(898), 1, + sym_literal, + STATE(1237), 1, + aux_sym_tuple_expression_repeat1, + STATE(1239), 1, + aux_sym_variant_expression_repeat1, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10002] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2137), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10142] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2131), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10282] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2502), 1, + sym_superexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10422] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2125), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10562] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2118), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10702] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2111), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10842] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2104), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [10982] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2097), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11122] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2090), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11262] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_AMP, + ACTIONS(143), 1, + anon_sym_PIPE, + ACTIONS(145), 1, + anon_sym_match, + ACTIONS(147), 1, + anon_sym_if, + ACTIONS(149), 1, + anon_sym_do, + ACTIONS(151), 1, + anon_sym_while, + ACTIONS(153), 1, + anon_sym_for, + ACTIONS(155), 1, + anon_sym_loop, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1237), 1, + aux_sym_tuple_expression_repeat1, + STATE(1239), 1, + aux_sym_variant_expression_repeat1, + STATE(1306), 1, + sym_subexpression, + STATE(1327), 1, + sym_superexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11402] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2083), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11542] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2077), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11682] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2071), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11822] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2307), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [11962] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2064), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12102] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2057), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12242] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2052), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12382] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2047), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12522] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2466), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12662] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2068), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12802] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2108), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [12942] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2370), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13082] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2147), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13222] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2156), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13362] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2440), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13502] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2165), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13642] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2293), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13782] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2425), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [13922] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2183), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14062] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2415), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14202] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2196), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14342] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2210), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14482] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2222), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14622] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2233), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14762] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2247), 1, + sym_superexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [14902] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2407), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15042] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2262), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15182] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2380), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15322] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2391), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15462] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2381), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15602] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + anon_sym_AMP, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_match, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_do, + ACTIONS(43), 1, + anon_sym_while, + ACTIONS(45), 1, + anon_sym_for, + ACTIONS(47), 1, + anon_sym_loop, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2002), 1, + aux_sym_tuple_expression_repeat1, + STATE(2003), 1, + aux_sym_variant_expression_repeat1, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2277), 1, + sym_superexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15742] = 40, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_AMP, + ACTIONS(109), 1, + anon_sym_PIPE, + ACTIONS(111), 1, + anon_sym_match, + ACTIONS(113), 1, + anon_sym_if, + ACTIONS(115), 1, + anon_sym_do, + ACTIONS(117), 1, + anon_sym_while, + ACTIONS(119), 1, + anon_sym_for, + ACTIONS(121), 1, + anon_sym_loop, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(686), 1, + sym_superexpression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1286), 1, + aux_sym_tuple_expression_repeat1, + STATE(1287), 1, + aux_sym_variant_expression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + STATE(622), 4, + sym_flow_control, + sym_expression, + sym_tuple_expression, + sym_variant_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [15882] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(177), 1, + anon_sym_type, + ACTIONS(179), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(114), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(175), 35, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [15950] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(185), 1, + anon_sym_type, + STATE(120), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(115), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(183), 35, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [16018] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(189), 1, + anon_sym_type, + ACTIONS(191), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(194), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(115), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(187), 35, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [16086] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(199), 1, + anon_sym_type, + ACTIONS(201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(197), 39, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [16141] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(205), 1, + anon_sym_type, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(203), 38, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [16195] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(199), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(197), 39, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [16247] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(209), 38, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [16301] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(215), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(213), 39, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [16353] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(224), 1, + sym_name_identifier, + ACTIONS(230), 1, + sym_float_number_literal, + ACTIONS(233), 1, + sym_number_literal, + ACTIONS(236), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_literal, + STATE(486), 1, + sym_type_subexpression, + STATE(492), 1, + sym_subexpression_token, + STATE(1274), 1, + aux_sym_name_superexpression_repeat1, + STATE(1566), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(227), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(121), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + STATE(530), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16437] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(246), 1, + anon_sym_LPAREN, + ACTIONS(248), 1, + sym_name_identifier, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(258), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_literal, + STATE(486), 1, + sym_type_subexpression, + STATE(492), 1, + sym_subexpression_token, + STATE(1274), 1, + aux_sym_name_superexpression_repeat1, + STATE(1566), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(250), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(121), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + STATE(530), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16521] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(246), 1, + anon_sym_LPAREN, + ACTIONS(248), 1, + sym_name_identifier, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(258), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_literal, + STATE(486), 1, + sym_type_subexpression, + STATE(492), 1, + sym_subexpression_token, + STATE(1274), 1, + aux_sym_name_superexpression_repeat1, + STATE(1566), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(250), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(122), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + STATE(530), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16605] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + sym_name_identifier, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(276), 1, + anon_sym_SQUOTE, + STATE(518), 1, + sym_type_subexpression, + STATE(524), 1, + sym_literal, + STATE(614), 1, + sym_subexpression_token, + STATE(1266), 1, + aux_sym_name_superexpression_repeat1, + STATE(1539), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(268), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(127), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + STATE(630), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16688] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + STATE(505), 1, + sym_literal, + STATE(531), 1, + sym_type_subexpression, + STATE(597), 1, + sym_subexpression_token, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(282), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(126), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(656), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16771] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(292), 1, + anon_sym_LPAREN, + ACTIONS(295), 1, + sym_name_identifier, + ACTIONS(301), 1, + sym_float_number_literal, + ACTIONS(304), 1, + sym_number_literal, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + anon_sym_SQUOTE, + STATE(505), 1, + sym_literal, + STATE(531), 1, + sym_type_subexpression, + STATE(597), 1, + sym_subexpression_token, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(298), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(126), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(656), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16854] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(264), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + sym_name_identifier, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(276), 1, + anon_sym_SQUOTE, + STATE(518), 1, + sym_type_subexpression, + STATE(524), 1, + sym_literal, + STATE(614), 1, + sym_subexpression_token, + STATE(1266), 1, + aux_sym_name_superexpression_repeat1, + STATE(1539), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(268), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(129), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + STATE(630), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [16937] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(313), 1, + anon_sym_LPAREN, + ACTIONS(315), 1, + sym_name_identifier, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(325), 1, + anon_sym_SQUOTE, + STATE(516), 1, + sym_literal, + STATE(529), 1, + sym_type_subexpression, + STATE(604), 1, + sym_subexpression_token, + STATE(1256), 1, + aux_sym_name_superexpression_repeat1, + STATE(1578), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(130), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + STATE(558), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17020] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(327), 1, + anon_sym_LPAREN, + ACTIONS(330), 1, + sym_name_identifier, + ACTIONS(336), 1, + sym_float_number_literal, + ACTIONS(339), 1, + sym_number_literal, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(345), 1, + anon_sym_SQUOTE, + STATE(518), 1, + sym_type_subexpression, + STATE(524), 1, + sym_literal, + STATE(614), 1, + sym_subexpression_token, + STATE(1266), 1, + aux_sym_name_superexpression_repeat1, + STATE(1539), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(333), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(129), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + STATE(630), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17103] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(313), 1, + anon_sym_LPAREN, + ACTIONS(315), 1, + sym_name_identifier, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(325), 1, + anon_sym_SQUOTE, + STATE(516), 1, + sym_literal, + STATE(529), 1, + sym_type_subexpression, + STATE(604), 1, + sym_subexpression_token, + STATE(1256), 1, + aux_sym_name_superexpression_repeat1, + STATE(1578), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(135), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + STATE(558), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17186] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(348), 1, + anon_sym_LPAREN, + ACTIONS(351), 1, + sym_name_identifier, + ACTIONS(357), 1, + sym_float_number_literal, + ACTIONS(360), 1, + sym_number_literal, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(366), 1, + anon_sym_SQUOTE, + STATE(527), 1, + sym_type_subexpression, + STATE(533), 1, + sym_literal, + STATE(590), 1, + sym_subexpression_token, + STATE(1270), 1, + aux_sym_name_superexpression_repeat1, + STATE(1572), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(354), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(131), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + STATE(602), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [17269] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(369), 1, + anon_sym_LPAREN, + ACTIONS(371), 1, + sym_name_identifier, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(381), 1, + anon_sym_SQUOTE, + STATE(527), 1, + sym_type_subexpression, + STATE(533), 1, + sym_literal, + STATE(590), 1, + sym_subexpression_token, + STATE(1270), 1, + aux_sym_name_superexpression_repeat1, + STATE(1572), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(373), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(131), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + STATE(602), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [17352] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + STATE(505), 1, + sym_literal, + STATE(531), 1, + sym_type_subexpression, + STATE(597), 1, + sym_subexpression_token, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(282), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(125), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(656), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17435] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(369), 1, + anon_sym_LPAREN, + ACTIONS(371), 1, + sym_name_identifier, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(381), 1, + anon_sym_SQUOTE, + STATE(527), 1, + sym_type_subexpression, + STATE(533), 1, + sym_literal, + STATE(590), 1, + sym_subexpression_token, + STATE(1270), 1, + aux_sym_name_superexpression_repeat1, + STATE(1572), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(373), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(132), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + STATE(602), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [17518] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(386), 1, + sym_name_identifier, + ACTIONS(392), 1, + sym_float_number_literal, + ACTIONS(395), 1, + sym_number_literal, + ACTIONS(398), 1, + anon_sym_DQUOTE, + ACTIONS(401), 1, + anon_sym_SQUOTE, + STATE(516), 1, + sym_literal, + STATE(529), 1, + sym_type_subexpression, + STATE(604), 1, + sym_subexpression_token, + STATE(1256), 1, + aux_sym_name_superexpression_repeat1, + STATE(1578), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(389), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(135), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + STATE(558), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17601] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(404), 1, + anon_sym_LPAREN, + ACTIONS(407), 1, + sym_name_identifier, + ACTIONS(413), 1, + sym_float_number_literal, + ACTIONS(416), 1, + sym_number_literal, + ACTIONS(419), 1, + anon_sym_DQUOTE, + ACTIONS(422), 1, + anon_sym_SQUOTE, + STATE(586), 1, + sym_literal, + STATE(626), 1, + sym_type_subexpression, + STATE(730), 1, + sym_subexpression_token, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(410), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(136), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(750), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17683] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(425), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + sym_name_identifier, + ACTIONS(434), 1, + sym_float_number_literal, + ACTIONS(437), 1, + sym_number_literal, + ACTIONS(440), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + anon_sym_SQUOTE, + STATE(646), 1, + sym_literal, + STATE(648), 1, + sym_type_subexpression, + STATE(768), 1, + sym_subexpression_token, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(431), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(137), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(692), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [17765] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(446), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + STATE(586), 1, + sym_literal, + STATE(626), 1, + sym_type_subexpression, + STATE(730), 1, + sym_subexpression_token, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(450), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(136), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(750), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [17847] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(460), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + sym_name_identifier, + ACTIONS(469), 1, + sym_float_number_literal, + ACTIONS(472), 1, + sym_number_literal, + ACTIONS(475), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + anon_sym_SQUOTE, + STATE(550), 1, + sym_type_subexpression, + STATE(607), 1, + sym_literal, + STATE(681), 1, + sym_subexpression_token, + STATE(1320), 1, + aux_sym_name_superexpression_repeat1, + STATE(1545), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(466), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(139), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [17929] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(481), 1, + anon_sym_LPAREN, + ACTIONS(483), 1, + sym_name_identifier, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + anon_sym_SQUOTE, + STATE(632), 1, + sym_type_subexpression, + STATE(649), 1, + sym_literal, + STATE(695), 1, + sym_subexpression_token, + STATE(1276), 1, + aux_sym_name_superexpression_repeat1, + STATE(1551), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(485), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(147), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(727), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [18011] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(495), 1, + anon_sym_LPAREN, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + STATE(646), 1, + sym_literal, + STATE(648), 1, + sym_type_subexpression, + STATE(768), 1, + sym_subexpression_token, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(499), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(137), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(692), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [18093] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(512), 1, + sym_name_identifier, + ACTIONS(518), 1, + sym_float_number_literal, + ACTIONS(521), 1, + sym_number_literal, + ACTIONS(524), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_SQUOTE, + STATE(553), 1, + sym_type_subexpression, + STATE(580), 1, + sym_literal, + STATE(717), 1, + sym_subexpression_token, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(515), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(142), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(714), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18175] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(481), 1, + anon_sym_LPAREN, + ACTIONS(483), 1, + sym_name_identifier, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + anon_sym_SQUOTE, + STATE(632), 1, + sym_type_subexpression, + STATE(649), 1, + sym_literal, + STATE(695), 1, + sym_subexpression_token, + STATE(1276), 1, + aux_sym_name_superexpression_repeat1, + STATE(1551), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(485), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(140), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(727), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [18257] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, + sym_name_identifier, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(542), 1, + anon_sym_SQUOTE, + STATE(619), 1, + sym_literal, + STATE(625), 1, + sym_type_subexpression, + STATE(661), 1, + sym_subexpression_token, + STATE(1279), 1, + aux_sym_name_superexpression_repeat1, + STATE(1594), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(534), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(149), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + STATE(762), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [18339] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, + sym_name_identifier, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(556), 1, + anon_sym_SQUOTE, + STATE(550), 1, + sym_type_subexpression, + STATE(607), 1, + sym_literal, + STATE(681), 1, + sym_subexpression_token, + STATE(1320), 1, + aux_sym_name_superexpression_repeat1, + STATE(1545), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(548), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(139), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [18421] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(446), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + STATE(586), 1, + sym_literal, + STATE(626), 1, + sym_type_subexpression, + STATE(730), 1, + sym_subexpression_token, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(450), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(138), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(750), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18503] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(558), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + sym_name_identifier, + ACTIONS(567), 1, + sym_float_number_literal, + ACTIONS(570), 1, + sym_number_literal, + ACTIONS(573), 1, + anon_sym_DQUOTE, + ACTIONS(576), 1, + anon_sym_SQUOTE, + STATE(632), 1, + sym_type_subexpression, + STATE(649), 1, + sym_literal, + STATE(695), 1, + sym_subexpression_token, + STATE(1276), 1, + aux_sym_name_superexpression_repeat1, + STATE(1551), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(564), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(147), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(727), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [18585] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(579), 1, + anon_sym_LPAREN, + ACTIONS(581), 1, + sym_name_identifier, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + anon_sym_SQUOTE, + STATE(578), 1, + sym_literal, + STATE(588), 1, + sym_type_subexpression, + STATE(670), 1, + sym_subexpression_token, + STATE(1253), 1, + aux_sym_name_superexpression_repeat1, + STATE(1541), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(583), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(150), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + STATE(688), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18667] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, + sym_name_identifier, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(542), 1, + anon_sym_SQUOTE, + STATE(619), 1, + sym_literal, + STATE(625), 1, + sym_type_subexpression, + STATE(661), 1, + sym_subexpression_token, + STATE(1279), 1, + aux_sym_name_superexpression_repeat1, + STATE(1594), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(534), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(154), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + STATE(762), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [18749] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(579), 1, + anon_sym_LPAREN, + ACTIONS(581), 1, + sym_name_identifier, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + anon_sym_SQUOTE, + STATE(578), 1, + sym_literal, + STATE(588), 1, + sym_type_subexpression, + STATE(670), 1, + sym_subexpression_token, + STATE(1253), 1, + aux_sym_name_superexpression_repeat1, + STATE(1541), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(583), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(153), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + STATE(688), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18831] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(593), 1, + anon_sym_LPAREN, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + STATE(553), 1, + sym_type_subexpression, + STATE(580), 1, + sym_literal, + STATE(717), 1, + sym_subexpression_token, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(597), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(152), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(714), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18913] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(593), 1, + anon_sym_LPAREN, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + STATE(553), 1, + sym_type_subexpression, + STATE(580), 1, + sym_literal, + STATE(717), 1, + sym_subexpression_token, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(597), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(142), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(714), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18995] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(607), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, + sym_name_identifier, + ACTIONS(616), 1, + sym_float_number_literal, + ACTIONS(619), 1, + sym_number_literal, + ACTIONS(622), 1, + anon_sym_DQUOTE, + ACTIONS(625), 1, + anon_sym_SQUOTE, + STATE(578), 1, + sym_literal, + STATE(588), 1, + sym_type_subexpression, + STATE(670), 1, + sym_subexpression_token, + STATE(1253), 1, + aux_sym_name_superexpression_repeat1, + STATE(1541), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(613), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(153), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + STATE(688), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 15, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [19077] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(628), 1, + anon_sym_LPAREN, + ACTIONS(631), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_float_number_literal, + ACTIONS(640), 1, + sym_number_literal, + ACTIONS(643), 1, + anon_sym_DQUOTE, + ACTIONS(646), 1, + anon_sym_SQUOTE, + STATE(619), 1, + sym_literal, + STATE(625), 1, + sym_type_subexpression, + STATE(661), 1, + sym_subexpression_token, + STATE(1279), 1, + aux_sym_name_superexpression_repeat1, + STATE(1594), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(634), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(154), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + STATE(762), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [19159] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(495), 1, + anon_sym_LPAREN, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + STATE(646), 1, + sym_literal, + STATE(648), 1, + sym_type_subexpression, + STATE(768), 1, + sym_subexpression_token, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(499), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(141), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(692), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [19241] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(544), 1, + anon_sym_LPAREN, + ACTIONS(546), 1, + sym_name_identifier, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(556), 1, + anon_sym_SQUOTE, + STATE(550), 1, + sym_type_subexpression, + STATE(607), 1, + sym_literal, + STATE(681), 1, + sym_subexpression_token, + STATE(1320), 1, + aux_sym_name_superexpression_repeat1, + STATE(1545), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(548), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(145), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [19323] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1308), 1, + aux_sym_name_superexpression_repeat1, + STATE(1348), 1, + sym_type_expression, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2192), 1, + sym_parametrized_type, + STATE(2193), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [19425] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + sym_name_identifier, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + STATE(673), 1, + sym_literal, + STATE(683), 1, + sym_type_subexpression, + STATE(850), 1, + sym_subexpression_token, + STATE(1263), 1, + aux_sym_name_superexpression_repeat1, + STATE(1524), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(653), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(177), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + STATE(869), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [19506] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(663), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + sym_name_identifier, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(675), 1, + anon_sym_SQUOTE, + STATE(744), 1, + sym_type_subexpression, + STATE(775), 1, + sym_literal, + STATE(797), 1, + sym_subexpression_token, + STATE(1271), 1, + aux_sym_name_superexpression_repeat1, + STATE(1553), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(667), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(174), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + STATE(854), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [19587] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(677), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + STATE(662), 1, + sym_literal, + STATE(666), 1, + sym_type_subexpression, + STATE(881), 1, + sym_subexpression_token, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(681), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(181), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(822), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [19668] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(663), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + sym_name_identifier, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(675), 1, + anon_sym_SQUOTE, + STATE(744), 1, + sym_type_subexpression, + STATE(775), 1, + sym_literal, + STATE(797), 1, + sym_subexpression_token, + STATE(1271), 1, + aux_sym_name_superexpression_repeat1, + STATE(1553), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(667), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(159), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + STATE(854), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [19749] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + sym_name_identifier, + ACTIONS(700), 1, + sym_float_number_literal, + ACTIONS(703), 1, + sym_number_literal, + ACTIONS(706), 1, + anon_sym_DQUOTE, + ACTIONS(709), 1, + anon_sym_SQUOTE, + STATE(673), 1, + sym_literal, + STATE(683), 1, + sym_type_subexpression, + STATE(850), 1, + sym_subexpression_token, + STATE(1263), 1, + aux_sym_name_superexpression_repeat1, + STATE(1524), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(697), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(162), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + STATE(869), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [19830] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(712), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(721), 1, + sym_float_number_literal, + ACTIONS(724), 1, + sym_number_literal, + ACTIONS(727), 1, + anon_sym_DQUOTE, + ACTIONS(730), 1, + anon_sym_SQUOTE, + STATE(771), 1, + sym_literal, + STATE(773), 1, + sym_type_subexpression, + STATE(785), 1, + sym_subexpression_token, + STATE(1260), 1, + aux_sym_name_superexpression_repeat1, + STATE(1558), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(718), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(163), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + STATE(887), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [19911] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + STATE(660), 1, + sym_literal, + STATE(674), 1, + sym_type_subexpression, + STATE(860), 1, + sym_subexpression_token, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(737), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(179), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(807), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [19992] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, + sym_name_identifier, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + STATE(764), 1, + sym_type_subexpression, + STATE(781), 1, + sym_literal, + STATE(787), 1, + sym_subexpression_token, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(751), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(167), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(859), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20073] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + STATE(771), 1, + sym_literal, + STATE(773), 1, + sym_type_subexpression, + STATE(785), 1, + sym_subexpression_token, + STATE(1260), 1, + aux_sym_name_superexpression_repeat1, + STATE(1558), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(765), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(163), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + STATE(887), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [20154] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, + sym_name_identifier, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + STATE(764), 1, + sym_type_subexpression, + STATE(781), 1, + sym_literal, + STATE(787), 1, + sym_subexpression_token, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(751), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(169), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(859), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20235] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + STATE(771), 1, + sym_literal, + STATE(773), 1, + sym_type_subexpression, + STATE(785), 1, + sym_subexpression_token, + STATE(1260), 1, + aux_sym_name_superexpression_repeat1, + STATE(1558), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(765), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(166), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + STATE(887), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [20316] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, + sym_name_identifier, + ACTIONS(784), 1, + sym_float_number_literal, + ACTIONS(787), 1, + sym_number_literal, + ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(793), 1, + anon_sym_SQUOTE, + STATE(764), 1, + sym_type_subexpression, + STATE(781), 1, + sym_literal, + STATE(787), 1, + sym_subexpression_token, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(781), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(169), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(859), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20397] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + STATE(751), 1, + sym_type_subexpression, + STATE(760), 1, + sym_literal, + STATE(801), 1, + sym_subexpression_token, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(800), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(176), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(847), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [20478] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym_type_subexpression, + STATE(753), 1, + sym_literal, + STATE(806), 1, + sym_subexpression_token, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(814), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(172), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(878), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20559] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym_type_subexpression, + STATE(753), 1, + sym_literal, + STATE(806), 1, + sym_subexpression_token, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(814), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(173), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(878), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20640] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(827), 1, + sym_name_identifier, + ACTIONS(833), 1, + sym_float_number_literal, + ACTIONS(836), 1, + sym_number_literal, + ACTIONS(839), 1, + anon_sym_DQUOTE, + ACTIONS(842), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym_type_subexpression, + STATE(753), 1, + sym_literal, + STATE(806), 1, + sym_subexpression_token, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(830), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(173), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(878), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 14, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [20721] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(845), 1, + anon_sym_LPAREN, + ACTIONS(848), 1, + sym_name_identifier, + ACTIONS(854), 1, + sym_float_number_literal, + ACTIONS(857), 1, + sym_number_literal, + ACTIONS(860), 1, + anon_sym_DQUOTE, + ACTIONS(863), 1, + anon_sym_SQUOTE, + STATE(744), 1, + sym_type_subexpression, + STATE(775), 1, + sym_literal, + STATE(797), 1, + sym_subexpression_token, + STATE(1271), 1, + aux_sym_name_superexpression_repeat1, + STATE(1553), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(851), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(174), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + STATE(854), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [20802] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + STATE(660), 1, + sym_literal, + STATE(674), 1, + sym_type_subexpression, + STATE(860), 1, + sym_subexpression_token, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(737), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(164), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(807), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [20883] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + STATE(751), 1, + sym_type_subexpression, + STATE(760), 1, + sym_literal, + STATE(801), 1, + sym_subexpression_token, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(800), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(178), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(847), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [20964] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(649), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + sym_name_identifier, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + STATE(673), 1, + sym_literal, + STATE(683), 1, + sym_type_subexpression, + STATE(850), 1, + sym_subexpression_token, + STATE(1263), 1, + aux_sym_name_superexpression_repeat1, + STATE(1524), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(653), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(162), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + STATE(869), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [21045] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(866), 1, + anon_sym_LPAREN, + ACTIONS(869), 1, + sym_name_identifier, + ACTIONS(875), 1, + sym_float_number_literal, + ACTIONS(878), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(884), 1, + anon_sym_SQUOTE, + STATE(751), 1, + sym_type_subexpression, + STATE(760), 1, + sym_literal, + STATE(801), 1, + sym_subexpression_token, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(872), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(178), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(847), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [21126] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + sym_name_identifier, + ACTIONS(896), 1, + sym_float_number_literal, + ACTIONS(899), 1, + sym_number_literal, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(905), 1, + anon_sym_SQUOTE, + STATE(660), 1, + sym_literal, + STATE(674), 1, + sym_type_subexpression, + STATE(860), 1, + sym_subexpression_token, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(893), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(179), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(807), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [21207] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(908), 1, + anon_sym_LPAREN, + ACTIONS(911), 1, + sym_name_identifier, + ACTIONS(917), 1, + sym_float_number_literal, + ACTIONS(920), 1, + sym_number_literal, + ACTIONS(923), 1, + anon_sym_DQUOTE, + ACTIONS(926), 1, + anon_sym_SQUOTE, + STATE(662), 1, + sym_literal, + STATE(666), 1, + sym_type_subexpression, + STATE(881), 1, + sym_subexpression_token, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(914), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(180), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(822), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [21288] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(677), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + STATE(662), 1, + sym_literal, + STATE(666), 1, + sym_type_subexpression, + STATE(881), 1, + sym_subexpression_token, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(681), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(180), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(822), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [21369] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [21465] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [21561] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(947), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + sym_name_identifier, + ACTIONS(956), 1, + sym_float_number_literal, + ACTIONS(959), 1, + sym_number_literal, + ACTIONS(962), 1, + anon_sym_DQUOTE, + ACTIONS(965), 1, + anon_sym_SQUOTE, + STATE(885), 1, + sym_literal, + STATE(890), 1, + sym_type_subexpression, + STATE(900), 1, + sym_subexpression_token, + STATE(1262), 1, + aux_sym_name_superexpression_repeat1, + STATE(1689), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(953), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(184), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + STATE(897), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [21641] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [21737] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [21833] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [21929] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22025] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(986), 1, + anon_sym_LPAREN, + ACTIONS(988), 1, + sym_name_identifier, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(998), 1, + anon_sym_SQUOTE, + STATE(885), 1, + sym_literal, + STATE(890), 1, + sym_type_subexpression, + STATE(900), 1, + sym_subexpression_token, + STATE(1262), 1, + aux_sym_name_superexpression_repeat1, + STATE(1689), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(990), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(184), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + STATE(897), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [22105] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22201] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(986), 1, + anon_sym_LPAREN, + ACTIONS(988), 1, + sym_name_identifier, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(998), 1, + anon_sym_SQUOTE, + STATE(885), 1, + sym_literal, + STATE(890), 1, + sym_type_subexpression, + STATE(900), 1, + sym_subexpression_token, + STATE(1262), 1, + aux_sym_name_superexpression_repeat1, + STATE(1689), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(990), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(189), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + STATE(897), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [22281] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22377] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22473] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22569] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2501), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22665] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2504), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22761] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2505), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22857] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(484), 1, + sym_expression, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [22953] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23049] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23145] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23241] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1054), 1, + anon_sym_LPAREN, + ACTIONS(1057), 1, + sym_name_identifier, + ACTIONS(1063), 1, + sym_float_number_literal, + ACTIONS(1066), 1, + sym_number_literal, + ACTIONS(1069), 1, + anon_sym_DQUOTE, + ACTIONS(1072), 1, + anon_sym_SQUOTE, + STATE(857), 1, + sym_literal, + STATE(864), 1, + sym_type_subexpression, + STATE(910), 1, + sym_subexpression_token, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1060), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(202), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(954), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [23321] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + STATE(879), 1, + sym_literal, + STATE(894), 1, + sym_type_subexpression, + STATE(922), 1, + sym_subexpression_token, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1079), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(217), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(914), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [23401] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2511), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23497] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2514), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23593] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23689] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1296), 1, + sym_expression, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23785] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23881] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [23977] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24073] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2515), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24169] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24265] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(499), 1, + sym_expression, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24361] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2387), 1, + sym_expression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24457] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24553] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2204), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24649] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + STATE(879), 1, + sym_literal, + STATE(894), 1, + sym_type_subexpression, + STATE(922), 1, + sym_subexpression_token, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1079), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(225), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(914), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [24729] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24825] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [24921] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2519), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25017] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2518), 1, + sym_expression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25113] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25209] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25305] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25401] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + sym_name_identifier, + ACTIONS(1144), 1, + sym_float_number_literal, + ACTIONS(1147), 1, + sym_number_literal, + ACTIONS(1150), 1, + anon_sym_DQUOTE, + ACTIONS(1153), 1, + anon_sym_SQUOTE, + STATE(879), 1, + sym_literal, + STATE(894), 1, + sym_type_subexpression, + STATE(922), 1, + sym_subexpression_token, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1141), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(225), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(914), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [25481] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25577] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25673] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25769] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1252), 1, + sym_expression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25865] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [25961] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(501), 1, + sym_expression, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26057] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26153] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26249] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26345] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26441] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26537] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26633] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1236), 1, + sym_expression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26729] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26825] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [26921] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27017] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27113] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27209] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1200), 1, + anon_sym_LPAREN, + ACTIONS(1203), 1, + sym_name_identifier, + ACTIONS(1209), 1, + sym_float_number_literal, + ACTIONS(1212), 1, + sym_number_literal, + ACTIONS(1215), 1, + anon_sym_DQUOTE, + ACTIONS(1218), 1, + anon_sym_SQUOTE, + STATE(832), 1, + sym_literal, + STATE(834), 1, + sym_type_subexpression, + STATE(920), 1, + sym_subexpression_token, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1206), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(244), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(923), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(219), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(217), 13, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [27289] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27385] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27481] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27577] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27673] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + ACTIONS(1221), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym_literal, + STATE(834), 1, + sym_type_subexpression, + STATE(920), 1, + sym_subexpression_token, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1223), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(244), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(923), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(244), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(242), 13, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [27753] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [27849] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(1225), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + STATE(857), 1, + sym_literal, + STATE(864), 1, + sym_type_subexpression, + STATE(910), 1, + sym_subexpression_token, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1229), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(202), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(954), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [27929] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28025] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(642), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28121] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + ACTIONS(1221), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym_literal, + STATE(834), 1, + sym_type_subexpression, + STATE(920), 1, + sym_subexpression_token, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1223), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(249), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(923), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(262), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(260), 13, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [28201] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28297] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28393] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(638), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28489] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1225), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + STATE(857), 1, + sym_literal, + STATE(864), 1, + sym_type_subexpression, + STATE(910), 1, + sym_subexpression_token, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1229), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(251), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(954), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [28569] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28665] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(633), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28761] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28857] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [28953] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29049] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29145] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29241] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29337] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1217), 1, + sym_expression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29433] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(582), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29529] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(547), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29625] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2094), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29721] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29817] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [29913] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30009] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30105] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30201] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30297] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30393] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30489] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30585] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30681] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30777] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30873] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [30969] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31065] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31161] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31257] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31353] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31449] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31545] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31641] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31737] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + sym_name_identifier, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_return, + ACTIONS(1168), 1, + anon_sym_BSLASH, + ACTIONS(1170), 1, + anon_sym_DOLLAR, + ACTIONS(1172), 1, + sym_operator, + STATE(155), 1, + sym_name_superexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1143), 1, + sym_subexpression, + STATE(1213), 1, + sym_expression, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31833] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [31929] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, + anon_sym_return, + ACTIONS(1038), 1, + anon_sym_BSLASH, + ACTIONS(1040), 1, + anon_sym_DOLLAR, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1044), 1, + sym_operator, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(1945), 1, + sym_subexpression, + STATE(1952), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32025] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32121] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32217] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32313] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32409] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32505] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32601] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32697] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32793] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32889] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [32985] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33081] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33177] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33273] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33369] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33465] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33561] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2168), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33657] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(629), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33753] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2195), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33849] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(633), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [33945] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(798), 1, + sym_name_identifier, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_BSLASH, + ACTIONS(943), 1, + anon_sym_DOLLAR, + ACTIONS(945), 1, + sym_operator, + STATE(170), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1175), 1, + sym_subexpression, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34041] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34137] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34233] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34329] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(501), 1, + sym_expression, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34425] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym_name_identifier, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1283), 1, + anon_sym_return, + ACTIONS(1285), 1, + anon_sym_BSLASH, + ACTIONS(1287), 1, + anon_sym_DOLLAR, + ACTIONS(1289), 1, + sym_operator, + STATE(160), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(662), 1, + sym_literal, + STATE(1202), 1, + sym_subexpression, + STATE(1224), 1, + sym_expression, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34521] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34617] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34713] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(642), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34809] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [34905] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(638), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35001] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35097] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35193] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35289] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(629), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35385] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(484), 1, + sym_expression, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35481] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(1325), 1, + anon_sym_LPAREN, + ACTIONS(1328), 1, + sym_name_identifier, + ACTIONS(1334), 1, + sym_float_number_literal, + ACTIONS(1337), 1, + sym_number_literal, + ACTIONS(1340), 1, + anon_sym_DQUOTE, + ACTIONS(1343), 1, + anon_sym_SQUOTE, + STATE(804), 1, + sym_literal, + STATE(809), 1, + sym_type_subexpression, + STATE(917), 1, + sym_subexpression_token, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1331), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(331), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(919), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [35561] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1247), 1, + anon_sym_return, + ACTIONS(1249), 1, + anon_sym_BSLASH, + ACTIONS(1251), 1, + anon_sym_DOLLAR, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1255), 1, + sym_operator, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + STATE(351), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(499), 1, + sym_expression, + STATE(804), 1, + sym_literal, + STATE(1235), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35657] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35753] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35849] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [35945] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36041] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36137] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(157), 1, + anon_sym_return, + ACTIONS(159), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(165), 1, + sym_operator, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(638), 1, + sym_expression, + STATE(898), 1, + sym_literal, + STATE(1306), 1, + sym_subexpression, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36233] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2172), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36329] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + ACTIONS(1346), 1, + anon_sym_LPAREN, + STATE(804), 1, + sym_literal, + STATE(809), 1, + sym_type_subexpression, + STATE(917), 1, + sym_subexpression_token, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1348), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(331), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(919), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [36409] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(968), 1, + anon_sym_return, + ACTIONS(970), 1, + anon_sym_BSLASH, + ACTIONS(972), 1, + anon_sym_DOLLAR, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(976), 1, + sym_operator, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2042), 1, + sym_subexpression, + STATE(2175), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36505] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36601] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(547), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36697] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36793] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2176), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36889] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2188), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [36985] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2177), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37081] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37177] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37273] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(582), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37369] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(1253), 1, + sym_name_identifier, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + ACTIONS(1346), 1, + anon_sym_LPAREN, + STATE(804), 1, + sym_literal, + STATE(809), 1, + sym_type_subexpression, + STATE(917), 1, + sym_subexpression_token, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1348), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(340), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(919), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [37449] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2180), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37545] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37641] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + sym_name_identifier, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(929), 1, + anon_sym_return, + ACTIONS(931), 1, + anon_sym_BSLASH, + ACTIONS(933), 1, + anon_sym_DOLLAR, + ACTIONS(935), 1, + sym_operator, + STATE(175), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1190), 1, + sym_subexpression, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37737] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(499), 1, + sym_expression, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37833] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [37929] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(484), 1, + sym_expression, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38025] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(642), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38121] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38217] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1200), 1, + sym_expression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38313] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38409] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(501), 1, + sym_expression, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38505] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(633), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38601] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(629), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38697] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, + sym_name_identifier, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + anon_sym_return, + ACTIONS(1293), 1, + anon_sym_BSLASH, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + sym_operator, + STATE(171), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1191), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38793] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + sym_name_identifier, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_return, + ACTIONS(1176), 1, + anon_sym_BSLASH, + ACTIONS(1178), 1, + anon_sym_DOLLAR, + ACTIONS(1180), 1, + sym_operator, + STATE(133), 1, + sym_name_superexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1128), 1, + sym_subexpression, + STATE(1134), 1, + sym_expression, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38889] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [38985] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39081] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(1350), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + sym_name_identifier, + ACTIONS(1359), 1, + sym_float_number_literal, + ACTIONS(1362), 1, + sym_number_literal, + ACTIONS(1365), 1, + anon_sym_DQUOTE, + ACTIONS(1368), 1, + anon_sym_SQUOTE, + STATE(786), 1, + sym_literal, + STATE(792), 1, + sym_type_subexpression, + STATE(916), 1, + sym_subexpression_token, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1356), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(369), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(921), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [39161] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39257] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39353] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39449] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39545] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39641] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(547), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39737] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(582), 1, + sym_expression, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39833] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_return, + ACTIONS(1101), 1, + anon_sym_BSLASH, + ACTIONS(1103), 1, + anon_sym_DOLLAR, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1107), 1, + sym_operator, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + STATE(418), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1267), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [39929] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2200), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40025] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40121] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + sym_name_identifier, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(1089), 1, + anon_sym_return, + ACTIONS(1091), 1, + anon_sym_BSLASH, + ACTIONS(1093), 1, + anon_sym_DOLLAR, + ACTIONS(1095), 1, + sym_operator, + STATE(146), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1142), 1, + sym_subexpression, + STATE(1153), 1, + sym_expression, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40217] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_BSLASH, + ACTIONS(127), 1, + anon_sym_DOLLAR, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(131), 1, + sym_operator, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + STATE(436), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(638), 1, + sym_expression, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1366), 1, + sym_subexpression, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40313] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40409] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40505] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + sym_name_identifier, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + STATE(786), 1, + sym_literal, + STATE(792), 1, + sym_type_subexpression, + STATE(916), 1, + sym_subexpression_token, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1375), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(369), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(921), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [40585] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40681] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2162), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40777] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40873] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2163), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [40969] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(439), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41065] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(430), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41161] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(582), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41257] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(547), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41353] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(437), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41449] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + sym_name_identifier, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + STATE(786), 1, + sym_literal, + STATE(792), 1, + sym_type_subexpression, + STATE(916), 1, + sym_subexpression_token, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1375), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(384), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(921), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [41529] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(428), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41625] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2171), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41721] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(595), 1, + sym_name_identifier, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1299), 1, + anon_sym_return, + ACTIONS(1301), 1, + anon_sym_BSLASH, + ACTIONS(1303), 1, + anon_sym_DOLLAR, + ACTIONS(1305), 1, + sym_operator, + STATE(151), 1, + sym_name_superexpression, + STATE(428), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(580), 1, + sym_literal, + STATE(1165), 1, + sym_subexpression, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41817] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2397), 1, + sym_expression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [41913] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + anon_sym_return, + ACTIONS(1119), 1, + anon_sym_BSLASH, + ACTIONS(1121), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1125), 1, + sym_operator, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2030), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42009] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_return, + ACTIONS(1267), 1, + anon_sym_BSLASH, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1273), 1, + sym_operator, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(1894), 1, + sym_subexpression, + STATE(1955), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42105] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(433), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42201] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42297] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1244), 1, + sym_expression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42393] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_return, + ACTIONS(1020), 1, + anon_sym_BSLASH, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1026), 1, + sym_operator, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + STATE(430), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2040), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42489] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(432), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42585] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(629), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42681] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(633), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42777] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_BSLASH, + ACTIONS(55), 1, + anon_sym_DOLLAR, + ACTIONS(57), 1, + sym_name_identifier, + ACTIONS(61), 1, + sym_operator, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + STATE(433), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2044), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42873] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_scoped_statement, + STATE(501), 1, + sym_expression, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [42969] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_return, + ACTIONS(1184), 1, + anon_sym_BSLASH, + ACTIONS(1186), 1, + anon_sym_DOLLAR, + ACTIONS(1188), 1, + sym_name_identifier, + ACTIONS(1190), 1, + sym_operator, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + STATE(465), 1, + sym_scoped_statement, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(1943), 1, + sym_subexpression, + STATE(2017), 1, + sym_expression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43065] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(89), 1, + anon_sym_return, + ACTIONS(91), 1, + anon_sym_BSLASH, + ACTIONS(93), 1, + anon_sym_DOLLAR, + ACTIONS(95), 1, + sym_name_identifier, + ACTIONS(97), 1, + sym_operator, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + STATE(254), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(642), 1, + sym_expression, + STATE(832), 1, + sym_literal, + STATE(1232), 1, + sym_subexpression, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43161] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1000), 1, + anon_sym_return, + ACTIONS(1002), 1, + anon_sym_BSLASH, + ACTIONS(1004), 1, + anon_sym_DOLLAR, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1008), 1, + sym_operator, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + STATE(432), 1, + sym_expression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2029), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43257] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + anon_sym_return, + ACTIONS(1309), 1, + anon_sym_BSLASH, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_operator, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_scoped_statement, + STATE(499), 1, + sym_expression, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1983), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43353] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(439), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43449] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_name_identifier, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(1239), 1, + anon_sym_return, + ACTIONS(1241), 1, + anon_sym_BSLASH, + ACTIONS(1243), 1, + anon_sym_DOLLAR, + ACTIONS(1245), 1, + sym_operator, + STATE(258), 1, + sym_name_superexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(484), 1, + sym_expression, + STATE(857), 1, + sym_literal, + STATE(1243), 1, + sym_subexpression, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43545] = 28, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1077), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_return, + ACTIONS(1160), 1, + anon_sym_BSLASH, + ACTIONS(1162), 1, + anon_sym_DOLLAR, + ACTIONS(1164), 1, + sym_operator, + STATE(203), 1, + sym_name_superexpression, + STATE(437), 1, + sym_expression, + STATE(465), 1, + sym_scoped_statement, + STATE(879), 1, + sym_literal, + STATE(1227), 1, + sym_subexpression, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(51), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + STATE(434), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_lambda_function, + sym_type_constructor, + [43641] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1385), 1, + anon_sym_LPAREN, + ACTIONS(1388), 1, + sym_name_identifier, + ACTIONS(1394), 1, + sym_float_number_literal, + ACTIONS(1397), 1, + sym_number_literal, + ACTIONS(1400), 1, + anon_sym_DQUOTE, + ACTIONS(1403), 1, + anon_sym_SQUOTE, + STATE(940), 1, + sym_type_subexpression, + STATE(948), 1, + sym_literal, + STATE(986), 1, + sym_subexpression_token, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1391), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(417), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [43720] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + ACTIONS(1406), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_type_subexpression, + STATE(948), 1, + sym_literal, + STATE(986), 1, + sym_subexpression_token, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1408), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(419), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [43799] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(1105), 1, + sym_name_identifier, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + ACTIONS(1406), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_type_subexpression, + STATE(948), 1, + sym_literal, + STATE(986), 1, + sym_subexpression_token, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1408), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(417), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [43878] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + ts_builtin_sym_end, + ACTIONS(1410), 1, + anon_sym_LPAREN, + ACTIONS(1413), 1, + sym_name_identifier, + ACTIONS(1419), 1, + sym_float_number_literal, + ACTIONS(1422), 1, + sym_number_literal, + ACTIONS(1425), 1, + anon_sym_DQUOTE, + ACTIONS(1428), 1, + anon_sym_SQUOTE, + STATE(898), 1, + sym_literal, + STATE(904), 1, + sym_type_subexpression, + STATE(957), 1, + sym_subexpression_token, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1416), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(420), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(969), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [43957] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1434), 1, + sym_name_identifier, + ACTIONS(1440), 1, + sym_float_number_literal, + ACTIONS(1443), 1, + sym_number_literal, + ACTIONS(1446), 1, + anon_sym_DQUOTE, + ACTIONS(1449), 1, + anon_sym_SQUOTE, + STATE(941), 1, + sym_literal, + STATE(942), 1, + sym_type_subexpression, + STATE(980), 1, + sym_subexpression_token, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1437), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(421), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(987), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [44036] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(1452), 1, + anon_sym_LPAREN, + ACTIONS(1454), 1, + sym_name_identifier, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + STATE(941), 1, + sym_literal, + STATE(942), 1, + sym_type_subexpression, + STATE(980), 1, + sym_subexpression_token, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1456), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(421), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(987), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [44115] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1452), 1, + anon_sym_LPAREN, + ACTIONS(1454), 1, + sym_name_identifier, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + STATE(941), 1, + sym_literal, + STATE(942), 1, + sym_type_subexpression, + STATE(980), 1, + sym_subexpression_token, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1456), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(422), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(987), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [44194] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(1466), 1, + anon_sym_LPAREN, + STATE(898), 1, + sym_literal, + STATE(904), 1, + sym_type_subexpression, + STATE(957), 1, + sym_subexpression_token, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1468), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(420), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(969), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [44273] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(163), 1, + sym_name_identifier, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + ACTIONS(262), 1, + ts_builtin_sym_end, + ACTIONS(1466), 1, + anon_sym_LPAREN, + STATE(898), 1, + sym_literal, + STATE(904), 1, + sym_type_subexpression, + STATE(957), 1, + sym_subexpression_token, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1468), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(424), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(969), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [44352] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1472), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1470), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44398] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + sym_name_identifier, + ACTIONS(1483), 1, + sym_float_number_literal, + ACTIONS(1486), 1, + sym_number_literal, + ACTIONS(1489), 1, + anon_sym_DQUOTE, + ACTIONS(1492), 1, + anon_sym_SQUOTE, + STATE(971), 1, + sym_literal, + STATE(973), 1, + sym_type_subexpression, + STATE(997), 1, + sym_subexpression_token, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1480), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(427), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(992), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [44476] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1497), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1495), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44522] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(1499), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44570] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1507), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1505), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44616] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1511), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1509), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44662] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1515), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1513), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44708] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1519), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1517), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44754] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1523), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1521), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44800] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1527), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1525), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44846] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(1529), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_literal, + STATE(973), 1, + sym_type_subexpression, + STATE(997), 1, + sym_subexpression_token, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1531), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(440), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(992), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [44924] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1535), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1533), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44970] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1539), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1537), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45016] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1543), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1541), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45062] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(129), 1, + sym_name_identifier, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + ACTIONS(244), 1, + anon_sym_RBRACE, + ACTIONS(1529), 1, + anon_sym_LPAREN, + STATE(971), 1, + sym_literal, + STATE(973), 1, + sym_type_subexpression, + STATE(997), 1, + sym_subexpression_token, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1531), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(427), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(992), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_operator, + [45140] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 6, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45187] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(1545), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45232] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(1549), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45277] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 2, + anon_sym_type, + sym_operator, + ACTIONS(1499), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45324] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(262), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45369] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 2, + anon_sym_type, + sym_operator, + ACTIONS(1549), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45413] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 6, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45457] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 2, + anon_sym_type, + sym_operator, + ACTIONS(1545), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45501] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45547] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_type, + sym_operator, + ACTIONS(262), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45591] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 6, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45635] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 6, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45679] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45725] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45770] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45813] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45856] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45899] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45944] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45987] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46030] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46073] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46115] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46157] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1556), 1, + anon_sym_LBRACE, + ACTIONS(1559), 1, + anon_sym_RBRACE, + ACTIONS(1561), 1, + anon_sym_alias, + ACTIONS(1564), 1, + anon_sym_match, + ACTIONS(1567), 1, + anon_sym_if, + ACTIONS(1570), 1, + anon_sym_do, + ACTIONS(1573), 1, + anon_sym_while, + ACTIONS(1576), 1, + anon_sym_for, + ACTIONS(1579), 1, + anon_sym_loop, + ACTIONS(1582), 1, + anon_sym_SEMI, + ACTIONS(1585), 1, + anon_sym_return, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1553), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(1588), 2, + anon_sym_break, + anon_sym_continue, + STATE(464), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1291), 4, + sym_alias_definition, + sym_variable_definition, + sym_flow_control, + sym_prefixed_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [46229] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46271] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1499), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46315] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1593), 1, + anon_sym_RBRACE, + ACTIONS(1595), 1, + anon_sym_match, + ACTIONS(1597), 1, + anon_sym_if, + ACTIONS(1599), 1, + anon_sym_do, + ACTIONS(1601), 1, + anon_sym_while, + ACTIONS(1603), 1, + anon_sym_for, + ACTIONS(1605), 1, + anon_sym_loop, + ACTIONS(1607), 1, + anon_sym_SEMI, + ACTIONS(1609), 1, + anon_sym_return, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1591), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(1611), 2, + anon_sym_break, + anon_sym_continue, + STATE(468), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1291), 4, + sym_alias_definition, + sym_variable_definition, + sym_flow_control, + sym_prefixed_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [46387] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1595), 1, + anon_sym_match, + ACTIONS(1597), 1, + anon_sym_if, + ACTIONS(1599), 1, + anon_sym_do, + ACTIONS(1601), 1, + anon_sym_while, + ACTIONS(1603), 1, + anon_sym_for, + ACTIONS(1605), 1, + anon_sym_loop, + ACTIONS(1607), 1, + anon_sym_SEMI, + ACTIONS(1609), 1, + anon_sym_return, + ACTIONS(1613), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1591), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(1611), 2, + anon_sym_break, + anon_sym_continue, + STATE(464), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(431), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1291), 4, + sym_alias_definition, + sym_variable_definition, + sym_flow_control, + sym_prefixed_expression, + STATE(618), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [46459] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46543] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46585] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46628] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46671] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46712] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46753] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1551), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1549), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46794] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(262), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46835] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46876] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46917] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46958] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47001] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47042] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47085] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1645), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1643), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47126] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47169] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47212] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1547), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1545), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47253] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 21, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47294] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47334] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47374] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47416] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47456] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47496] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47536] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47576] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47618] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47660] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47700] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1663), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1661), 27, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47740] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47780] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1667), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1665), 27, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47820] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47862] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47902] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47942] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47984] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48024] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48064] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48104] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48144] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48186] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48226] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48266] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48306] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48346] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48388] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48430] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48472] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48514] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48556] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48596] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48638] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48680] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48722] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48764] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48806] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(203), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(205), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [48848] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48890] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48930] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48972] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49012] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49054] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49096] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49138] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49180] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(209), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(211), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [49222] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49262] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49302] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49342] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49382] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49424] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49464] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49504] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49544] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 22, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49584] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49626] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49666] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1671), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1669), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [49705] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49744] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49783] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49824] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49863] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49902] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49943] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49984] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50023] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50064] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50103] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50142] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50181] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50220] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50261] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50302] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50343] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50382] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50421] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50460] = 16, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(11), 1, + anon_sym_partition, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_use, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(21), 1, + anon_sym_def, + ACTIONS(23), 1, + anon_sym_type, + ACTIONS(27), 1, + anon_sym_typeclass, + ACTIONS(1673), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(9), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(25), 2, + anon_sym_struct, + anon_sym_class, + STATE(570), 3, + sym_source_statement, + sym_partition, + aux_sym_source_file_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [50523] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50564] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50603] = 16, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1675), 1, + ts_builtin_sym_end, + ACTIONS(1677), 1, + anon_sym_namespace, + ACTIONS(1683), 1, + anon_sym_partition, + ACTIONS(1686), 1, + anon_sym_import, + ACTIONS(1689), 1, + anon_sym_use, + ACTIONS(1692), 1, + anon_sym_alias, + ACTIONS(1695), 1, + anon_sym_decl, + ACTIONS(1698), 1, + anon_sym_def, + ACTIONS(1701), 1, + anon_sym_type, + ACTIONS(1707), 1, + anon_sym_typeclass, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1680), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(1704), 2, + anon_sym_struct, + anon_sym_class, + STATE(570), 3, + sym_source_statement, + sym_partition, + aux_sym_source_file_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [50666] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50705] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50746] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50787] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50826] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50867] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1710), 1, + ts_builtin_sym_end, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(1716), 1, + sym_typeclass_identifier, + ACTIONS(1718), 1, + sym_name_identifier, + STATE(1755), 1, + aux_sym_name_superexpression_repeat1, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(616), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1113), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + ACTIONS(1712), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [50924] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50963] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51004] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51045] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51086] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51125] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1722), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1720), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [51164] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51203] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51242] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51281] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51322] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51361] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51402] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51443] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51482] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51521] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51560] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51601] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51640] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51681] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51720] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51759] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51798] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51837] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51878] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51917] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51956] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51997] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52036] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52075] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52114] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52155] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52196] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52235] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52274] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52313] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52352] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52391] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52430] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52469] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1724), 1, + ts_builtin_sym_end, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1731), 1, + sym_typeclass_identifier, + ACTIONS(1734), 1, + sym_name_identifier, + STATE(1755), 1, + aux_sym_name_superexpression_repeat1, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1737), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(616), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1113), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + ACTIONS(1726), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [52526] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52567] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1742), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1740), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [52606] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52647] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52686] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52725] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1746), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1744), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [52764] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52803] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52844] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52885] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52926] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52965] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53006] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1750), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1748), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [53045] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53084] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53123] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53164] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1754), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1752), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [53203] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53242] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53283] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53322] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53361] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1758), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1756), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [53400] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53441] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53482] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53523] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1762), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1760), 26, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [53562] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53603] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53644] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53683] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53724] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53763] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53804] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53845] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53884] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53923] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53962] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 21, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54001] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54042] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54083] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54122] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54163] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54203] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1724), 1, + anon_sym_RBRACE, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1764), 1, + sym_typeclass_identifier, + ACTIONS(1767), 1, + sym_name_identifier, + STATE(1758), 1, + aux_sym_name_superexpression_repeat1, + STATE(2028), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1770), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(659), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1149), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + ACTIONS(1726), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [54259] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54299] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54337] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54377] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54417] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54457] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54497] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54537] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54577] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54617] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54657] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54695] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1775), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1773), 25, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [54733] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54773] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54813] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54853] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54891] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54931] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54969] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55009] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55047] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55085] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55123] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55163] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55203] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55241] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55279] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1779), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1777), 25, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [55317] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55355] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55393] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55431] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55469] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55507] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55545] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55583] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55623] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55661] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55699] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55737] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55775] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55813] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55851] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55889] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55927] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55965] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56003] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56041] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56081] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56119] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56157] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56197] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56235] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56273] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56311] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56349] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56387] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56425] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56465] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56503] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56541] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56581] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56619] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56657] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56695] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56733] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56771] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56809] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56847] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56885] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56923] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56961] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56999] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57039] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57077] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57115] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57155] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57193] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57231] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57271] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57309] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57347] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57387] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57427] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57465] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57505] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57545] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57585] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57625] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1710), 1, + anon_sym_RBRACE, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(1781), 1, + sym_typeclass_identifier, + ACTIONS(1783), 1, + sym_name_identifier, + STATE(1758), 1, + aux_sym_name_superexpression_repeat1, + STATE(2028), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1785), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(659), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1149), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + ACTIONS(1712), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [57681] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57721] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57759] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57797] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57837] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57875] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57915] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57953] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57993] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 18, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58031] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1787), 1, + anon_sym_LPAREN, + ACTIONS(1789), 1, + sym_name_identifier, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + STATE(1255), 1, + aux_sym_name_superexpression_repeat1, + STATE(1311), 1, + sym_literal, + STATE(1317), 1, + sym_type_subexpression, + STATE(1344), 1, + sym_subexpression_token, + STATE(1563), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1791), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(769), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + STATE(1343), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 5, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [58101] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58141] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58179] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58219] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58259] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58297] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58337] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58377] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58417] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1787), 1, + anon_sym_LPAREN, + ACTIONS(1789), 1, + sym_name_identifier, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + STATE(1255), 1, + aux_sym_name_superexpression_repeat1, + STATE(1311), 1, + sym_literal, + STATE(1317), 1, + sym_type_subexpression, + STATE(1344), 1, + sym_subexpression_token, + STATE(1563), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1791), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(757), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + STATE(1343), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 5, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [58487] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58525] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58563] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(1801), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + sym_name_identifier, + ACTIONS(1810), 1, + sym_float_number_literal, + ACTIONS(1813), 1, + sym_number_literal, + ACTIONS(1816), 1, + anon_sym_DQUOTE, + ACTIONS(1819), 1, + anon_sym_SQUOTE, + STATE(1255), 1, + aux_sym_name_superexpression_repeat1, + STATE(1311), 1, + sym_literal, + STATE(1317), 1, + sym_type_subexpression, + STATE(1344), 1, + sym_subexpression_token, + STATE(1563), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1807), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(769), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + STATE(1343), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 5, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [58633] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58671] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58711] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58749] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58789] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58829] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58869] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58909] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58947] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58985] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59023] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59063] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59103] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 20, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59141] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59180] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(23), 1, + anon_sym_type, + ACTIONS(1824), 1, + anon_sym_import, + ACTIONS(1826), 1, + anon_sym_use, + ACTIONS(1828), 1, + anon_sym_def, + ACTIONS(1830), 1, + anon_sym_typeclass, + STATE(2273), 1, + sym_sources, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(25), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(1822), 2, + anon_sym_const, + anon_sym_var, + STATE(795), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [59239] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59276] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59315] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59352] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59389] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1834), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1832), 24, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [59426] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59465] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(23), 1, + anon_sym_type, + ACTIONS(1824), 1, + anon_sym_import, + ACTIONS(1826), 1, + anon_sym_use, + ACTIONS(1828), 1, + anon_sym_def, + ACTIONS(1830), 1, + anon_sym_typeclass, + STATE(2202), 1, + sym_sources, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(25), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(1822), 2, + anon_sym_const, + anon_sym_var, + STATE(795), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [59524] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59563] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59600] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59639] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(23), 1, + anon_sym_type, + ACTIONS(1824), 1, + anon_sym_import, + ACTIONS(1826), 1, + anon_sym_use, + ACTIONS(1828), 1, + anon_sym_def, + ACTIONS(1830), 1, + anon_sym_typeclass, + ACTIONS(1836), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(25), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(1822), 2, + anon_sym_const, + anon_sym_var, + STATE(876), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [59698] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59735] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59772] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59809] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59848] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59885] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59922] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59959] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59998] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60037] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60074] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60111] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60148] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60185] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60224] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60263] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60300] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60339] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60376] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60415] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60452] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60489] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60526] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60563] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60600] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_alias, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(23), 1, + anon_sym_type, + ACTIONS(1824), 1, + anon_sym_import, + ACTIONS(1826), 1, + anon_sym_use, + ACTIONS(1828), 1, + anon_sym_def, + ACTIONS(1830), 1, + anon_sym_typeclass, + STATE(2325), 1, + sym_sources, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(25), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(1822), 2, + anon_sym_const, + anon_sym_var, + STATE(795), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [60659] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60698] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60735] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(1838), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + sym_name_identifier, + ACTIONS(1847), 1, + sym_float_number_literal, + ACTIONS(1850), 1, + sym_number_literal, + ACTIONS(1853), 1, + anon_sym_DQUOTE, + ACTIONS(1856), 1, + anon_sym_SQUOTE, + STATE(1264), 1, + aux_sym_name_superexpression_repeat1, + STATE(1378), 1, + sym_type_subexpression, + STATE(1381), 1, + sym_literal, + STATE(1395), 1, + sym_subexpression_token, + STATE(1575), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1844), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(823), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + STATE(1414), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [60804] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym_LPAREN, + ACTIONS(1861), 1, + sym_name_identifier, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_SQUOTE, + STATE(1264), 1, + aux_sym_name_superexpression_repeat1, + STATE(1378), 1, + sym_type_subexpression, + STATE(1381), 1, + sym_literal, + STATE(1395), 1, + sym_subexpression_token, + STATE(1575), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1863), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(823), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + STATE(1414), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [60873] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60910] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60949] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym_LPAREN, + ACTIONS(1861), 1, + sym_name_identifier, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_SQUOTE, + STATE(1264), 1, + aux_sym_name_superexpression_repeat1, + STATE(1378), 1, + sym_type_subexpression, + STATE(1381), 1, + sym_literal, + STATE(1395), 1, + sym_subexpression_token, + STATE(1575), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1863), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(824), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + STATE(1414), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [61018] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61055] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61094] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61131] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61168] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61207] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61244] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61283] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61322] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61361] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61398] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(1875), 1, + anon_sym_type, + STATE(120), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(871), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(1873), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [61447] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61486] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61523] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + ACTIONS(1877), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, + sym_name_identifier, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1375), 1, + sym_type_subexpression, + STATE(1386), 1, + sym_subexpression_token, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1881), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(846), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(1387), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 4, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [61592] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61629] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61666] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61703] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61740] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + ACTIONS(1877), 1, + anon_sym_LPAREN, + ACTIONS(1879), 1, + sym_name_identifier, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1375), 1, + sym_type_subexpression, + STATE(1386), 1, + sym_subexpression_token, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1881), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(852), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(1387), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 4, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [61809] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61846] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61883] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61920] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61957] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61994] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(1883), 1, + anon_sym_LPAREN, + ACTIONS(1886), 1, + sym_name_identifier, + ACTIONS(1892), 1, + sym_float_number_literal, + ACTIONS(1895), 1, + sym_number_literal, + ACTIONS(1898), 1, + anon_sym_DQUOTE, + ACTIONS(1901), 1, + anon_sym_SQUOTE, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1375), 1, + sym_type_subexpression, + STATE(1386), 1, + sym_subexpression_token, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1889), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(852), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(1387), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 4, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + [62063] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62100] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62137] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62174] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62211] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62250] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62287] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62324] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62361] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62398] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62437] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1906), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1904), 24, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [62474] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62513] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62550] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62589] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62628] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62667] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62704] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62743] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(1910), 1, + anon_sym_type, + STATE(120), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(115), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(1908), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [62792] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62831] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62870] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62907] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62944] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1912), 1, + anon_sym_namespace, + ACTIONS(1918), 1, + anon_sym_RBRACE, + ACTIONS(1920), 1, + anon_sym_import, + ACTIONS(1923), 1, + anon_sym_use, + ACTIONS(1926), 1, + anon_sym_alias, + ACTIONS(1929), 1, + anon_sym_decl, + ACTIONS(1932), 1, + anon_sym_def, + ACTIONS(1935), 1, + anon_sym_type, + ACTIONS(1941), 1, + anon_sym_typeclass, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1915), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(1938), 2, + anon_sym_struct, + anon_sym_class, + STATE(876), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1278), 10, + sym_namespace, + sym_import_statement, + sym_usage_definition, + sym_alias_definition, + sym_variable_definition, + sym__function_declaration_statement, + sym_function_definition, + sym_alias_type_definition, + sym_type_definition, + sym_typeclass_definition, + [63003] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63040] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 17, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63077] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63116] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63153] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63190] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + sym_name_identifier, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(1956), 1, + anon_sym_SQUOTE, + STATE(1259), 1, + aux_sym_name_superexpression_repeat1, + STATE(1373), 1, + sym_type_subexpression, + STATE(1382), 1, + sym_literal, + STATE(1392), 1, + sym_subexpression_token, + STATE(1527), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1948), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(883), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + STATE(1415), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 4, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [63259] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + sym_name_identifier, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(1956), 1, + anon_sym_SQUOTE, + STATE(1259), 1, + aux_sym_name_superexpression_repeat1, + STATE(1373), 1, + sym_type_subexpression, + STATE(1382), 1, + sym_literal, + STATE(1392), 1, + sym_subexpression_token, + STATE(1527), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1948), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(884), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + STATE(1415), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 4, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [63328] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(1958), 1, + anon_sym_LPAREN, + ACTIONS(1961), 1, + sym_name_identifier, + ACTIONS(1967), 1, + sym_float_number_literal, + ACTIONS(1970), 1, + sym_number_literal, + ACTIONS(1973), 1, + anon_sym_DQUOTE, + ACTIONS(1976), 1, + anon_sym_SQUOTE, + STATE(1259), 1, + aux_sym_name_superexpression_repeat1, + STATE(1373), 1, + sym_type_subexpression, + STATE(1382), 1, + sym_literal, + STATE(1392), 1, + sym_subexpression_token, + STATE(1527), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1964), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(884), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + STATE(1415), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 4, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [63397] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63436] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63473] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63510] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63549] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63586] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63625] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63664] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 19, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63701] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63740] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63779] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63817] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63855] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63891] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63929] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63965] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64001] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(1979), 1, + anon_sym_LPAREN, + ACTIONS(1982), 1, + sym_name_identifier, + ACTIONS(1988), 1, + sym_float_number_literal, + ACTIONS(1991), 1, + sym_number_literal, + ACTIONS(1994), 1, + anon_sym_DQUOTE, + ACTIONS(1997), 1, + anon_sym_SQUOTE, + STATE(1257), 1, + aux_sym_name_superexpression_repeat1, + STATE(1397), 1, + sym_type_subexpression, + STATE(1419), 1, + sym_literal, + STATE(1485), 1, + sym_subexpression_token, + STATE(1536), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1985), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(901), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + STATE(1478), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [64069] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(2000), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + sym_name_identifier, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(2012), 1, + anon_sym_SQUOTE, + STATE(1257), 1, + aux_sym_name_superexpression_repeat1, + STATE(1397), 1, + sym_type_subexpression, + STATE(1419), 1, + sym_literal, + STATE(1485), 1, + sym_subexpression_token, + STATE(1536), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2004), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(901), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + STATE(1478), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [64137] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(2000), 1, + anon_sym_LPAREN, + ACTIONS(2002), 1, + sym_name_identifier, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(2012), 1, + anon_sym_SQUOTE, + STATE(1257), 1, + aux_sym_name_superexpression_repeat1, + STATE(1397), 1, + sym_type_subexpression, + STATE(1419), 1, + sym_literal, + STATE(1485), 1, + sym_subexpression_token, + STATE(1536), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2004), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(902), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + STATE(1478), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [64205] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64243] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64281] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64317] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64355] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64391] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64429] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64465] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64537] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64573] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64609] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64645] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64681] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64717] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64755] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64791] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64827] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64863] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64899] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 16, + anon_sym_const, + anon_sym_var, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64935] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64971] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65007] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65043] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65081] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65117] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65153] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65189] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65225] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65261] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65299] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + ACTIONS(2014), 1, + anon_sym_LPAREN, + ACTIONS(2016), 1, + sym_name_identifier, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1409), 1, + sym_type_subexpression, + STATE(1410), 1, + sym_literal, + STATE(1498), 1, + sym_subexpression_token, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2018), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(952), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(1489), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + [65367] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65405] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65441] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65479] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65517] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65553] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65591] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65629] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65667] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65703] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(2020), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + sym_name_identifier, + ACTIONS(2029), 1, + sym_float_number_literal, + ACTIONS(2032), 1, + sym_number_literal, + ACTIONS(2035), 1, + anon_sym_DQUOTE, + ACTIONS(2038), 1, + anon_sym_SQUOTE, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1412), 1, + sym_type_subexpression, + STATE(1463), 1, + sym_subexpression_token, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2026), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(944), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(1466), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_elif, + anon_sym_else, + sym_operator, + [65771] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(2041), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + sym_name_identifier, + ACTIONS(2050), 1, + sym_float_number_literal, + ACTIONS(2053), 1, + sym_number_literal, + ACTIONS(2056), 1, + anon_sym_DQUOTE, + ACTIONS(2059), 1, + anon_sym_SQUOTE, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1409), 1, + sym_type_subexpression, + STATE(1410), 1, + sym_literal, + STATE(1498), 1, + sym_subexpression_token, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(945), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(1489), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + [65839] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65877] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65913] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65951] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + ACTIONS(2062), 1, + anon_sym_LPAREN, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1412), 1, + sym_type_subexpression, + STATE(1463), 1, + sym_subexpression_token, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2064), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(944), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(1466), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_elif, + anon_sym_else, + sym_operator, + [66019] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66055] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66091] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + ACTIONS(2014), 1, + anon_sym_LPAREN, + ACTIONS(2016), 1, + sym_name_identifier, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1409), 1, + sym_type_subexpression, + STATE(1410), 1, + sym_literal, + STATE(1498), 1, + sym_subexpression_token, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2018), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(945), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(1489), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + [66159] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1042), 1, + sym_name_identifier, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + ACTIONS(2062), 1, + anon_sym_LPAREN, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1412), 1, + sym_type_subexpression, + STATE(1463), 1, + sym_subexpression_token, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2064), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(949), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(1466), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_elif, + anon_sym_else, + sym_operator, + [66227] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 18, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66263] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66298] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2066), 1, + anon_sym_LPAREN, + ACTIONS(2069), 1, + sym_name_identifier, + ACTIONS(2075), 1, + sym_float_number_literal, + ACTIONS(2078), 1, + sym_number_literal, + ACTIONS(2081), 1, + anon_sym_DQUOTE, + ACTIONS(2084), 1, + anon_sym_SQUOTE, + STATE(1299), 1, + aux_sym_name_superexpression_repeat1, + STATE(1504), 1, + sym_type_subexpression, + STATE(1513), 1, + sym_literal, + STATE(1546), 1, + sym_subexpression_token, + STATE(1633), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2072), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(956), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + STATE(1525), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + [66363] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66398] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2090), 1, + sym_name_identifier, + ACTIONS(2096), 1, + sym_float_number_literal, + ACTIONS(2099), 1, + sym_number_literal, + ACTIONS(2102), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + STATE(1319), 1, + aux_sym_name_superexpression_repeat1, + STATE(1465), 1, + sym_literal, + STATE(1467), 1, + sym_type_subexpression, + STATE(1587), 1, + sym_subexpression_token, + STATE(1694), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2093), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(958), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + STATE(1534), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + [66463] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66498] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2111), 1, + sym_name_identifier, + ACTIONS(2117), 1, + sym_float_number_literal, + ACTIONS(2120), 1, + sym_number_literal, + ACTIONS(2123), 1, + anon_sym_DQUOTE, + ACTIONS(2126), 1, + anon_sym_SQUOTE, + STATE(1315), 1, + aux_sym_name_superexpression_repeat1, + STATE(1477), 1, + sym_literal, + STATE(1479), 1, + sym_type_subexpression, + STATE(1573), 1, + sym_subexpression_token, + STATE(1667), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2114), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(960), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + STATE(1528), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_AMP, + anon_sym_then, + sym_operator, + [66563] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2129), 1, + anon_sym_LPAREN, + ACTIONS(2131), 1, + sym_name_identifier, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + STATE(1319), 1, + aux_sym_name_superexpression_repeat1, + STATE(1465), 1, + sym_literal, + STATE(1467), 1, + sym_type_subexpression, + STATE(1587), 1, + sym_subexpression_token, + STATE(1694), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2133), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(966), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + STATE(1534), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + [66628] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66663] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + ACTIONS(2143), 1, + anon_sym_LPAREN, + ACTIONS(2145), 1, + sym_name_identifier, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1450), 1, + sym_type_subexpression, + STATE(1654), 1, + sym_subexpression_token, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(2147), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(979), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(1611), 2, + sym_scoped_statement, + sym_name_superexpression, + [66730] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2151), 1, + sym_name_identifier, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1441), 1, + sym_type_subexpression, + STATE(1683), 1, + sym_subexpression_token, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2153), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(978), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(1617), 2, + sym_scoped_statement, + sym_name_superexpression, + [66797] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(2163), 1, + anon_sym_LPAREN, + ACTIONS(2166), 1, + sym_name_identifier, + ACTIONS(2172), 1, + sym_float_number_literal, + ACTIONS(2175), 1, + sym_number_literal, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2181), 1, + anon_sym_SQUOTE, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1441), 1, + sym_type_subexpression, + STATE(1683), 1, + sym_subexpression_token, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2169), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(965), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(1617), 2, + sym_scoped_statement, + sym_name_superexpression, + [66864] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2129), 1, + anon_sym_LPAREN, + ACTIONS(2131), 1, + sym_name_identifier, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + STATE(1319), 1, + aux_sym_name_superexpression_repeat1, + STATE(1465), 1, + sym_literal, + STATE(1467), 1, + sym_type_subexpression, + STATE(1587), 1, + sym_subexpression_token, + STATE(1694), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2133), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(958), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + STATE(1534), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + [66929] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2184), 1, + anon_sym_LPAREN, + ACTIONS(2186), 1, + sym_name_identifier, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_SQUOTE, + STATE(1277), 1, + aux_sym_name_superexpression_repeat1, + STATE(1486), 1, + sym_literal, + STATE(1503), 1, + sym_type_subexpression, + STATE(1548), 1, + sym_subexpression_token, + STATE(1649), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2188), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(972), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + STATE(1583), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_AMP, + anon_sym_while, + sym_operator, + [66994] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2198), 1, + anon_sym_LPAREN, + ACTIONS(2200), 1, + sym_name_identifier, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_SQUOTE, + STATE(1315), 1, + aux_sym_name_superexpression_repeat1, + STATE(1477), 1, + sym_literal, + STATE(1479), 1, + sym_type_subexpression, + STATE(1573), 1, + sym_subexpression_token, + STATE(1667), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2202), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(982), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + STATE(1528), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_AMP, + anon_sym_then, + sym_operator, + [67059] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67094] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67129] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67166] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2184), 1, + anon_sym_LPAREN, + ACTIONS(2186), 1, + sym_name_identifier, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_SQUOTE, + STATE(1277), 1, + aux_sym_name_superexpression_repeat1, + STATE(1486), 1, + sym_literal, + STATE(1503), 1, + sym_type_subexpression, + STATE(1548), 1, + sym_subexpression_token, + STATE(1649), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2188), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(977), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + STATE(1583), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_AMP, + anon_sym_while, + sym_operator, + [67231] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67268] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67303] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67338] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67375] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2212), 1, + anon_sym_LPAREN, + ACTIONS(2215), 1, + sym_name_identifier, + ACTIONS(2221), 1, + sym_float_number_literal, + ACTIONS(2224), 1, + sym_number_literal, + ACTIONS(2227), 1, + anon_sym_DQUOTE, + ACTIONS(2230), 1, + anon_sym_SQUOTE, + STATE(1277), 1, + aux_sym_name_superexpression_repeat1, + STATE(1486), 1, + sym_literal, + STATE(1503), 1, + sym_type_subexpression, + STATE(1548), 1, + sym_subexpression_token, + STATE(1649), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2218), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(977), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + STATE(1583), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(217), 3, + anon_sym_AMP, + anon_sym_while, + sym_operator, + [67440] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2151), 1, + sym_name_identifier, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1441), 1, + sym_type_subexpression, + STATE(1683), 1, + sym_subexpression_token, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2153), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(965), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(1617), 2, + sym_scoped_statement, + sym_name_superexpression, + [67507] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(2233), 1, + anon_sym_LPAREN, + ACTIONS(2236), 1, + sym_name_identifier, + ACTIONS(2242), 1, + sym_float_number_literal, + ACTIONS(2245), 1, + sym_number_literal, + ACTIONS(2248), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1450), 1, + sym_type_subexpression, + STATE(1654), 1, + sym_subexpression_token, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(2239), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(979), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(1611), 2, + sym_scoped_statement, + sym_name_superexpression, + [67574] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67609] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67644] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2198), 1, + anon_sym_LPAREN, + ACTIONS(2200), 1, + sym_name_identifier, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_SQUOTE, + STATE(1315), 1, + aux_sym_name_superexpression_repeat1, + STATE(1477), 1, + sym_literal, + STATE(1479), 1, + sym_type_subexpression, + STATE(1573), 1, + sym_subexpression_token, + STATE(1667), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2202), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(960), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + STATE(1528), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_AMP, + anon_sym_then, + sym_operator, + [67709] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67744] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2256), 1, + sym_name_identifier, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + STATE(1299), 1, + aux_sym_name_superexpression_repeat1, + STATE(1504), 1, + sym_type_subexpression, + STATE(1513), 1, + sym_literal, + STATE(1546), 1, + sym_subexpression_token, + STATE(1633), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2258), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(989), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + STATE(1525), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(260), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + [67809] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67846] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67881] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 17, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67916] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + ACTIONS(2143), 1, + anon_sym_LPAREN, + ACTIONS(2145), 1, + sym_name_identifier, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1450), 1, + sym_type_subexpression, + STATE(1654), 1, + sym_subexpression_token, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(2147), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(963), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(1611), 2, + sym_scoped_statement, + sym_name_superexpression, + [67983] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2256), 1, + sym_name_identifier, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + STATE(1299), 1, + aux_sym_name_superexpression_repeat1, + STATE(1504), 1, + sym_type_subexpression, + STATE(1513), 1, + sym_literal, + STATE(1546), 1, + sym_subexpression_token, + STATE(1633), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2258), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(956), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + STATE(1525), 2, + sym_scoped_statement, + sym_name_superexpression, + ACTIONS(242), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + [68048] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68085] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68122] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68156] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + ACTIONS(2268), 1, + anon_sym_LPAREN, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1639), 1, + sym_type_subexpression, + STATE(1692), 1, + sym_literal, + STATE(1699), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_do, + sym_operator, + ACTIONS(2270), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1004), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(1701), 2, + sym_scoped_statement, + sym_name_superexpression, + [68220] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1024), 1, + sym_name_identifier, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + ACTIONS(2268), 1, + anon_sym_LPAREN, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1639), 1, + sym_type_subexpression, + STATE(1692), 1, + sym_literal, + STATE(1699), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_do, + sym_operator, + ACTIONS(2270), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(993), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(1701), 2, + sym_scoped_statement, + sym_name_superexpression, + [68284] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + sym_name_identifier, + ACTIONS(2281), 1, + sym_float_number_literal, + ACTIONS(2284), 1, + sym_number_literal, + ACTIONS(2287), 1, + anon_sym_DQUOTE, + ACTIONS(2290), 1, + anon_sym_SQUOTE, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1621), 1, + sym_type_subexpression, + STATE(1671), 1, + sym_literal, + STATE(1697), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_while, + sym_operator, + ACTIONS(2278), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(995), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(1705), 2, + sym_scoped_statement, + sym_name_superexpression, + [68348] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + ACTIONS(2293), 1, + anon_sym_LPAREN, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1621), 1, + sym_type_subexpression, + STATE(1671), 1, + sym_literal, + STATE(1697), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_while, + sym_operator, + ACTIONS(2295), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(995), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(1705), 2, + sym_scoped_statement, + sym_name_superexpression, + [68412] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 16, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68446] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(974), 1, + sym_name_identifier, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + ACTIONS(2293), 1, + anon_sym_LPAREN, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1621), 1, + sym_type_subexpression, + STATE(1671), 1, + sym_literal, + STATE(1697), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_while, + sym_operator, + ACTIONS(2295), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(996), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(1705), 2, + sym_scoped_statement, + sym_name_superexpression, + [68510] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2297), 1, + anon_sym_LPAREN, + ACTIONS(2300), 1, + sym_name_identifier, + ACTIONS(2306), 1, + sym_float_number_literal, + ACTIONS(2309), 1, + sym_number_literal, + ACTIONS(2312), 1, + anon_sym_DQUOTE, + ACTIONS(2315), 1, + anon_sym_SQUOTE, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1653), 1, + sym_type_subexpression, + STATE(1686), 1, + sym_literal, + STATE(1702), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_then, + sym_operator, + ACTIONS(2303), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(999), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(1708), 2, + sym_scoped_statement, + sym_name_superexpression, + [68574] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1653), 1, + sym_type_subexpression, + STATE(1686), 1, + sym_literal, + STATE(1702), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_then, + sym_operator, + ACTIONS(2320), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(999), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(1708), 2, + sym_scoped_statement, + sym_name_superexpression, + [68638] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2322), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + sym_name_identifier, + ACTIONS(2331), 1, + sym_float_number_literal, + ACTIONS(2334), 1, + sym_number_literal, + ACTIONS(2337), 1, + anon_sym_DQUOTE, + ACTIONS(2340), 1, + anon_sym_SQUOTE, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(1624), 1, + sym_type_subexpression, + STATE(1707), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_with, + sym_operator, + ACTIONS(2328), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1001), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(1698), 2, + sym_scoped_statement, + sym_name_superexpression, + [68702] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + ACTIONS(2343), 1, + anon_sym_LPAREN, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(1624), 1, + sym_type_subexpression, + STATE(1707), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(242), 2, + anon_sym_with, + sym_operator, + ACTIONS(2345), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1001), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(1698), 2, + sym_scoped_statement, + sym_name_superexpression, + [68766] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1123), 1, + sym_name_identifier, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + ACTIONS(2343), 1, + anon_sym_LPAREN, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(1624), 1, + sym_type_subexpression, + STATE(1707), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_with, + sym_operator, + ACTIONS(2345), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1002), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(1698), 2, + sym_scoped_statement, + sym_name_superexpression, + [68830] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + sym_name_identifier, + ACTIONS(2356), 1, + sym_float_number_literal, + ACTIONS(2359), 1, + sym_number_literal, + ACTIONS(2362), 1, + anon_sym_DQUOTE, + ACTIONS(2365), 1, + anon_sym_SQUOTE, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1639), 1, + sym_type_subexpression, + STATE(1692), 1, + sym_literal, + STATE(1699), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(217), 2, + anon_sym_do, + sym_operator, + ACTIONS(2353), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1004), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(1701), 2, + sym_scoped_statement, + sym_name_superexpression, + [68894] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2370), 1, + anon_sym_type, + ACTIONS(2372), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + ACTIONS(2368), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [68934] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(217), 1, + sym_operator, + ACTIONS(219), 1, + anon_sym_RPAREN, + ACTIONS(2378), 1, + anon_sym_LPAREN, + ACTIONS(2381), 1, + sym_name_identifier, + ACTIONS(2387), 1, + sym_float_number_literal, + ACTIONS(2390), 1, + sym_number_literal, + ACTIONS(2393), 1, + anon_sym_DQUOTE, + ACTIONS(2396), 1, + anon_sym_SQUOTE, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(1579), 1, + sym_type_subexpression, + STATE(1704), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2384), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1006), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(1710), 2, + sym_scoped_statement, + sym_name_superexpression, + [69000] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2399), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(209), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + [69038] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(242), 1, + sym_operator, + ACTIONS(244), 1, + anon_sym_RPAREN, + ACTIONS(2401), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym_name_identifier, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(1579), 1, + sym_type_subexpression, + STATE(1704), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2405), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1006), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(1710), 2, + sym_scoped_statement, + sym_name_superexpression, + [69104] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1006), 1, + sym_name_identifier, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_LPAREN, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1653), 1, + sym_type_subexpression, + STATE(1686), 1, + sym_literal, + STATE(1702), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 2, + anon_sym_then, + sym_operator, + ACTIONS(2320), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1000), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(1708), 2, + sym_scoped_statement, + sym_name_superexpression, + [69168] = 20, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(260), 1, + sym_operator, + ACTIONS(262), 1, + anon_sym_RPAREN, + ACTIONS(2401), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym_name_identifier, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(1579), 1, + sym_type_subexpression, + STATE(1704), 1, + sym_subexpression_token, + STATE(2248), 1, + sym_name_subsuperexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2405), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1008), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(1710), 2, + sym_scoped_statement, + sym_name_superexpression, + [69234] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(998), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2409), 1, + sym_name_identifier, + STATE(191), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(470), 1, + sym_subexpression, + STATE(885), 1, + sym_literal, + STATE(1262), 1, + aux_sym_name_superexpression_repeat1, + STATE(1689), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69297] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(2411), 1, + sym_name_identifier, + STATE(160), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(469), 1, + sym_subexpression, + STATE(662), 1, + sym_literal, + STATE(1316), 1, + aux_sym_name_superexpression_repeat1, + STATE(1696), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69360] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + sym_name_identifier, + STATE(445), 1, + sym_scoped_statement, + STATE(968), 1, + sym_name_superexpression, + STATE(1315), 1, + aux_sym_name_superexpression_repeat1, + STATE(1477), 1, + sym_literal, + STATE(1667), 1, + aux_sym_name_superexpression_repeat2, + STATE(2001), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69423] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + sym_name_identifier, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(984), 1, + sym_name_superexpression, + STATE(1299), 1, + aux_sym_name_superexpression_repeat1, + STATE(1513), 1, + sym_literal, + STATE(1633), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69486] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + ACTIONS(2419), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(1003), 1, + sym_name_superexpression, + STATE(1302), 1, + aux_sym_name_superexpression_repeat1, + STATE(1618), 1, + sym_literal, + STATE(1622), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69549] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(276), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + sym_name_identifier, + STATE(124), 1, + sym_name_superexpression, + STATE(455), 1, + sym_subexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(524), 1, + sym_literal, + STATE(1266), 1, + aux_sym_name_superexpression_repeat1, + STATE(1539), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69612] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + sym_name_identifier, + STATE(445), 1, + sym_scoped_statement, + STATE(984), 1, + sym_name_superexpression, + STATE(1299), 1, + aux_sym_name_superexpression_repeat1, + STATE(1513), 1, + sym_literal, + STATE(1633), 1, + aux_sym_name_superexpression_repeat2, + STATE(1997), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69675] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2002), 1, + sym_name_identifier, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(2012), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(462), 1, + sym_scoped_statement, + STATE(903), 1, + sym_name_superexpression, + STATE(1257), 1, + aux_sym_name_superexpression_repeat1, + STATE(1419), 1, + sym_literal, + STATE(1536), 1, + aux_sym_name_superexpression_repeat2, + STATE(1939), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69738] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + sym_name_identifier, + STATE(148), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(470), 1, + sym_subexpression, + STATE(578), 1, + sym_literal, + STATE(1253), 1, + aux_sym_name_superexpression_repeat1, + STATE(1541), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69801] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(2427), 1, + sym_name_identifier, + STATE(258), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(857), 1, + sym_literal, + STATE(1328), 1, + aux_sym_name_superexpression_repeat1, + STATE(1560), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69864] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(556), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym_name_identifier, + STATE(156), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(607), 1, + sym_literal, + STATE(1163), 1, + sym_subexpression, + STATE(1320), 1, + aux_sym_name_superexpression_repeat1, + STATE(1545), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69927] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2433), 1, + sym_name_identifier, + STATE(168), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(771), 1, + sym_literal, + STATE(1178), 1, + sym_subexpression, + STATE(1260), 1, + aux_sym_name_superexpression_repeat1, + STATE(1558), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [69990] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(556), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym_name_identifier, + STATE(156), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(452), 1, + sym_subexpression, + STATE(607), 1, + sym_literal, + STATE(1320), 1, + aux_sym_name_superexpression_repeat1, + STATE(1545), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70053] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + sym_name_identifier, + STATE(394), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(786), 1, + sym_literal, + STATE(1223), 1, + sym_subexpression, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70116] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2437), 1, + sym_name_identifier, + STATE(143), 1, + sym_name_superexpression, + STATE(455), 1, + sym_subexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(649), 1, + sym_literal, + STATE(1276), 1, + aux_sym_name_superexpression_repeat1, + STATE(1551), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70179] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2002), 1, + sym_name_identifier, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(2012), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(462), 1, + sym_scoped_statement, + STATE(470), 1, + sym_subexpression, + STATE(903), 1, + sym_name_superexpression, + STATE(1257), 1, + aux_sym_name_superexpression_repeat1, + STATE(1419), 1, + sym_literal, + STATE(1536), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70242] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(2439), 1, + sym_name_identifier, + STATE(171), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(753), 1, + sym_literal, + STATE(1199), 1, + sym_subexpression, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70305] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + sym_name_identifier, + STATE(133), 1, + sym_name_superexpression, + STATE(457), 1, + sym_subexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(505), 1, + sym_literal, + STATE(1312), 1, + aux_sym_name_superexpression_repeat1, + STATE(1679), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70368] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + sym_name_identifier, + STATE(170), 1, + sym_name_superexpression, + STATE(457), 1, + sym_subexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(760), 1, + sym_literal, + STATE(1304), 1, + aux_sym_name_superexpression_repeat1, + STATE(1615), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70431] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2151), 1, + sym_name_identifier, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + STATE(445), 1, + sym_scoped_statement, + STATE(964), 1, + sym_name_superexpression, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(2016), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70494] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + sym_name_identifier, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(961), 1, + sym_name_superexpression, + STATE(1319), 1, + aux_sym_name_superexpression_repeat1, + STATE(1465), 1, + sym_literal, + STATE(1694), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70557] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1946), 1, + sym_name_identifier, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(1956), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + STATE(455), 1, + sym_subexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(882), 1, + sym_name_superexpression, + STATE(1259), 1, + aux_sym_name_superexpression_repeat1, + STATE(1382), 1, + sym_literal, + STATE(1527), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70620] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2447), 1, + sym_name_identifier, + STATE(165), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(781), 1, + sym_literal, + STATE(1205), 1, + sym_subexpression, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70683] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + ACTIONS(2449), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(953), 1, + sym_name_superexpression, + STATE(1301), 1, + aux_sym_name_superexpression_repeat1, + STATE(1411), 1, + sym_literal, + STATE(1591), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70746] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(675), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + sym_name_identifier, + STATE(161), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(470), 1, + sym_subexpression, + STATE(775), 1, + sym_literal, + STATE(1271), 1, + aux_sym_name_superexpression_repeat1, + STATE(1553), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70809] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_name_identifier, + STATE(146), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(586), 1, + sym_literal, + STATE(1313), 1, + aux_sym_name_superexpression_repeat1, + STATE(1569), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70872] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + sym_name_identifier, + STATE(151), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(469), 1, + sym_subexpression, + STATE(580), 1, + sym_literal, + STATE(1288), 1, + aux_sym_name_superexpression_repeat1, + STATE(1602), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70935] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_name_identifier, + STATE(418), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(487), 1, + sym_subexpression, + STATE(948), 1, + sym_literal, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [70998] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2459), 1, + sym_name_identifier, + STATE(158), 1, + sym_name_superexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(673), 1, + sym_literal, + STATE(1197), 1, + sym_subexpression, + STATE(1263), 1, + aux_sym_name_superexpression_repeat1, + STATE(1524), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71061] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + ACTIONS(2016), 1, + sym_name_identifier, + STATE(465), 1, + sym_scoped_statement, + STATE(469), 1, + sym_subexpression, + STATE(934), 1, + sym_name_superexpression, + STATE(1285), 1, + aux_sym_name_superexpression_repeat1, + STATE(1410), 1, + sym_literal, + STATE(1597), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71124] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(2403), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(1010), 1, + sym_name_superexpression, + STATE(1314), 1, + aux_sym_name_superexpression_repeat1, + STATE(1555), 1, + sym_literal, + STATE(1561), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71187] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(998), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2409), 1, + sym_name_identifier, + STATE(191), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(885), 1, + sym_literal, + STATE(1221), 1, + sym_subexpression, + STATE(1262), 1, + aux_sym_name_superexpression_repeat1, + STATE(1689), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71250] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2461), 1, + sym_name_identifier, + STATE(445), 1, + sym_scoped_statement, + STATE(967), 1, + sym_name_superexpression, + STATE(1277), 1, + aux_sym_name_superexpression_repeat1, + STATE(1486), 1, + sym_literal, + STATE(1649), 1, + aux_sym_name_superexpression_repeat2, + STATE(1977), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71313] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + sym_name_identifier, + STATE(423), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(941), 1, + sym_literal, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71376] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_name_identifier, + STATE(425), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(898), 1, + sym_literal, + STATE(1336), 1, + aux_sym_name_superexpression_repeat1, + STATE(1582), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71439] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2447), 1, + sym_name_identifier, + STATE(165), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(781), 1, + sym_literal, + STATE(1208), 1, + sym_subexpression, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71502] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1946), 1, + sym_name_identifier, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(1956), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + STATE(456), 1, + sym_scoped_statement, + STATE(882), 1, + sym_name_superexpression, + STATE(1259), 1, + aux_sym_name_superexpression_repeat1, + STATE(1382), 1, + sym_literal, + STATE(1527), 1, + aux_sym_name_superexpression_repeat2, + STATE(1828), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71565] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(276), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + sym_name_identifier, + STATE(124), 1, + sym_name_superexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(524), 1, + sym_literal, + STATE(1111), 1, + sym_subexpression, + STATE(1266), 1, + aux_sym_name_superexpression_repeat1, + STATE(1539), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71628] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(2467), 1, + sym_name_identifier, + STATE(175), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(660), 1, + sym_literal, + STATE(1250), 1, + aux_sym_name_superexpression_repeat1, + STATE(1673), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71691] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(2439), 1, + sym_name_identifier, + STATE(171), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(487), 1, + sym_subexpression, + STATE(753), 1, + sym_literal, + STATE(1310), 1, + aux_sym_name_superexpression_repeat1, + STATE(1657), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71754] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(542), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + sym_name_identifier, + STATE(144), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(619), 1, + sym_literal, + STATE(1279), 1, + aux_sym_name_superexpression_repeat1, + STATE(1594), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71817] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2433), 1, + sym_name_identifier, + STATE(168), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(771), 1, + sym_literal, + STATE(1260), 1, + aux_sym_name_superexpression_repeat1, + STATE(1558), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71880] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + sym_name_identifier, + STATE(445), 1, + sym_scoped_statement, + STATE(961), 1, + sym_name_superexpression, + STATE(1319), 1, + aux_sym_name_superexpression_repeat1, + STATE(1465), 1, + sym_literal, + STATE(1694), 1, + aux_sym_name_superexpression_repeat2, + STATE(2013), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [71943] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2459), 1, + sym_name_identifier, + STATE(158), 1, + sym_name_superexpression, + STATE(455), 1, + sym_subexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(673), 1, + sym_literal, + STATE(1263), 1, + aux_sym_name_superexpression_repeat1, + STATE(1524), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72006] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + sym_name_identifier, + STATE(423), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(941), 1, + sym_literal, + STATE(1281), 1, + sym_subexpression, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72069] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + sym_name_identifier, + STATE(423), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(941), 1, + sym_literal, + STATE(1289), 1, + sym_subexpression, + STATE(1294), 1, + aux_sym_name_superexpression_repeat1, + STATE(1530), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72132] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + ACTIONS(2471), 1, + sym_name_identifier, + STATE(436), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(971), 1, + sym_literal, + STATE(1284), 1, + aux_sym_name_superexpression_repeat1, + STATE(1630), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72195] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + anon_sym_SQUOTE, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2437), 1, + sym_name_identifier, + STATE(143), 1, + sym_name_superexpression, + STATE(456), 1, + sym_scoped_statement, + STATE(649), 1, + sym_literal, + STATE(1133), 1, + sym_subexpression, + STATE(1276), 1, + aux_sym_name_superexpression_repeat1, + STATE(1551), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(461), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72258] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_name_identifier, + STATE(418), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(948), 1, + sym_literal, + STATE(1290), 1, + sym_subexpression, + STATE(1295), 1, + aux_sym_name_superexpression_repeat1, + STATE(1549), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72321] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + sym_name_identifier, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(968), 1, + sym_name_superexpression, + STATE(1315), 1, + aux_sym_name_superexpression_repeat1, + STATE(1477), 1, + sym_literal, + STATE(1667), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72384] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(2473), 1, + sym_name_identifier, + STATE(203), 1, + sym_name_superexpression, + STATE(465), 1, + sym_scoped_statement, + STATE(469), 1, + sym_subexpression, + STATE(879), 1, + sym_literal, + STATE(1261), 1, + aux_sym_name_superexpression_repeat1, + STATE(1588), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + STATE(463), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72447] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + ACTIONS(2475), 1, + sym_name_identifier, + STATE(351), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(804), 1, + sym_literal, + STATE(1220), 1, + sym_subexpression, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72510] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1789), 1, + sym_name_identifier, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + STATE(447), 1, + sym_scoped_statement, + STATE(452), 1, + sym_subexpression, + STATE(766), 1, + sym_name_superexpression, + STATE(1255), 1, + aux_sym_name_superexpression_repeat1, + STATE(1311), 1, + sym_literal, + STATE(1563), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72573] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(542), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + sym_name_identifier, + STATE(144), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(619), 1, + sym_literal, + STATE(1147), 1, + sym_subexpression, + STATE(1279), 1, + aux_sym_name_superexpression_repeat1, + STATE(1594), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72636] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + sym_name_identifier, + STATE(394), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(786), 1, + sym_literal, + STATE(1230), 1, + sym_subexpression, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72699] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + ACTIONS(2477), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(998), 1, + sym_name_superexpression, + STATE(1258), 1, + aux_sym_name_superexpression_repeat1, + STATE(1620), 1, + aux_sym_name_superexpression_repeat2, + STATE(1671), 1, + sym_literal, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72762] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + ACTIONS(2145), 1, + sym_name_identifier, + STATE(477), 1, + sym_scoped_statement, + STATE(487), 1, + sym_subexpression, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72825] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + sym_name_identifier, + STATE(394), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(786), 1, + sym_literal, + STATE(1275), 1, + aux_sym_name_superexpression_repeat1, + STATE(1605), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72888] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(325), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym_name_identifier, + STATE(128), 1, + sym_name_superexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(516), 1, + sym_literal, + STATE(1104), 1, + sym_subexpression, + STATE(1256), 1, + aux_sym_name_superexpression_repeat1, + STATE(1578), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [72951] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(2481), 1, + sym_name_identifier, + STATE(155), 1, + sym_name_superexpression, + STATE(457), 1, + sym_subexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(646), 1, + sym_literal, + STATE(1303), 1, + aux_sym_name_superexpression_repeat1, + STATE(1613), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73014] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2461), 1, + sym_name_identifier, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(967), 1, + sym_name_superexpression, + STATE(1277), 1, + aux_sym_name_superexpression_repeat1, + STATE(1486), 1, + sym_literal, + STATE(1649), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73077] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2151), 1, + sym_name_identifier, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(964), 1, + sym_name_superexpression, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73140] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(325), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym_name_identifier, + STATE(128), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(516), 1, + sym_literal, + STATE(1256), 1, + aux_sym_name_superexpression_repeat1, + STATE(1578), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73203] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + sym_name_identifier, + STATE(445), 1, + sym_scoped_statement, + STATE(827), 1, + sym_name_superexpression, + STATE(1264), 1, + aux_sym_name_superexpression_repeat1, + STATE(1381), 1, + sym_literal, + STATE(1575), 1, + aux_sym_name_superexpression_repeat2, + STATE(1839), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73266] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + sym_name_identifier, + STATE(148), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(578), 1, + sym_literal, + STATE(1161), 1, + sym_subexpression, + STATE(1253), 1, + aux_sym_name_superexpression_repeat1, + STATE(1541), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73329] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + ACTIONS(2475), 1, + sym_name_identifier, + STATE(351), 1, + sym_name_superexpression, + STATE(477), 1, + sym_scoped_statement, + STATE(487), 1, + sym_subexpression, + STATE(804), 1, + sym_literal, + STATE(1272), 1, + aux_sym_name_superexpression_repeat1, + STATE(1609), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73392] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + ACTIONS(2485), 1, + sym_name_identifier, + STATE(254), 1, + sym_name_superexpression, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(832), 1, + sym_literal, + STATE(1265), 1, + aux_sym_name_superexpression_repeat1, + STATE(1629), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73455] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(258), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2487), 1, + sym_name_identifier, + STATE(123), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(452), 1, + sym_subexpression, + STATE(485), 1, + sym_literal, + STATE(1274), 1, + aux_sym_name_superexpression_repeat1, + STATE(1566), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73518] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(381), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + sym_name_identifier, + STATE(134), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(533), 1, + sym_literal, + STATE(1120), 1, + sym_subexpression, + STATE(1270), 1, + aux_sym_name_superexpression_repeat1, + STATE(1572), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73581] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(1009), 1, + sym_name_superexpression, + STATE(1269), 1, + aux_sym_name_superexpression_repeat1, + STATE(1647), 1, + aux_sym_name_superexpression_repeat2, + STATE(1686), 1, + sym_literal, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73644] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + ACTIONS(2145), 1, + sym_name_identifier, + STATE(477), 1, + sym_scoped_statement, + STATE(988), 1, + sym_name_superexpression, + STATE(1283), 1, + aux_sym_name_superexpression_repeat1, + STATE(1448), 1, + sym_literal, + STATE(1655), 1, + aux_sym_name_superexpression_repeat2, + STATE(1998), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + STATE(476), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73707] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(258), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2487), 1, + sym_name_identifier, + STATE(123), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(485), 1, + sym_literal, + STATE(1092), 1, + sym_subexpression, + STATE(1274), 1, + aux_sym_name_superexpression_repeat1, + STATE(1566), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73770] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + ACTIONS(2493), 1, + sym_name_identifier, + STATE(448), 1, + sym_subexpression, + STATE(450), 1, + sym_scoped_statement, + STATE(994), 1, + sym_name_superexpression, + STATE(1273), 1, + aux_sym_name_superexpression_repeat1, + STATE(1521), 1, + aux_sym_name_superexpression_repeat2, + STATE(1692), 1, + sym_literal, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + STATE(446), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73833] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2151), 1, + sym_name_identifier, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + STATE(445), 1, + sym_scoped_statement, + STATE(964), 1, + sym_name_superexpression, + STATE(1282), 1, + aux_sym_name_superexpression_repeat1, + STATE(1439), 1, + sym_literal, + STATE(1684), 1, + aux_sym_name_superexpression_repeat2, + STATE(1976), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73896] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(675), 1, + anon_sym_SQUOTE, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2451), 1, + sym_name_identifier, + STATE(161), 1, + sym_name_superexpression, + STATE(462), 1, + sym_scoped_statement, + STATE(775), 1, + sym_literal, + STATE(1201), 1, + sym_subexpression, + STATE(1271), 1, + aux_sym_name_superexpression_repeat1, + STATE(1553), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + STATE(471), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [73959] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2447), 1, + sym_name_identifier, + STATE(165), 1, + sym_name_superexpression, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(781), 1, + sym_literal, + STATE(1309), 1, + aux_sym_name_superexpression_repeat1, + STATE(1635), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [74022] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1789), 1, + sym_name_identifier, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + STATE(447), 1, + sym_scoped_statement, + STATE(766), 1, + sym_name_superexpression, + STATE(1255), 1, + aux_sym_name_superexpression_repeat1, + STATE(1311), 1, + sym_literal, + STATE(1563), 1, + aux_sym_name_superexpression_repeat2, + STATE(1816), 1, + sym_subexpression, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [74085] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(937), 1, + anon_sym_LPAREN, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + ACTIONS(1879), 1, + sym_name_identifier, + STATE(457), 1, + sym_subexpression, + STATE(460), 1, + sym_scoped_statement, + STATE(841), 1, + sym_name_superexpression, + STATE(1331), 1, + aux_sym_name_superexpression_repeat1, + STATE(1342), 1, + sym_literal, + STATE(1656), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + STATE(459), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [74148] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(381), 1, + anon_sym_SQUOTE, + ACTIONS(2429), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + sym_name_identifier, + STATE(134), 1, + sym_name_superexpression, + STATE(447), 1, + sym_scoped_statement, + STATE(452), 1, + sym_subexpression, + STATE(533), 1, + sym_literal, + STATE(1270), 1, + aux_sym_name_superexpression_repeat1, + STATE(1572), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + STATE(451), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [74211] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_SQUOTE, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + sym_name_identifier, + STATE(442), 1, + sym_subexpression, + STATE(445), 1, + sym_scoped_statement, + STATE(827), 1, + sym_name_superexpression, + STATE(1264), 1, + aux_sym_name_superexpression_repeat1, + STATE(1381), 1, + sym_literal, + STATE(1575), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + STATE(443), 3, + sym_subexpression_token, + sym_binary_operator_expression, + sym_function_call_expression, + [74274] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2497), 1, + anon_sym_COLON, + ACTIONS(2499), 1, + anon_sym_type, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1095), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + ACTIONS(2495), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [74314] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2509), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 4, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(2505), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74348] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2513), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2511), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [74380] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2517), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2515), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [74412] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(2521), 1, + anon_sym_COLON, + ACTIONS(2523), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + ACTIONS(2519), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [74452] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2525), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2527), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [74486] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2533), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2531), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [74518] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2535), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2537), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [74552] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2541), 1, + anon_sym_AMP, + STATE(1099), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 18, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74586] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + STATE(1099), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 18, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74620] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2550), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2548), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [74652] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + STATE(1100), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 18, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74686] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2554), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2556), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [74720] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(2558), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2505), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74753] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2560), 1, + anon_sym_AMP, + STATE(1119), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74786] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(2523), 1, + anon_sym_type, + ACTIONS(2562), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + ACTIONS(2519), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [74825] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2564), 1, + anon_sym_AMP, + STATE(1110), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74858] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2554), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2556), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [74891] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2566), 1, + anon_sym_AMP, + STATE(1109), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74924] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2564), 1, + anon_sym_AMP, + STATE(1109), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74957] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2569), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 3, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [74990] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2535), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2537), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75023] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2571), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2573), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75054] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2579), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2575), 2, + ts_builtin_sym_end, + anon_sym_EQ, + STATE(1114), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2577), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75091] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2587), 1, + anon_sym_AMP, + STATE(1115), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [75126] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2592), 1, + anon_sym_AMP, + STATE(1115), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [75161] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2594), 1, + anon_sym_AMP, + STATE(1117), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75194] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2601), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2597), 2, + ts_builtin_sym_end, + anon_sym_EQ, + STATE(1114), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2599), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75231] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2560), 1, + anon_sym_AMP, + STATE(1117), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75264] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2605), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(2505), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75297] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2601), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2607), 2, + ts_builtin_sym_end, + anon_sym_EQ, + STATE(1114), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2609), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75334] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(209), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(211), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75367] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(203), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(205), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75400] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2592), 1, + anon_sym_AMP, + ACTIONS(2611), 1, + anon_sym_type, + STATE(1116), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [75435] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2525), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2527), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75468] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1904), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1906), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75499] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2499), 1, + anon_sym_type, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(2613), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1106), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + ACTIONS(2495), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_EQ, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75538] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2615), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1521), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75571] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1832), 5, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1834), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [75602] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(2619), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2607), 2, + anon_sym_RBRACE, + anon_sym_EQ, + STATE(1140), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2609), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75638] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(1131), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [75672] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2626), 1, + anon_sym_elif, + STATE(1132), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2624), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75704] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2629), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75736] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2633), 1, + anon_sym_DASH_GT, + ACTIONS(2635), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2631), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75768] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2637), 1, + anon_sym_AMP, + STATE(1155), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [75802] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2641), 1, + anon_sym_elif, + ACTIONS(2643), 1, + anon_sym_else, + STATE(1132), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2639), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [75836] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2647), 1, + anon_sym_type, + ACTIONS(2649), 1, + anon_sym_AMP, + STATE(1164), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2645), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [75870] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2651), 1, + anon_sym_AMP, + STATE(1139), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [75904] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2653), 1, + anon_sym_AMP, + STATE(1139), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [75938] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2656), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2575), 2, + anon_sym_RBRACE, + anon_sym_EQ, + STATE(1140), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2577), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [75974] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(2619), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2597), 2, + anon_sym_RBRACE, + anon_sym_EQ, + STATE(1140), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2599), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [76010] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2662), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76040] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2664), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1521), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [76072] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2666), 1, + anon_sym_AMP, + STATE(1131), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [76106] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2649), 1, + anon_sym_AMP, + ACTIONS(2670), 1, + anon_sym_type, + STATE(1166), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2668), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [76140] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2674), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1146), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2672), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76172] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2677), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2505), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [76204] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2681), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2679), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76234] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2571), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2573), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [76264] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1832), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1834), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [76294] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2685), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2683), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76324] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2689), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2687), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76354] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2641), 1, + anon_sym_elif, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1136), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2691), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76388] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1904), 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1906), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [76418] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2637), 1, + anon_sym_AMP, + STATE(1158), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [76452] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2651), 1, + anon_sym_AMP, + STATE(1138), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [76486] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2697), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1146), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2695), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76518] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2699), 1, + anon_sym_AMP, + STATE(1158), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [76552] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2704), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2702), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76582] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2706), 1, + anon_sym_AMP, + STATE(1162), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76614] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2708), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76646] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2710), 1, + anon_sym_AMP, + STATE(1162), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76678] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2713), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 5, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(2505), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [76710] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2681), 1, + anon_sym_type, + ACTIONS(2715), 1, + anon_sym_AMP, + STATE(1164), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2679), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [76744] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2718), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + ACTIONS(1521), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76776] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2649), 1, + anon_sym_AMP, + ACTIONS(2722), 1, + anon_sym_type, + STATE(1164), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2720), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [76810] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2706), 1, + anon_sym_AMP, + STATE(1160), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [76842] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2724), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2399), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76872] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2666), 1, + anon_sym_AMP, + STATE(1144), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 15, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + [76906] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2728), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2726), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [76936] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2730), 1, + anon_sym_AMP, + STATE(1179), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [76969] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2732), 1, + anon_sym_type, + ACTIONS(2734), 1, + anon_sym_elif, + ACTIONS(2736), 1, + anon_sym_else, + STATE(1207), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2639), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77004] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2738), 1, + anon_sym_AMP, + STATE(1198), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [77037] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2742), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2740), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [77066] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2744), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(1521), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77097] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2748), 1, + anon_sym_PIPE, + STATE(1176), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2746), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77128] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2753), 1, + anon_sym_type, + ACTIONS(2755), 1, + anon_sym_PIPE, + STATE(1194), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2751), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77161] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2757), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2505), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [77192] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2759), 1, + anon_sym_AMP, + STATE(1179), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [77225] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2764), 1, + anon_sym_type, + ACTIONS(2766), 1, + anon_sym_AMP, + STATE(1203), 1, + aux_sym_typeclass_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2762), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77258] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2770), 1, + anon_sym_DASH_GT, + ACTIONS(2772), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2768), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [77289] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1657), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1659), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_COLON, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_DOT, + [77318] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2774), 1, + anon_sym_AMP, + STATE(1216), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77349] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2776), 1, + anon_sym_AMP, + STATE(1184), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [77382] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2779), 3, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_LPAREN, + ACTIONS(2781), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [77411] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2670), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2668), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + [77440] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2783), 1, + anon_sym_AMP, + STATE(1189), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [77473] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2730), 1, + anon_sym_AMP, + STATE(1171), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [77506] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2783), 1, + anon_sym_AMP, + STATE(1184), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [77539] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1523), 1, + anon_sym_type, + ACTIONS(2785), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [77570] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(2787), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77601] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2755), 1, + anon_sym_PIPE, + ACTIONS(2791), 1, + anon_sym_type, + STATE(1194), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2789), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77634] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2738), 1, + anon_sym_AMP, + STATE(1173), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [77667] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2670), 1, + anon_sym_type, + ACTIONS(2793), 1, + anon_sym_PIPE, + STATE(1194), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2668), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77700] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2798), 1, + anon_sym_AMP, + STATE(1195), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2796), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77731] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2801), 3, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_LPAREN, + ACTIONS(2803), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [77760] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2805), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 4, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77791] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2807), 1, + anon_sym_AMP, + STATE(1198), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [77824] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2787), 1, + sym_operator, + ACTIONS(2810), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2746), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77855] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2814), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2812), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [77884] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2816), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 3, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77915] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2818), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 3, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1521), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77946] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2822), 1, + anon_sym_type, + ACTIONS(2824), 1, + anon_sym_AMP, + STATE(1203), 1, + aux_sym_typeclass_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2820), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [77979] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2827), 1, + anon_sym_AMP, + STATE(1204), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78010] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2830), 1, + anon_sym_AMP, + ACTIONS(2832), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2796), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78041] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2836), 1, + anon_sym_PIPE, + STATE(1176), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2834), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78072] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2838), 1, + anon_sym_type, + ACTIONS(2840), 1, + anon_sym_elif, + STATE(1207), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2624), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_else, + [78105] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(2832), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2505), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78136] = 17, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(181), 1, + sym_abstract_type_identifier, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(2649), 1, + anon_sym_AMP, + ACTIONS(2755), 1, + anon_sym_PIPE, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + sym_type_identifier, + STATE(113), 1, + sym_type_expression, + STATE(1137), 1, + aux_sym_tuple_type_repeat1, + STATE(1177), 1, + aux_sym_variant_type_repeat1, + STATE(1322), 1, + sym_any_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(1961), 1, + sym_type_identifier_definition, + STATE(2006), 1, + aux_sym_type_identifier_definition_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1321), 3, + sym_tuple_type, + sym_variant_type, + sym_parametrized_type, + [78191] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2770), 1, + anon_sym_DASH_GT, + ACTIONS(2849), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2847), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [78222] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2853), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2851), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_DASH_GT, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [78251] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2855), 1, + anon_sym_type, + ACTIONS(2857), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1212), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2672), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78284] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2860), 1, + anon_sym_DASH_GT, + ACTIONS(2862), 1, + anon_sym_type, + ACTIONS(2864), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2631), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [78317] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2770), 1, + anon_sym_DASH_GT, + ACTIONS(2868), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2866), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [78348] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2872), 1, + anon_sym_AMP, + STATE(1195), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2870), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78379] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2774), 1, + anon_sym_AMP, + STATE(1204), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78410] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2734), 1, + anon_sym_elif, + ACTIONS(2874), 1, + anon_sym_type, + ACTIONS(2876), 1, + anon_sym_else, + STATE(1172), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2691), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78445] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2878), 1, + anon_sym_type, + ACTIONS(2880), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1212), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2695), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78478] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2801), 3, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LPAREN, + ACTIONS(2803), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [78506] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2882), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2810), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(2746), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78536] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2884), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 3, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2505), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78566] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(1225), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78598] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2888), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2505), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78628] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2890), 1, + anon_sym_DASH_GT, + ACTIONS(2892), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2812), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [78658] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(1249), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78690] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2732), 1, + anon_sym_type, + ACTIONS(2894), 1, + anon_sym_elif, + ACTIONS(2896), 1, + anon_sym_else, + STATE(1234), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2639), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78724] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2898), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 3, + anon_sym_DASH_GT, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1521), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78754] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2779), 3, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LPAREN, + ACTIONS(2781), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_type, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + sym_name_identifier, + [78782] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2822), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2820), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_AMP, + [78810] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2888), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2830), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2796), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78840] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2902), 1, + anon_sym_EQ, + ACTIONS(2904), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2900), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78870] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2906), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [78898] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(2908), 1, + anon_sym_AMP, + STATE(1248), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [78930] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2838), 1, + anon_sym_type, + ACTIONS(2910), 1, + anon_sym_elif, + STATE(1234), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2624), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_else, + [78962] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2882), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1521), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [78992] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2862), 1, + anon_sym_type, + ACTIONS(2913), 1, + anon_sym_DASH_GT, + ACTIONS(2915), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2631), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [79024] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2917), 1, + anon_sym_type, + ACTIONS(2919), 1, + anon_sym_AMP, + STATE(1247), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2870), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79056] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2855), 1, + anon_sym_type, + ACTIONS(2921), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1238), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2672), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79088] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2924), 1, + anon_sym_type, + ACTIONS(2926), 1, + anon_sym_PIPE, + STATE(1246), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2834), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79120] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2878), 1, + anon_sym_type, + ACTIONS(2928), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1238), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(2695), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79152] = 17, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(59), 1, + sym_abstract_type_identifier, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + sym_type_identifier, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2932), 1, + anon_sym_PIPE, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1942), 1, + aux_sym_tuple_type_repeat1, + STATE(1946), 1, + sym_type_identifier_definition, + STATE(1991), 1, + aux_sym_variant_type_repeat1, + STATE(2006), 1, + aux_sym_type_identifier_definition_repeat1, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2058), 2, + sym_tuple_type, + sym_variant_type, + [79206] = 17, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(59), 1, + sym_abstract_type_identifier, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + sym_type_identifier, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2932), 1, + anon_sym_PIPE, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1942), 1, + aux_sym_tuple_type_repeat1, + STATE(1946), 1, + sym_type_identifier_definition, + STATE(1991), 1, + aux_sym_variant_type_repeat1, + STATE(2006), 1, + aux_sym_type_identifier_definition_repeat1, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2115), 2, + sym_tuple_type, + sym_variant_type, + [79260] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1523), 1, + anon_sym_type, + ACTIONS(2934), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 14, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [79290] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2874), 1, + anon_sym_type, + ACTIONS(2894), 1, + anon_sym_elif, + ACTIONS(2936), 1, + anon_sym_else, + STATE(1226), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2691), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79324] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2938), 1, + anon_sym_AMP, + STATE(1245), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [79356] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2810), 1, + anon_sym_type, + ACTIONS(2941), 1, + anon_sym_PIPE, + STATE(1246), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2746), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79388] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2830), 1, + anon_sym_type, + ACTIONS(2944), 1, + anon_sym_AMP, + STATE(1247), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2796), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79420] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(2908), 1, + anon_sym_AMP, + STATE(1245), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [79452] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(2947), 1, + anon_sym_AMP, + STATE(1249), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79484] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(745), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2952), 1, + sym_name_identifier, + STATE(676), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1672), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + [79533] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [79562] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2892), 1, + anon_sym_type, + ACTIONS(2954), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2812), 13, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + anon_sym_PIPE, + [79591] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2956), 1, + sym_name_identifier, + STATE(593), 1, + sym_literal, + STATE(1540), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + [79640] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2960), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2958), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [79667] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2962), 1, + sym_name_identifier, + STATE(1251), 1, + sym_literal, + STATE(1562), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + [79716] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(325), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2964), 1, + sym_name_identifier, + STATE(532), 1, + sym_literal, + STATE(1577), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + [79765] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(2012), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2966), 1, + sym_name_identifier, + STATE(1394), 1, + sym_literal, + STATE(1535), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + [79814] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(984), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + sym_name_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1682), 1, + aux_sym_name_superexpression_repeat2, + STATE(1685), 1, + sym_literal, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + [79863] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(1956), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2970), 1, + sym_name_identifier, + STATE(1363), 1, + sym_literal, + STATE(1526), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + [79912] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2972), 1, + sym_name_identifier, + STATE(774), 1, + sym_literal, + STATE(1557), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + [79961] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(1087), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + sym_name_identifier, + STATE(873), 1, + sym_literal, + STATE(1586), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + [80010] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(998), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2976), 1, + sym_name_identifier, + STATE(891), 1, + sym_literal, + STATE(1529), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + [80059] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(661), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + sym_name_identifier, + STATE(694), 1, + sym_literal, + STATE(1523), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + [80108] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2980), 1, + sym_name_identifier, + STATE(1377), 1, + sym_literal, + STATE(1574), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + [80157] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2982), 1, + sym_name_identifier, + STATE(835), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1665), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + [80206] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(276), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2984), 1, + sym_name_identifier, + STATE(517), 1, + sym_literal, + STATE(1538), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + [80255] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2986), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1521), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [80284] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [80313] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(1016), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2988), 1, + sym_name_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1659), 1, + sym_literal, + STATE(1660), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + [80362] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(381), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + sym_name_identifier, + STATE(525), 1, + sym_literal, + STATE(1571), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + [80411] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(675), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2992), 1, + sym_name_identifier, + STATE(740), 1, + sym_literal, + STATE(1552), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + [80460] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2994), 1, + sym_name_identifier, + STATE(810), 1, + sym_literal, + STATE(1610), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + [80509] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(1034), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2996), 1, + sym_name_identifier, + STATE(1532), 1, + sym_literal, + STATE(1533), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + [80558] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(258), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(2998), 1, + sym_name_identifier, + STATE(481), 1, + sym_literal, + STATE(1565), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + [80607] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(1383), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3000), 1, + sym_name_identifier, + STATE(794), 1, + sym_literal, + STATE(1607), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + [80656] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3002), 1, + sym_name_identifier, + STATE(628), 1, + sym_literal, + STATE(1547), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + [80705] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(2196), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3004), 1, + sym_name_identifier, + STATE(1502), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1648), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + [80754] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3008), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3006), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [80781] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(542), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3010), 1, + sym_name_identifier, + STATE(635), 1, + sym_literal, + STATE(1593), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + [80830] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2611), 1, + anon_sym_type, + ACTIONS(3012), 1, + anon_sym_AMP, + STATE(1307), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [80861] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3014), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2505), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [80890] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(2161), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3016), 1, + sym_name_identifier, + STATE(1442), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1676), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + [80939] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(1323), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3018), 1, + sym_name_identifier, + STATE(1451), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1651), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + [80988] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(139), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3020), 1, + sym_name_identifier, + STATE(976), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1628), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + [81037] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(1198), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3022), 1, + sym_name_identifier, + STATE(1408), 1, + sym_literal, + STATE(1596), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + [81086] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2917), 1, + anon_sym_type, + ACTIONS(3024), 1, + anon_sym_AMP, + STATE(1292), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2870), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81117] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2924), 1, + anon_sym_type, + ACTIONS(3026), 1, + anon_sym_PIPE, + STATE(1293), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2834), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81148] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(605), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, + sym_name_identifier, + STATE(562), 1, + sym_literal, + STATE(1601), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + [81197] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3014), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2830), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(2796), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81226] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2986), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2810), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(2746), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81255] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3030), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [81280] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2830), 1, + anon_sym_type, + ACTIONS(3032), 1, + anon_sym_AMP, + STATE(1292), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2796), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81311] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2810), 1, + anon_sym_type, + ACTIONS(3035), 1, + anon_sym_PIPE, + STATE(1293), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2746), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81342] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(1464), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, + sym_name_identifier, + STATE(937), 1, + sym_literal, + STATE(1531), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + [81391] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(1115), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3040), 1, + sym_name_identifier, + STATE(895), 1, + sym_literal, + STATE(1550), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + [81440] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3042), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_alias, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [81465] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3046), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3044), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81492] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3050), 1, + anon_sym_COLON, + ACTIONS(3052), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3048), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81521] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(2266), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3054), 1, + sym_name_identifier, + STATE(1499), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1632), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + [81570] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3058), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3056), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81597] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(1052), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3060), 1, + sym_name_identifier, + STATE(1413), 1, + sym_literal, + STATE(1592), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + [81646] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1133), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3062), 1, + sym_name_identifier, + STATE(1522), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1626), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + [81695] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3064), 1, + sym_name_identifier, + STATE(639), 1, + sym_literal, + STATE(1614), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + [81744] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(808), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + sym_name_identifier, + STATE(748), 1, + sym_literal, + STATE(1612), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + [81793] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2585), 1, + anon_sym_type, + ACTIONS(3068), 1, + anon_sym_AMP, + STATE(1305), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81824] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1523), 1, + anon_sym_type, + ACTIONS(3071), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81853] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2590), 1, + anon_sym_type, + ACTIONS(3012), 1, + anon_sym_AMP, + STATE(1305), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [81884] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3073), 1, + sym_name_identifier, + STATE(1580), 1, + sym_literal, + STATE(1584), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3075), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + [81933] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + sym_name_identifier, + STATE(763), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1636), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + [81982] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(822), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3079), 1, + sym_name_identifier, + STATE(743), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1658), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + [82031] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [82060] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(290), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3081), 1, + sym_name_identifier, + STATE(491), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1680), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + [82109] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3083), 1, + sym_name_identifier, + STATE(640), 1, + sym_literal, + STATE(1570), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + [82158] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3073), 1, + sym_name_identifier, + STATE(1580), 1, + sym_literal, + STATE(1584), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + [82207] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3085), 1, + sym_name_identifier, + STATE(1480), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1666), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + [82256] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(689), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + sym_name_identifier, + STATE(667), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1687), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + [82305] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [82334] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82361] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3089), 1, + sym_name_identifier, + STATE(1468), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1695), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + [82410] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(556), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3091), 1, + sym_name_identifier, + STATE(573), 1, + sym_literal, + STATE(1544), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + [82459] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3095), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3093), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [82486] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3099), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3097), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [82513] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82540] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82567] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3103), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3101), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [82594] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82621] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3107), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3105), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [82648] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(1237), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3109), 1, + sym_name_identifier, + STATE(866), 1, + sym_literal, + STATE(1556), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + [82697] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [82726] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82753] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + sym_name_identifier, + STATE(1360), 1, + sym_literal, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(1652), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + [82802] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3115), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3113), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [82829] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82856] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [82885] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 8, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82912] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_SQUOTE, + ACTIONS(2950), 1, + anon_sym_LPAREN, + ACTIONS(3117), 1, + sym_name_identifier, + STATE(905), 1, + sym_literal, + STATE(1542), 1, + aux_sym_name_superexpression_repeat2, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + [82961] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [82987] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83015] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83041] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83067] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83093] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83121] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83147] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83173] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83199] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1371), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(183), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [83235] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83261] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1346), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(175), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [83297] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83323] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3121), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3119), 13, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_partition, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [83349] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83377] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83403] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83429] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83455] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83481] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83509] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83535] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83561] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83587] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83615] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83643] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83669] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83697] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83723] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83749] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1523), 1, + anon_sym_type, + ACTIONS(3123), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [83777] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83805] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83833] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83859] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83885] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(191), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3125), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1371), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + ACTIONS(187), 6, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [83921] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [83949] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [83977] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3052), 1, + anon_sym_type, + ACTIONS(3128), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3048), 12, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_use, + anon_sym_alias, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_typeclass, + [84005] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84033] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84061] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84089] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84117] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 7, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84143] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84171] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84199] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84227] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 7, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84253] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84278] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84303] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84328] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84353] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1631), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84378] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1633), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84403] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84430] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84457] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84482] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84509] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84536] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84561] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(1781), 1, + sym_typeclass_identifier, + ACTIONS(3130), 1, + sym_name_identifier, + STATE(1758), 1, + aux_sym_name_superexpression_repeat1, + STATE(2028), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1785), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(747), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1149), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + [84600] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84627] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84652] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [84677] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84702] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84727] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84752] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84777] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1631), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84802] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1633), 6, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84827] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84854] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84881] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84908] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84935] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84962] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [84989] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85016] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85043] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85068] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 6, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85093] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85120] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85147] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85172] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85199] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85224] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85249] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85274] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85299] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85326] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85351] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 7, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85376] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85401] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85426] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85453] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(1716), 1, + sym_typeclass_identifier, + ACTIONS(3132), 1, + sym_name_identifier, + STATE(1755), 1, + aux_sym_name_superexpression_repeat1, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(576), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1113), 3, + sym_name_expression, + sym_type_expression, + sym_typeclass_expression, + [85492] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85516] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85542] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3134), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(113), 1, + sym_type_expression, + STATE(838), 1, + sym_typeclass_expression, + STATE(1214), 1, + sym_function_declartation_type, + STATE(1434), 1, + aux_sym_function_declaration_repeat2, + STATE(1811), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1174), 2, + sym_parametrized_type, + sym_parametrized_typeclass, + [85582] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3138), 1, + anon_sym_LPAREN, + ACTIONS(3141), 1, + sym_typeclass_identifier, + STATE(1348), 1, + sym_type_expression, + STATE(1434), 1, + aux_sym_function_declaration_repeat2, + STATE(1703), 1, + sym_typeclass_expression, + STATE(1805), 1, + aux_sym_name_superexpression_repeat1, + STATE(2061), 1, + sym_function_declartation_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3144), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1174), 2, + sym_parametrized_type, + sym_parametrized_typeclass, + [85622] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3134), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(113), 1, + sym_type_expression, + STATE(838), 1, + sym_typeclass_expression, + STATE(1181), 1, + sym_function_declartation_type, + STATE(1433), 1, + aux_sym_function_declaration_repeat2, + STATE(1811), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1174), 2, + sym_parametrized_type, + sym_parametrized_typeclass, + [85662] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3134), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(113), 1, + sym_type_expression, + STATE(838), 1, + sym_typeclass_expression, + STATE(1181), 1, + sym_function_declartation_type, + STATE(1434), 1, + aux_sym_function_declaration_repeat2, + STATE(1811), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1174), 2, + sym_parametrized_type, + sym_parametrized_typeclass, + [85702] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3147), 1, + anon_sym_LPAREN, + STATE(1094), 1, + sym_typeclass_expression, + STATE(1785), 1, + sym_annotated_type, + STATE(1805), 1, + aux_sym_name_superexpression_repeat1, + STATE(1809), 1, + sym_annotated_typeclass, + STATE(1835), 1, + sym_type_expression, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2205), 2, + sym_defined_type, + sym_defined_typeclass, + [85742] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3134), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(113), 1, + sym_type_expression, + STATE(838), 1, + sym_typeclass_expression, + STATE(1210), 1, + sym_function_declartation_type, + STATE(1436), 1, + aux_sym_function_declaration_repeat2, + STATE(1811), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1174), 2, + sym_parametrized_type, + sym_parametrized_typeclass, + [85782] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85808] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85832] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85858] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85884] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85910] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85934] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85960] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1633), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85984] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1631), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86008] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86034] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86058] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86084] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86110] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86134] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86160] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86184] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86208] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1633), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86232] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1631), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86256] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86280] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86304] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86328] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86354] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86380] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86404] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86430] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86456] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86480] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86506] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86532] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86558] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86584] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86608] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86632] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86656] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86680] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86704] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86728] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86754] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86778] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86804] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86830] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86856] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86882] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86906] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86930] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86954] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86980] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87004] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87028] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87052] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87078] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87104] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87128] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87154] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87178] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87204] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87230] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87254] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_DASH_GT, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87278] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87304] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87328] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87352] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1615), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87378] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87404] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87430] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87454] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87478] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87504] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87528] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87552] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87576] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87600] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87624] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1647), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87650] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87674] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87698] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87722] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87746] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1639), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87772] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87796] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87820] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(3149), 1, + anon_sym_LPAREN, + ACTIONS(3151), 1, + sym_name_identifier, + ACTIONS(3153), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1564), 1, + sym_literal, + STATE(1567), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + [87859] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87884] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(3155), 1, + anon_sym_LPAREN, + ACTIONS(3157), 1, + sym_name_identifier, + ACTIONS(3159), 1, + anon_sym_SQUOTE, + STATE(723), 1, + sym_literal, + STATE(765), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + [87923] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(655), 1, + sym_float_number_literal, + ACTIONS(657), 1, + sym_number_literal, + ACTIONS(659), 1, + anon_sym_DQUOTE, + ACTIONS(3155), 1, + anon_sym_LPAREN, + ACTIONS(3157), 1, + sym_name_identifier, + ACTIONS(3159), 1, + anon_sym_SQUOTE, + STATE(719), 1, + sym_name_subsuperexpression, + STATE(723), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(736), 2, + sym_string_literal, + sym_char_literal, + [87962] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87985] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(3161), 1, + anon_sym_LPAREN, + ACTIONS(3163), 1, + sym_name_identifier, + ACTIONS(3165), 1, + anon_sym_SQUOTE, + STATE(1356), 1, + sym_name_subsuperexpression, + STATE(1383), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + [88024] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1950), 1, + sym_float_number_literal, + ACTIONS(1952), 1, + sym_number_literal, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + ACTIONS(3161), 1, + anon_sym_LPAREN, + ACTIONS(3163), 1, + sym_name_identifier, + ACTIONS(3165), 1, + anon_sym_SQUOTE, + STATE(1338), 1, + sym_name_subsuperexpression, + STATE(1383), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1347), 2, + sym_string_literal, + sym_char_literal, + [88063] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [88086] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(3167), 1, + anon_sym_LPAREN, + ACTIONS(3169), 1, + sym_name_identifier, + ACTIONS(3171), 1, + anon_sym_SQUOTE, + STATE(803), 1, + sym_name_subsuperexpression, + STATE(825), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + [88125] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3175), 1, + sym_name_identifier, + ACTIONS(3177), 1, + anon_sym_SQUOTE, + STATE(927), 1, + sym_name_subsuperexpression, + STATE(939), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + [88164] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1458), 1, + sym_float_number_literal, + ACTIONS(1460), 1, + sym_number_literal, + ACTIONS(1462), 1, + anon_sym_DQUOTE, + ACTIONS(3173), 1, + anon_sym_LPAREN, + ACTIONS(3175), 1, + sym_name_identifier, + ACTIONS(3177), 1, + anon_sym_SQUOTE, + STATE(896), 1, + sym_name_subsuperexpression, + STATE(939), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(947), 2, + sym_string_literal, + sym_char_literal, + [88203] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88228] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1028), 1, + sym_float_number_literal, + ACTIONS(1030), 1, + sym_number_literal, + ACTIONS(1032), 1, + anon_sym_DQUOTE, + ACTIONS(3149), 1, + anon_sym_LPAREN, + ACTIONS(3151), 1, + sym_name_identifier, + ACTIONS(3153), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1564), 1, + sym_literal, + STATE(1581), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1691), 2, + sym_string_literal, + sym_char_literal, + [88267] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [88290] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(3179), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, + sym_name_identifier, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + STATE(1390), 1, + sym_name_subsuperexpression, + STATE(1423), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + [88329] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2006), 1, + sym_float_number_literal, + ACTIONS(2008), 1, + sym_number_literal, + ACTIONS(2010), 1, + anon_sym_DQUOTE, + ACTIONS(3179), 1, + anon_sym_LPAREN, + ACTIONS(3181), 1, + sym_name_identifier, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + STATE(1393), 1, + sym_name_subsuperexpression, + STATE(1423), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1385), 2, + sym_string_literal, + sym_char_literal, + [88368] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3185), 1, + anon_sym_LPAREN, + ACTIONS(3188), 1, + sym_name_identifier, + ACTIONS(3191), 1, + sym_float_number_literal, + ACTIONS(3194), 1, + sym_number_literal, + ACTIONS(3197), 1, + anon_sym_DQUOTE, + ACTIONS(3200), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(2248), 1, + sym_name_subsuperexpression, + STATE(2400), 1, + sym_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2475), 2, + sym_string_literal, + sym_char_literal, + [88407] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(3203), 1, + anon_sym_LPAREN, + ACTIONS(3205), 1, + sym_name_identifier, + ACTIONS(3207), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_literal, + STATE(510), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + [88446] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(270), 1, + sym_float_number_literal, + ACTIONS(272), 1, + sym_number_literal, + ACTIONS(274), 1, + anon_sym_DQUOTE, + ACTIONS(3203), 1, + anon_sym_LPAREN, + ACTIONS(3205), 1, + sym_name_identifier, + ACTIONS(3207), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_literal, + STATE(515), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(504), 2, + sym_string_literal, + sym_char_literal, + [88485] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(3209), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + sym_name_identifier, + ACTIONS(3213), 1, + anon_sym_SQUOTE, + STATE(600), 1, + sym_name_subsuperexpression, + STATE(620), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + [88524] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(585), 1, + sym_float_number_literal, + ACTIONS(587), 1, + sym_number_literal, + ACTIONS(589), 1, + anon_sym_DQUOTE, + ACTIONS(3209), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + sym_name_identifier, + ACTIONS(3213), 1, + anon_sym_SQUOTE, + STATE(595), 1, + sym_name_subsuperexpression, + STATE(620), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(610), 2, + sym_string_literal, + sym_char_literal, + [88563] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + sym_name_identifier, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + STATE(906), 1, + sym_literal, + STATE(909), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + [88602] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(175), 1, + anon_sym_RPAREN, + ACTIONS(179), 1, + anon_sym_LPAREN, + ACTIONS(3221), 1, + anon_sym_COLON, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2328), 1, + sym__type_annotations, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1346), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + [88639] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(3223), 1, + anon_sym_LPAREN, + ACTIONS(3225), 1, + sym_name_identifier, + ACTIONS(3227), 1, + anon_sym_SQUOTE, + STATE(563), 1, + sym_name_subsuperexpression, + STATE(594), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + [88678] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(550), 1, + sym_float_number_literal, + ACTIONS(552), 1, + sym_number_literal, + ACTIONS(554), 1, + anon_sym_DQUOTE, + ACTIONS(3223), 1, + anon_sym_LPAREN, + ACTIONS(3225), 1, + sym_name_identifier, + ACTIONS(3227), 1, + anon_sym_SQUOTE, + STATE(556), 1, + sym_name_subsuperexpression, + STATE(594), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(585), 2, + sym_string_literal, + sym_char_literal, + [88717] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [88740] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + sym_name_identifier, + ACTIONS(3233), 1, + anon_sym_SQUOTE, + STATE(555), 1, + sym_literal, + STATE(617), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + [88779] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [88802] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(3235), 1, + anon_sym_LPAREN, + ACTIONS(3237), 1, + sym_name_identifier, + ACTIONS(3239), 1, + anon_sym_SQUOTE, + STATE(926), 1, + sym_literal, + STATE(938), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + [88841] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1109), 1, + sym_float_number_literal, + ACTIONS(1111), 1, + sym_number_literal, + ACTIONS(1113), 1, + anon_sym_DQUOTE, + ACTIONS(3235), 1, + anon_sym_LPAREN, + ACTIONS(3237), 1, + sym_name_identifier, + ACTIONS(3239), 1, + anon_sym_SQUOTE, + STATE(926), 1, + sym_literal, + STATE(933), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(929), 2, + sym_string_literal, + sym_char_literal, + [88880] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(487), 1, + sym_float_number_literal, + ACTIONS(489), 1, + sym_number_literal, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(3229), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + sym_name_identifier, + ACTIONS(3233), 1, + anon_sym_SQUOTE, + STATE(555), 1, + sym_literal, + STATE(624), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + [88919] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(3241), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, + sym_name_identifier, + ACTIONS(3245), 1, + anon_sym_SQUOTE, + STATE(716), 1, + sym_name_subsuperexpression, + STATE(767), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + [88958] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(669), 1, + sym_float_number_literal, + ACTIONS(671), 1, + sym_number_literal, + ACTIONS(673), 1, + anon_sym_DQUOTE, + ACTIONS(3241), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, + sym_name_identifier, + ACTIONS(3245), 1, + anon_sym_SQUOTE, + STATE(731), 1, + sym_name_subsuperexpression, + STATE(767), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(701), 2, + sym_string_literal, + sym_char_literal, + [88997] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89020] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89045] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(3247), 1, + anon_sym_LPAREN, + ACTIONS(3249), 1, + sym_name_identifier, + ACTIONS(3251), 1, + anon_sym_SQUOTE, + STATE(872), 1, + sym_name_subsuperexpression, + STATE(886), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + [89084] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(3253), 1, + anon_sym_LPAREN, + ACTIONS(3255), 1, + sym_name_identifier, + ACTIONS(3257), 1, + anon_sym_SQUOTE, + STATE(738), 1, + sym_literal, + STATE(780), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + [89123] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(3253), 1, + anon_sym_LPAREN, + ACTIONS(3255), 1, + sym_name_identifier, + ACTIONS(3257), 1, + anon_sym_SQUOTE, + STATE(738), 1, + sym_literal, + STATE(776), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(772), 2, + sym_string_literal, + sym_char_literal, + [89162] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1627), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1629), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89185] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1231), 1, + sym_float_number_literal, + ACTIONS(1233), 1, + sym_number_literal, + ACTIONS(1235), 1, + anon_sym_DQUOTE, + ACTIONS(3247), 1, + anon_sym_LPAREN, + ACTIONS(3249), 1, + sym_name_identifier, + ACTIONS(3251), 1, + anon_sym_SQUOTE, + STATE(868), 1, + sym_name_subsuperexpression, + STATE(886), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(877), 2, + sym_string_literal, + sym_char_literal, + [89224] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(3259), 1, + anon_sym_LPAREN, + ACTIONS(3261), 1, + sym_name_identifier, + ACTIONS(3263), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1585), 1, + sym_literal, + STATE(1589), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + [89263] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(3265), 1, + anon_sym_LPAREN, + ACTIONS(3267), 1, + sym_name_identifier, + ACTIONS(3269), 1, + anon_sym_SQUOTE, + STATE(1329), 1, + sym_name_subsuperexpression, + STATE(1330), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + [89302] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1793), 1, + sym_float_number_literal, + ACTIONS(1795), 1, + sym_number_literal, + ACTIONS(1797), 1, + anon_sym_DQUOTE, + ACTIONS(3265), 1, + anon_sym_LPAREN, + ACTIONS(3267), 1, + sym_name_identifier, + ACTIONS(3269), 1, + anon_sym_SQUOTE, + STATE(1330), 1, + sym_literal, + STATE(1334), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1335), 2, + sym_string_literal, + sym_char_literal, + [89341] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89364] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, + anon_sym_LPAREN, + ACTIONS(3273), 1, + sym_name_identifier, + ACTIONS(3275), 1, + anon_sym_SQUOTE, + STATE(482), 1, + sym_literal, + STATE(483), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + [89403] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(252), 1, + sym_float_number_literal, + ACTIONS(254), 1, + sym_number_literal, + ACTIONS(256), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, + anon_sym_LPAREN, + ACTIONS(3273), 1, + sym_name_identifier, + ACTIONS(3275), 1, + anon_sym_SQUOTE, + STATE(473), 1, + sym_name_subsuperexpression, + STATE(482), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(478), 2, + sym_string_literal, + sym_char_literal, + [89442] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89467] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89492] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(3277), 1, + anon_sym_LPAREN, + ACTIONS(3279), 1, + sym_name_identifier, + ACTIONS(3281), 1, + anon_sym_SQUOTE, + STATE(559), 1, + sym_literal, + STATE(641), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + [89531] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(452), 1, + sym_float_number_literal, + ACTIONS(454), 1, + sym_number_literal, + ACTIONS(456), 1, + anon_sym_DQUOTE, + ACTIONS(3277), 1, + anon_sym_LPAREN, + ACTIONS(3279), 1, + sym_name_identifier, + ACTIONS(3281), 1, + anon_sym_SQUOTE, + STATE(559), 1, + sym_literal, + STATE(644), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(634), 2, + sym_string_literal, + sym_char_literal, + [89570] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(3283), 1, + anon_sym_LPAREN, + ACTIONS(3285), 1, + sym_name_identifier, + ACTIONS(3287), 1, + anon_sym_SQUOTE, + STATE(493), 1, + sym_literal, + STATE(519), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + [89609] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(375), 1, + sym_float_number_literal, + ACTIONS(377), 1, + sym_number_literal, + ACTIONS(379), 1, + anon_sym_DQUOTE, + ACTIONS(3283), 1, + anon_sym_LPAREN, + ACTIONS(3285), 1, + sym_name_identifier, + ACTIONS(3287), 1, + anon_sym_SQUOTE, + STATE(493), 1, + sym_literal, + STATE(523), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(511), 2, + sym_string_literal, + sym_char_literal, + [89648] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89671] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(3289), 1, + anon_sym_LPAREN, + ACTIONS(3291), 1, + sym_name_identifier, + ACTIONS(3293), 1, + anon_sym_SQUOTE, + STATE(1359), 1, + sym_literal, + STATE(1372), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + [89710] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1865), 1, + sym_float_number_literal, + ACTIONS(1867), 1, + sym_number_literal, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(3289), 1, + anon_sym_LPAREN, + ACTIONS(3291), 1, + sym_name_identifier, + ACTIONS(3293), 1, + anon_sym_SQUOTE, + STATE(1359), 1, + sym_literal, + STATE(1376), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1364), 2, + sym_string_literal, + sym_char_literal, + [89749] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89772] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(3295), 1, + anon_sym_LPAREN, + ACTIONS(3297), 1, + sym_name_identifier, + ACTIONS(3299), 1, + anon_sym_SQUOTE, + STATE(543), 1, + sym_literal, + STATE(545), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + [89811] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(319), 1, + sym_float_number_literal, + ACTIONS(321), 1, + sym_number_literal, + ACTIONS(323), 1, + anon_sym_DQUOTE, + ACTIONS(3295), 1, + anon_sym_LPAREN, + ACTIONS(3297), 1, + sym_name_identifier, + ACTIONS(3299), 1, + anon_sym_SQUOTE, + STATE(534), 1, + sym_name_subsuperexpression, + STATE(543), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(539), 2, + sym_string_literal, + sym_char_literal, + [89850] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89875] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89900] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89925] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(167), 1, + sym_float_number_literal, + ACTIONS(169), 1, + sym_number_literal, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(3215), 1, + anon_sym_LPAREN, + ACTIONS(3217), 1, + sym_name_identifier, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + STATE(906), 1, + sym_literal, + STATE(907), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(899), 2, + sym_string_literal, + sym_char_literal, + [89964] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(260), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89987] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(63), 1, + sym_float_number_literal, + ACTIONS(65), 1, + sym_number_literal, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(3259), 1, + anon_sym_LPAREN, + ACTIONS(3261), 1, + sym_name_identifier, + ACTIONS(3263), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1585), 1, + sym_literal, + STATE(1599), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1559), 2, + sym_string_literal, + sym_char_literal, + [90026] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1635), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1637), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90049] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + sym_name_identifier, + ACTIONS(3305), 1, + anon_sym_SQUOTE, + STATE(831), 1, + sym_literal, + STATE(862), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + [90088] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1651), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [90111] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1083), 1, + sym_number_literal, + ACTIONS(1085), 1, + anon_sym_DQUOTE, + ACTIONS(3301), 1, + anon_sym_LPAREN, + ACTIONS(3303), 1, + sym_name_identifier, + ACTIONS(3305), 1, + anon_sym_SQUOTE, + STATE(831), 1, + sym_literal, + STATE(867), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(848), 2, + sym_string_literal, + sym_char_literal, + [90150] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90175] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [90198] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(3307), 1, + anon_sym_LPAREN, + ACTIONS(3309), 1, + sym_name_identifier, + ACTIONS(3311), 1, + anon_sym_SQUOTE, + STATE(1391), 1, + sym_name_subsuperexpression, + STATE(1399), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + [90237] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1046), 1, + sym_float_number_literal, + ACTIONS(1048), 1, + sym_number_literal, + ACTIONS(1050), 1, + anon_sym_DQUOTE, + ACTIONS(3307), 1, + anon_sym_LPAREN, + ACTIONS(3309), 1, + sym_name_identifier, + ACTIONS(3311), 1, + anon_sym_SQUOTE, + STATE(1399), 1, + sym_literal, + STATE(1417), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1421), 2, + sym_string_literal, + sym_char_literal, + [90276] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(3313), 1, + anon_sym_LPAREN, + ACTIONS(3315), 1, + sym_name_identifier, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(636), 1, + sym_literal, + STATE(654), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + [90315] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(536), 1, + sym_float_number_literal, + ACTIONS(538), 1, + sym_number_literal, + ACTIONS(540), 1, + anon_sym_DQUOTE, + ACTIONS(3313), 1, + anon_sym_LPAREN, + ACTIONS(3315), 1, + sym_name_identifier, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(636), 1, + sym_literal, + STATE(657), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(650), 2, + sym_string_literal, + sym_char_literal, + [90354] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [90377] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(3319), 1, + anon_sym_LPAREN, + ACTIONS(3321), 1, + sym_name_identifier, + ACTIONS(3323), 1, + anon_sym_SQUOTE, + STATE(1401), 1, + sym_literal, + STATE(1406), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + [90416] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1192), 1, + sym_float_number_literal, + ACTIONS(1194), 1, + sym_number_literal, + ACTIONS(1196), 1, + anon_sym_DQUOTE, + ACTIONS(3319), 1, + anon_sym_LPAREN, + ACTIONS(3321), 1, + sym_name_identifier, + ACTIONS(3323), 1, + anon_sym_SQUOTE, + STATE(1401), 1, + sym_literal, + STATE(1407), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1403), 2, + sym_string_literal, + sym_char_literal, + [90455] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1623), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90478] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90503] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [90526] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(3325), 1, + anon_sym_LPAREN, + ACTIONS(3327), 1, + sym_name_identifier, + ACTIONS(3329), 1, + anon_sym_SQUOTE, + STATE(548), 1, + sym_literal, + STATE(579), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + [90565] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(599), 1, + sym_float_number_literal, + ACTIONS(601), 1, + sym_number_literal, + ACTIONS(603), 1, + anon_sym_DQUOTE, + ACTIONS(3325), 1, + anon_sym_LPAREN, + ACTIONS(3327), 1, + sym_name_identifier, + ACTIONS(3329), 1, + anon_sym_SQUOTE, + STATE(548), 1, + sym_literal, + STATE(568), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(591), 2, + sym_string_literal, + sym_char_literal, + [90604] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1633), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(207), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90627] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1631), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(201), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90650] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(3331), 1, + anon_sym_LPAREN, + ACTIONS(3333), 1, + sym_name_identifier, + ACTIONS(3335), 1, + anon_sym_SQUOTE, + STATE(796), 1, + sym_literal, + STATE(829), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + [90689] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1657), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1659), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90712] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1377), 1, + sym_float_number_literal, + ACTIONS(1379), 1, + sym_number_literal, + ACTIONS(1381), 1, + anon_sym_DQUOTE, + ACTIONS(3331), 1, + anon_sym_LPAREN, + ACTIONS(3333), 1, + sym_name_identifier, + ACTIONS(3335), 1, + anon_sym_SQUOTE, + STATE(796), 1, + sym_literal, + STATE(799), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(788), 2, + sym_string_literal, + sym_char_literal, + [90751] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1503), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1625), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90774] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(3337), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + sym_name_identifier, + ACTIONS(3341), 1, + anon_sym_SQUOTE, + STATE(811), 1, + sym_literal, + STATE(812), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + [90813] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1257), 1, + sym_float_number_literal, + ACTIONS(1259), 1, + sym_number_literal, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(3337), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + sym_name_identifier, + ACTIONS(3341), 1, + anon_sym_SQUOTE, + STATE(811), 1, + sym_literal, + STATE(814), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(805), 2, + sym_string_literal, + sym_char_literal, + [90852] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90875] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(3343), 1, + anon_sym_LPAREN, + ACTIONS(3345), 1, + sym_name_identifier, + ACTIONS(3347), 1, + anon_sym_SQUOTE, + STATE(711), 1, + sym_literal, + STATE(734), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + [90914] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(3349), 1, + anon_sym_LPAREN, + ACTIONS(3351), 1, + sym_name_identifier, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + STATE(551), 1, + sym_literal, + STATE(603), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + [90953] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(501), 1, + sym_float_number_literal, + ACTIONS(503), 1, + sym_number_literal, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(3349), 1, + anon_sym_LPAREN, + ACTIONS(3351), 1, + sym_name_identifier, + ACTIONS(3353), 1, + anon_sym_SQUOTE, + STATE(551), 1, + sym_literal, + STATE(572), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(565), 2, + sym_string_literal, + sym_char_literal, + [90992] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(802), 1, + sym_float_number_literal, + ACTIONS(804), 1, + sym_number_literal, + ACTIONS(806), 1, + anon_sym_DQUOTE, + ACTIONS(3343), 1, + anon_sym_LPAREN, + ACTIONS(3345), 1, + sym_name_identifier, + ACTIONS(3347), 1, + anon_sym_SQUOTE, + STATE(711), 1, + sym_literal, + STATE(746), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(722), 2, + sym_string_literal, + sym_char_literal, + [91031] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3355), 1, + anon_sym_LPAREN, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3360), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3363), 2, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(3358), 4, + sym_typeclass_identifier, + sym_name_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91062] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91085] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91110] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91133] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(3365), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + sym_name_identifier, + ACTIONS(3369), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1678), 1, + sym_name_subsuperexpression, + STATE(1681), 1, + sym_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + [91172] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91197] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(3371), 1, + anon_sym_LPAREN, + ACTIONS(3373), 1, + sym_name_identifier, + ACTIONS(3375), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1627), 1, + sym_literal, + STATE(1634), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + [91236] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91259] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91284] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91307] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1127), 1, + sym_float_number_literal, + ACTIONS(1129), 1, + sym_number_literal, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(3371), 1, + anon_sym_LPAREN, + ACTIONS(3373), 1, + sym_name_identifier, + ACTIONS(3375), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1627), 1, + sym_literal, + STATE(1640), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1619), 2, + sym_string_literal, + sym_char_literal, + [91346] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91369] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(3377), 1, + anon_sym_LPAREN, + ACTIONS(3379), 1, + sym_name_identifier, + ACTIONS(3381), 1, + anon_sym_SQUOTE, + STATE(955), 1, + sym_literal, + STATE(990), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + [91408] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(3383), 1, + anon_sym_LPAREN, + ACTIONS(3385), 1, + sym_name_identifier, + ACTIONS(3387), 1, + anon_sym_SQUOTE, + STATE(836), 1, + sym_name_subsuperexpression, + STATE(849), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + [91447] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(133), 1, + sym_float_number_literal, + ACTIONS(135), 1, + sym_number_literal, + ACTIONS(137), 1, + anon_sym_DQUOTE, + ACTIONS(3377), 1, + anon_sym_LPAREN, + ACTIONS(3379), 1, + sym_name_identifier, + ACTIONS(3381), 1, + anon_sym_SQUOTE, + STATE(955), 1, + sym_literal, + STATE(991), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(959), 2, + sym_string_literal, + sym_char_literal, + [91486] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91509] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + sym_name_identifier, + ACTIONS(3393), 1, + anon_sym_SQUOTE, + STATE(1508), 1, + sym_literal, + STATE(1518), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + [91548] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2260), 1, + sym_float_number_literal, + ACTIONS(2262), 1, + sym_number_literal, + ACTIONS(2264), 1, + anon_sym_DQUOTE, + ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + sym_name_identifier, + ACTIONS(3393), 1, + anon_sym_SQUOTE, + STATE(1490), 1, + sym_name_subsuperexpression, + STATE(1508), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1511), 2, + sym_string_literal, + sym_char_literal, + [91587] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91612] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + sym_name_identifier, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + STATE(742), 1, + sym_literal, + STATE(761), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + [91651] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(753), 1, + sym_float_number_literal, + ACTIONS(755), 1, + sym_number_literal, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(3395), 1, + anon_sym_LPAREN, + ACTIONS(3397), 1, + sym_name_identifier, + ACTIONS(3399), 1, + anon_sym_SQUOTE, + STATE(742), 1, + sym_literal, + STATE(758), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(752), 2, + sym_string_literal, + sym_char_literal, + [91690] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1501), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1499), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91715] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91738] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91763] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91788] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91811] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91836] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91859] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91882] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91905] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91928] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(3401), 1, + anon_sym_LPAREN, + ACTIONS(3403), 1, + sym_name_identifier, + ACTIONS(3405), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1661), 1, + sym_literal, + STATE(1662), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + [91967] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + sym_name_identifier, + ACTIONS(3411), 1, + anon_sym_SQUOTE, + STATE(1432), 1, + sym_name_subsuperexpression, + STATE(1492), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + [92006] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2190), 1, + sym_float_number_literal, + ACTIONS(2192), 1, + sym_number_literal, + ACTIONS(2194), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3409), 1, + sym_name_identifier, + ACTIONS(3411), 1, + anon_sym_SQUOTE, + STATE(1492), 1, + sym_literal, + STATE(1495), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1512), 2, + sym_string_literal, + sym_char_literal, + [92045] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92068] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(3413), 1, + anon_sym_LPAREN, + ACTIONS(3415), 1, + sym_name_identifier, + ACTIONS(3417), 1, + anon_sym_SQUOTE, + STATE(1459), 1, + sym_literal, + STATE(1464), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + [92107] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(3419), 1, + anon_sym_LPAREN, + ACTIONS(3421), 1, + sym_name_identifier, + ACTIONS(3423), 1, + anon_sym_SQUOTE, + STATE(1351), 1, + sym_name_subsuperexpression, + STATE(1358), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + [92146] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1655), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92171] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92194] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1317), 1, + sym_float_number_literal, + ACTIONS(1319), 1, + sym_number_literal, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + ACTIONS(3413), 1, + anon_sym_LPAREN, + ACTIONS(3415), 1, + sym_name_identifier, + ACTIONS(3417), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + sym_name_subsuperexpression, + STATE(1459), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1449), 2, + sym_string_literal, + sym_char_literal, + [92233] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(3419), 1, + anon_sym_LPAREN, + ACTIONS(3421), 1, + sym_name_identifier, + ACTIONS(3423), 1, + anon_sym_SQUOTE, + STATE(1358), 1, + sym_literal, + STATE(1368), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1379), 2, + sym_string_literal, + sym_char_literal, + [92272] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + sym_name_identifier, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + STATE(710), 1, + sym_literal, + STATE(741), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + [92311] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(816), 1, + sym_float_number_literal, + ACTIONS(818), 1, + sym_number_literal, + ACTIONS(820), 1, + anon_sym_DQUOTE, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + sym_name_identifier, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + STATE(710), 1, + sym_literal, + STATE(737), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(729), 2, + sym_string_literal, + sym_char_literal, + [92350] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92375] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1010), 1, + sym_float_number_literal, + ACTIONS(1012), 1, + sym_number_literal, + ACTIONS(1014), 1, + anon_sym_DQUOTE, + ACTIONS(3401), 1, + anon_sym_LPAREN, + ACTIONS(3403), 1, + sym_name_identifier, + ACTIONS(3405), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1661), 1, + sym_literal, + STATE(1664), 1, + sym_name_subsuperexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1646), 2, + sym_string_literal, + sym_char_literal, + [92414] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92437] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92462] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92485] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92510] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(99), 1, + sym_float_number_literal, + ACTIONS(101), 1, + sym_number_literal, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(3383), 1, + anon_sym_LPAREN, + ACTIONS(3385), 1, + sym_name_identifier, + ACTIONS(3387), 1, + anon_sym_SQUOTE, + STATE(839), 1, + sym_name_subsuperexpression, + STATE(849), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(833), 2, + sym_string_literal, + sym_char_literal, + [92549] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + sym_name_identifier, + ACTIONS(3435), 1, + anon_sym_SQUOTE, + STATE(1482), 1, + sym_name_subsuperexpression, + STATE(1497), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + [92588] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2204), 1, + sym_float_number_literal, + ACTIONS(2206), 1, + sym_number_literal, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + sym_name_identifier, + ACTIONS(3435), 1, + anon_sym_SQUOTE, + STATE(1481), 1, + sym_name_subsuperexpression, + STATE(1497), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1505), 2, + sym_string_literal, + sym_char_literal, + [92627] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92650] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(207), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1633), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92673] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(201), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1631), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92696] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92721] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(3437), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + sym_name_identifier, + ACTIONS(3441), 1, + anon_sym_SQUOTE, + STATE(682), 1, + sym_name_subsuperexpression, + STATE(696), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + [92760] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(739), 1, + sym_float_number_literal, + ACTIONS(741), 1, + sym_number_literal, + ACTIONS(743), 1, + anon_sym_DQUOTE, + ACTIONS(3437), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + sym_name_identifier, + ACTIONS(3441), 1, + anon_sym_SQUOTE, + STATE(678), 1, + sym_name_subsuperexpression, + STATE(696), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(687), 2, + sym_string_literal, + sym_char_literal, + [92799] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92824] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1639), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1641), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92849] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + sym_name_identifier, + ACTIONS(3447), 1, + anon_sym_SQUOTE, + STATE(1445), 1, + sym_name_subsuperexpression, + STATE(1452), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + [92888] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1623), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1621), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92911] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1619), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92936] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + sym_name_identifier, + ACTIONS(3453), 1, + anon_sym_SQUOTE, + STATE(496), 1, + sym_name_subsuperexpression, + STATE(538), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + [92975] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(284), 1, + sym_float_number_literal, + ACTIONS(286), 1, + sym_number_literal, + ACTIONS(288), 1, + anon_sym_DQUOTE, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + sym_name_identifier, + ACTIONS(3453), 1, + anon_sym_SQUOTE, + STATE(502), 1, + sym_name_subsuperexpression, + STATE(538), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(520), 2, + sym_string_literal, + sym_char_literal, + [93014] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1637), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1635), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93037] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(978), 1, + sym_float_number_literal, + ACTIONS(980), 1, + sym_number_literal, + ACTIONS(982), 1, + anon_sym_DQUOTE, + ACTIONS(3365), 1, + anon_sym_LPAREN, + ACTIONS(3367), 1, + sym_name_identifier, + ACTIONS(3369), 1, + anon_sym_SQUOTE, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + STATE(1675), 1, + sym_name_subsuperexpression, + STATE(1681), 1, + sym_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1554), 2, + sym_string_literal, + sym_char_literal, + [93076] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93099] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2155), 1, + sym_float_number_literal, + ACTIONS(2157), 1, + sym_number_literal, + ACTIONS(2159), 1, + anon_sym_DQUOTE, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + sym_name_identifier, + ACTIONS(3447), 1, + anon_sym_SQUOTE, + STATE(1443), 1, + sym_name_subsuperexpression, + STATE(1452), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1440), 2, + sym_string_literal, + sym_char_literal, + [93138] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1615), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1617), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93163] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93188] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(3455), 1, + anon_sym_LPAREN, + ACTIONS(3457), 1, + sym_name_identifier, + ACTIONS(3459), 1, + anon_sym_SQUOTE, + STATE(672), 1, + sym_name_subsuperexpression, + STATE(689), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + [93227] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1659), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1657), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93250] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(992), 1, + sym_float_number_literal, + ACTIONS(994), 1, + sym_number_literal, + ACTIONS(996), 1, + anon_sym_DQUOTE, + ACTIONS(3167), 1, + anon_sym_LPAREN, + ACTIONS(3169), 1, + sym_name_identifier, + ACTIONS(3171), 1, + anon_sym_SQUOTE, + STATE(825), 1, + sym_literal, + STATE(893), 1, + sym_name_subsuperexpression, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(855), 2, + sym_string_literal, + sym_char_literal, + [93289] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1503), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1499), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1501), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93314] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1629), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1627), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93337] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1647), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1649), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93362] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1625), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1503), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93385] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + sym_name_identifier, + ACTIONS(3465), 1, + anon_sym_SQUOTE, + STATE(1469), 1, + sym_name_subsuperexpression, + STATE(1474), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + [93424] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2135), 1, + sym_float_number_literal, + ACTIONS(2137), 1, + sym_number_literal, + ACTIONS(2139), 1, + anon_sym_DQUOTE, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + sym_name_identifier, + ACTIONS(3465), 1, + anon_sym_SQUOTE, + STATE(1470), 1, + sym_name_subsuperexpression, + STATE(1474), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1473), 2, + sym_string_literal, + sym_char_literal, + [93463] = 12, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(683), 1, + sym_float_number_literal, + ACTIONS(685), 1, + sym_number_literal, + ACTIONS(687), 1, + anon_sym_DQUOTE, + ACTIONS(3455), 1, + anon_sym_LPAREN, + ACTIONS(3457), 1, + sym_name_identifier, + ACTIONS(3459), 1, + anon_sym_SQUOTE, + STATE(668), 1, + sym_name_subsuperexpression, + STATE(689), 1, + sym_literal, + STATE(1537), 1, + aux_sym_name_superexpression_repeat2, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + [93502] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93524] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93546] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93568] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(1348), 1, + sym_type_expression, + STATE(1703), 1, + sym_typeclass_expression, + STATE(1805), 1, + aux_sym_name_superexpression_repeat1, + STATE(2091), 1, + sym_parametrized_typeclass, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [93604] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93626] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93648] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1873), 2, + anon_sym_DASH_GT, + anon_sym_RPAREN, + STATE(1709), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + [93680] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93702] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93724] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(1785), 1, + sym_annotated_type, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1835), 1, + sym_type_expression, + STATE(2470), 1, + sym_type_subexpression, + STATE(2484), 1, + sym_defined_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3467), 2, + anon_sym_const, + anon_sym_var, + [93758] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1651), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1653), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93780] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 5, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93802] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(179), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1908), 2, + anon_sym_DASH_GT, + anon_sym_RPAREN, + STATE(1371), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + [93834] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(260), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93856] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3471), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(2014), 1, + aux_sym_variant_name_repeat1, + STATE(2015), 1, + aux_sym_tuple_name_repeat1, + STATE(2388), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93887] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + sym_name_identifier, + STATE(1985), 1, + aux_sym_tuple_name_repeat1, + STATE(1992), 1, + aux_sym_variant_name_repeat1, + STATE(2173), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93918] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3471), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(2014), 1, + aux_sym_variant_name_repeat1, + STATE(2015), 1, + aux_sym_tuple_name_repeat1, + STATE(2398), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93949] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3471), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(2014), 1, + aux_sym_variant_name_repeat1, + STATE(2015), 1, + aux_sym_tuple_name_repeat1, + STATE(2405), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93980] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_RPAREN, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1725), 2, + sym_typeclass_expression, + aux_sym_definition_parameter_repeat1, + [94011] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3471), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(2014), 1, + aux_sym_variant_name_repeat1, + STATE(2015), 1, + aux_sym_tuple_name_repeat1, + STATE(2170), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [94042] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3363), 2, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(3358), 7, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94063] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3487), 1, + anon_sym_LPAREN, + STATE(1091), 1, + sym_annotated_typeclass, + STATE(1094), 1, + sym_typeclass_expression, + STATE(1231), 1, + sym_defined_typeclass, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94096] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(1348), 1, + sym_type_expression, + STATE(1805), 1, + aux_sym_name_superexpression_repeat1, + STATE(2023), 1, + sym_typeclass_expression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94129] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3489), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, + sym_name_identifier, + STATE(113), 1, + sym_type_expression, + STATE(1148), 1, + sym_scoped_any_type, + STATE(1170), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94162] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3489), 1, + anon_sym_LPAREN, + ACTIONS(3493), 1, + sym_name_identifier, + STATE(1148), 1, + sym_scoped_any_type, + STATE(1170), 1, + sym_parametrized_type, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94195] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + sym_name_identifier, + STATE(1985), 1, + aux_sym_tuple_name_repeat1, + STATE(1992), 1, + aux_sym_variant_name_repeat1, + STATE(2148), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [94226] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3136), 1, + sym_typeclass_identifier, + STATE(1543), 1, + sym_type_expression, + STATE(1805), 1, + aux_sym_name_superexpression_repeat1, + STATE(2023), 1, + sym_typeclass_expression, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94259] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3487), 1, + anon_sym_LPAREN, + STATE(1094), 1, + sym_typeclass_expression, + STATE(1127), 1, + sym_annotated_typeclass, + STATE(1231), 1, + sym_defined_typeclass, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94292] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3495), 1, + anon_sym_RPAREN, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1727), 2, + sym_typeclass_expression, + aux_sym_definition_parameter_repeat1, + [94323] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + sym_name_identifier, + STATE(1985), 1, + aux_sym_tuple_name_repeat1, + STATE(1992), 1, + aux_sym_variant_name_repeat1, + STATE(2457), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2043), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [94354] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3500), 1, + anon_sym_RPAREN, + ACTIONS(3502), 1, + sym_typeclass_identifier, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3505), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1727), 2, + sym_typeclass_expression, + aux_sym_definition_parameter_repeat1, + [94385] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + anon_sym_RPAREN, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1727), 2, + sym_typeclass_expression, + aux_sym_definition_parameter_repeat1, + [94416] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3510), 1, + anon_sym_DASH_GT, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1900), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1916), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [94444] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3516), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1897), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1929), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94472] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3489), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1151), 1, + sym_scoped_any_type, + STATE(1170), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94502] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3518), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1854), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1917), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94530] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3520), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1841), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1919), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94558] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_RPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1748), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [94586] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3526), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1832), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1912), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94614] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3528), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1825), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1926), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94642] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3530), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1858), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1866), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94670] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3532), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1840), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1881), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94698] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3534), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1848), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1898), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94726] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3489), 1, + anon_sym_LPAREN, + STATE(1151), 1, + sym_scoped_any_type, + STATE(1170), 1, + sym_parametrized_type, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [94756] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3536), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1871), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1911), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94784] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + ACTIONS(3538), 1, + anon_sym_RPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1748), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [94812] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3540), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1876), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1892), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94840] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3542), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1886), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1910), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94868] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3544), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1820), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1893), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [94896] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3546), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1859), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1865), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94924] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3548), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1901), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1904), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [94952] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3550), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, + anon_sym_RPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3555), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1748), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [94980] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3558), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1853), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1914), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95008] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + ACTIONS(3560), 1, + anon_sym_RPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1748), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [95036] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3562), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1863), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1877), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [95064] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3564), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1908), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1909), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95092] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3566), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1831), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1899), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95120] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(1785), 1, + sym_annotated_type, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1835), 1, + sym_type_expression, + STATE(2433), 1, + sym_defined_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95150] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3568), 1, + sym_typeclass_identifier, + ACTIONS(3570), 1, + sym_name_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2039), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3075), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95180] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3572), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1870), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1928), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95208] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3574), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1895), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1931), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [95236] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3576), 1, + sym_typeclass_identifier, + ACTIONS(3578), 1, + sym_name_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2038), 1, + aux_sym_name_expression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3580), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95266] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3136), 1, + sym_typeclass_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + STATE(1814), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1728), 2, + sym_typeclass_expression, + aux_sym_definition_parameter_repeat1, + [95294] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3582), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1934), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1937), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [95322] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3584), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1883), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + STATE(1885), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95350] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3586), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1891), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + STATE(1924), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [95378] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(1785), 1, + sym_annotated_type, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1835), 1, + sym_type_expression, + STATE(2445), 1, + sym_defined_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95408] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(1785), 1, + sym_annotated_type, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1835), 1, + sym_type_expression, + STATE(2434), 1, + sym_defined_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95438] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1734), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [95463] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2010), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95490] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3591), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + ACTIONS(2575), 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + [95513] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2011), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95540] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1193), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95567] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2649), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3594), 1, + sym_type_identifier, + STATE(1137), 1, + aux_sym_tuple_type_repeat1, + STATE(1145), 1, + sym_type_identifier_definition, + STATE(1186), 1, + sym_tuple_type, + STATE(2006), 1, + aux_sym_type_identifier_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [95596] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(1986), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95623] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1183), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95650] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3598), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3596), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95675] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(3594), 1, + sym_type_identifier, + STATE(1186), 1, + sym_tuple_type, + STATE(1942), 1, + aux_sym_tuple_type_repeat1, + STATE(1962), 1, + sym_type_identifier_definition, + STATE(2006), 1, + aux_sym_type_identifier_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [95704] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1233), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95731] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(671), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95758] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1750), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [95783] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95810] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2153), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95837] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1107), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95864] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1124), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95891] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1280), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95918] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1867), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [95945] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3522), 1, + anon_sym_LPAREN, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1742), 2, + sym_type_expression, + aux_sym_definition_argument_repeat1, + [95970] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3602), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3600), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(1773), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [95995] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1222), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96022] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1105), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96049] = 4, + ACTIONS(5), 1, + sym__doc_comment, + STATE(2449), 1, + sym_partition_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3604), 6, + anon_sym_TEST, + anon_sym_INTERFACE, + anon_sym_CORE, + anon_sym_LIB, + anon_sym_MODULE, + anon_sym_EXE, + [96068] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1187), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96095] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1135), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96122] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(1938), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96149] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1325), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96176] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(1906), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96203] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(1999), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96230] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2419), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96257] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1818), 1, + sym_parametrized_type, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96284] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1167), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96311] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2009), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96338] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1102), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96365] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1938), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96392] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1169), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96419] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_type_expression, + STATE(1834), 1, + aux_sym_name_superexpression_repeat1, + STATE(1965), 1, + sym_parametrized_type, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(59), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96446] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1156), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96473] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_type_expression, + STATE(1188), 1, + sym_parametrized_type, + STATE(1896), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96500] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3606), 1, + sym_typeclass_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3075), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96524] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3608), 1, + anon_sym_AMP, + STATE(1808), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 4, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [96544] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(3612), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [96568] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3614), 1, + anon_sym_AMP, + STATE(1808), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 4, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [96588] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2495), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3617), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1815), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [96612] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3619), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96634] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3606), 1, + sym_typeclass_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3623), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96658] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3625), 1, + anon_sym_COLON, + ACTIONS(3627), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1807), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [96682] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3631), 1, + sym_number_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3629), 5, + anon_sym_LPAREN, + sym_name_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [96700] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + ACTIONS(3606), 1, + sym_typeclass_identifier, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(71), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [96724] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(2519), 1, + anon_sym_LBRACE, + ACTIONS(3633), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [96748] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_RPAREN, + ACTIONS(3635), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 4, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [96768] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3637), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96790] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3608), 1, + anon_sym_AMP, + STATE(1806), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 4, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + [96810] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3639), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1915), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96831] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3641), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [96852] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3643), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [96867] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3645), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96888] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3647), 1, + anon_sym_AMP, + STATE(1823), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 3, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + [96907] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3650), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1822), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96928] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3652), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96949] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3654), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1838), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96970] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3656), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1829), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [96991] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_RPAREN, + ACTIONS(3658), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 3, + anon_sym_DASH_GT, + anon_sym_AMP, + anon_sym_PIPE, + [97010] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3660), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97031] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1851), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [97052] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3664), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97073] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3666), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97094] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3668), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1837), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97115] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3075), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [97136] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3670), 5, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [97151] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3672), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97172] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97193] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3676), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97214] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3678), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2505), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [97233] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3680), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97254] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3682), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97275] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3684), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1844), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97296] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3686), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1930), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97317] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3688), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97338] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3690), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97359] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3692), 1, + anon_sym_AMP, + STATE(1846), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [97378] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3695), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1845), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97399] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97420] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3699), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1860), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97441] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2779), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_name_identifier, + [97456] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3701), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [97477] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3703), 1, + anon_sym_AMP, + STATE(1846), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [97496] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3705), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97517] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3707), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97538] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1857), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97559] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3711), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1869), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97580] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3713), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97601] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3715), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97622] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3717), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97643] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3719), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97664] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3721), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97685] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3723), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + [97702] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [97723] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3727), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1861), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97744] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3729), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [97765] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [97786] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3733), 1, + anon_sym_AMP, + STATE(1868), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 3, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + [97805] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3733), 1, + anon_sym_AMP, + STATE(1823), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 3, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + [97824] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3735), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97845] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3737), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97866] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3739), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97887] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3741), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1874), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97908] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3743), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1875), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97929] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3745), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97950] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97971] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [97992] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3751), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98013] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3753), 5, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [98028] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3755), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98049] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2801), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LPAREN, + sym_name_identifier, + [98064] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98085] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2607), 1, + anon_sym_LBRACE, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98106] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3759), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98127] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3761), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1879), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98148] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3763), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98169] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3765), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98190] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3767), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1889), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98211] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3769), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1890), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98232] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3771), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98253] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3773), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98274] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3775), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98295] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3777), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98316] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3779), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98337] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_RPAREN, + ACTIONS(3781), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + anon_sym_QMARK, + [98356] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3783), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98377] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1714), 1, + anon_sym_LPAREN, + STATE(1616), 1, + aux_sym_name_superexpression_repeat1, + STATE(2470), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3623), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [98398] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3785), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98419] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3787), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98440] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3789), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98461] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98482] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3793), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98503] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3795), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1907), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98524] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3797), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1905), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98545] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3799), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98566] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98587] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3703), 1, + anon_sym_AMP, + STATE(1852), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [98606] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3803), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98627] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3805), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98648] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3807), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98669] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3809), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98690] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3811), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98711] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3813), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98732] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3815), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1923), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98753] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3817), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98774] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3819), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98795] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3821), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98816] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3823), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98837] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1920), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98858] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3827), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [98879] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3829), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98900] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3831), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98921] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1932), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98942] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3835), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98963] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [98984] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3839), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99005] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3841), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [99026] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1925), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99047] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3845), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [99068] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3847), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [99089] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3849), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99110] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3851), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99131] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3853), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99152] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3855), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1935), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99173] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2501), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + sym_abstract_type_identifier, + ACTIONS(3857), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1005), 2, + sym_definition_parameter, + aux_sym_function_declaration_repeat1, + [99194] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3859), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99215] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2597), 1, + anon_sym_LBRACE, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99236] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3861), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1767), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99257] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3863), 4, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_in, + [99271] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_RPAREN, + ACTIONS(3865), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2507), 2, + anon_sym_AMP, + anon_sym_PIPE, + [99289] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3867), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [99303] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3869), 1, + anon_sym_LPAREN, + ACTIONS(3871), 1, + sym_name_identifier, + STATE(1812), 1, + sym__name_or_operator, + STATE(2152), 1, + sym_defined_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99323] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2930), 1, + anon_sym_AMP, + STATE(1971), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2645), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99341] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_RPAREN, + ACTIONS(3873), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1523), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + [99359] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1882), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99377] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3875), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1521), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [99393] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2932), 1, + anon_sym_PIPE, + STATE(1964), 1, + aux_sym_tuple_type_repeat1, + STATE(2000), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99413] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2639), 1, + anon_sym_RPAREN, + ACTIONS(3877), 1, + anon_sym_elif, + ACTIONS(3879), 1, + anon_sym_else, + STATE(1951), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99433] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2672), 1, + anon_sym_RPAREN, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1948), 2, + sym_match_case, + aux_sym_match_repeat1, + [99451] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3884), 4, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [99465] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1836), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99483] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3886), 1, + anon_sym_elif, + STATE(1951), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2624), 2, + anon_sym_RPAREN, + anon_sym_else, + [99501] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2691), 1, + anon_sym_RPAREN, + ACTIONS(3877), 1, + anon_sym_elif, + ACTIONS(3889), 1, + anon_sym_else, + STATE(1947), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99521] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3869), 1, + anon_sym_LPAREN, + ACTIONS(3871), 1, + sym_name_identifier, + STATE(1812), 1, + sym__name_or_operator, + STATE(2437), 1, + sym_defined_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99541] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3891), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3893), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + [99557] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3895), 1, + anon_sym_DASH_GT, + ACTIONS(3897), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2631), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99575] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3899), 1, + anon_sym_AMP, + STATE(1966), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2544), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99593] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3901), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3893), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_in, + [99609] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(3903), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1130), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99627] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1936), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99645] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1921), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99663] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2649), 1, + anon_sym_AMP, + ACTIONS(2755), 1, + anon_sym_PIPE, + STATE(1166), 1, + aux_sym_tuple_type_repeat1, + STATE(1192), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99683] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2930), 1, + anon_sym_AMP, + STATE(1964), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2668), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99701] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2695), 1, + anon_sym_RPAREN, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1948), 2, + sym_match_case, + aux_sym_match_repeat1, + [99719] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2930), 1, + anon_sym_AMP, + STATE(1971), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2720), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99737] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3899), 1, + anon_sym_AMP, + STATE(1956), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2552), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99755] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3907), 1, + anon_sym_AMP, + STATE(1966), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2539), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99773] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1817), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99791] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3869), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + sym_name_identifier, + STATE(1229), 1, + sym_function_declaration, + STATE(1830), 1, + sym__name_or_operator, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99811] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3514), 1, + sym_name_identifier, + ACTIONS(3621), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1810), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99829] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2601), 1, + anon_sym_LPAREN, + ACTIONS(3912), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1121), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99847] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3914), 1, + anon_sym_AMP, + STATE(1971), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2679), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [99865] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(3903), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1141), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99883] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2601), 1, + anon_sym_LPAREN, + ACTIONS(3912), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1118), 2, + sym_definition_argument, + aux_sym_defined_name_repeat1, + [99901] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3869), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + sym_name_identifier, + STATE(1300), 1, + sym_function_declaration, + STATE(1830), 1, + sym__name_or_operator, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99921] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3917), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_in, + [99934] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2796), 1, + anon_sym_RPAREN, + ACTIONS(2830), 1, + anon_sym_AMP, + ACTIONS(3919), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [99951] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_while, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3921), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [99968] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2539), 1, + anon_sym_then, + ACTIONS(3923), 1, + anon_sym_AMP, + STATE(1978), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [99985] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2746), 1, + anon_sym_RPAREN, + ACTIONS(3926), 1, + anon_sym_PIPE, + STATE(1979), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100002] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2668), 1, + anon_sym_RPAREN, + ACTIONS(3929), 1, + anon_sym_PIPE, + STATE(1980), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100019] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3932), 1, + anon_sym_EQ, + ACTIONS(3934), 1, + anon_sym_AMP, + STATE(1981), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100036] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2544), 1, + anon_sym_RPAREN, + ACTIONS(3937), 1, + anon_sym_AMP, + STATE(2007), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100053] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_RPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100070] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2544), 1, + anon_sym_while, + ACTIONS(3941), 1, + anon_sym_AMP, + STATE(1987), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100087] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3477), 1, + anon_sym_AMP, + ACTIONS(3943), 1, + anon_sym_EQ, + STATE(1981), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100104] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + anon_sym_do, + ACTIONS(3945), 1, + anon_sym_AMP, + STATE(1988), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100121] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2539), 1, + anon_sym_while, + ACTIONS(3947), 1, + anon_sym_AMP, + STATE(1987), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100138] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2544), 1, + anon_sym_do, + ACTIONS(3945), 1, + anon_sym_AMP, + STATE(1990), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100155] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2928), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1240), 2, + sym_match_case, + aux_sym_match_repeat1, + [100170] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2539), 1, + anon_sym_do, + ACTIONS(3950), 1, + anon_sym_AMP, + STATE(1990), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100187] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2751), 1, + anon_sym_RPAREN, + ACTIONS(2932), 1, + anon_sym_PIPE, + STATE(1980), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100204] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3953), 1, + anon_sym_EQ, + STATE(2005), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100221] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2880), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1218), 2, + sym_match_case, + aux_sym_match_repeat1, + [100236] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2544), 1, + anon_sym_with, + ACTIONS(3955), 1, + anon_sym_AMP, + STATE(1995), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100253] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2539), 1, + anon_sym_with, + ACTIONS(3957), 1, + anon_sym_AMP, + STATE(1995), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100270] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2697), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1157), 2, + sym_match_case, + aux_sym_match_repeat1, + [100285] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_do, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3960), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100302] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2746), 1, + anon_sym_RPAREN, + ACTIONS(2810), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100319] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + anon_sym_while, + ACTIONS(3941), 1, + anon_sym_AMP, + STATE(1984), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100336] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2789), 1, + anon_sym_RPAREN, + ACTIONS(2932), 1, + anon_sym_PIPE, + STATE(1980), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100353] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_then, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3962), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100370] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2870), 1, + anon_sym_RPAREN, + ACTIONS(3964), 1, + anon_sym_AMP, + STATE(2021), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100387] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2834), 1, + anon_sym_RPAREN, + ACTIONS(3966), 1, + anon_sym_PIPE, + STATE(1979), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100404] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3968), 1, + anon_sym_DOT, + ACTIONS(3971), 1, + sym_type_identifier, + STATE(2004), 1, + aux_sym_type_identifier_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100421] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3917), 1, + anon_sym_EQ, + ACTIONS(3973), 1, + anon_sym_PIPE, + STATE(2005), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100438] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3976), 1, + anon_sym_DOT, + ACTIONS(3978), 1, + sym_type_identifier, + STATE(2004), 1, + aux_sym_type_identifier_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100455] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2539), 1, + anon_sym_RPAREN, + ACTIONS(3980), 1, + anon_sym_AMP, + STATE(2007), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100472] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3917), 1, + anon_sym_in, + ACTIONS(3983), 1, + anon_sym_PIPE, + STATE(2008), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100489] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + anon_sym_then, + ACTIONS(3986), 1, + anon_sym_AMP, + STATE(2019), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100506] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + anon_sym_with, + ACTIONS(3955), 1, + anon_sym_AMP, + STATE(1994), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100523] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + anon_sym_RPAREN, + ACTIONS(3937), 1, + anon_sym_AMP, + STATE(1982), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100540] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3932), 1, + anon_sym_in, + ACTIONS(3988), 1, + anon_sym_AMP, + STATE(2012), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100557] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_with, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3991), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100574] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3953), 1, + anon_sym_in, + STATE(2008), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100591] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3471), 1, + anon_sym_AMP, + ACTIONS(3943), 1, + anon_sym_in, + STATE(2012), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100608] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2505), 1, + anon_sym_RPAREN, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(3919), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100625] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3993), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2812), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [100640] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3932), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_in, + [100653] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2544), 1, + anon_sym_then, + ACTIONS(3986), 1, + anon_sym_AMP, + STATE(1978), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100670] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1963), 2, + sym_match_case, + aux_sym_match_repeat1, + [100685] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2796), 1, + anon_sym_RPAREN, + ACTIONS(3995), 1, + anon_sym_AMP, + STATE(2021), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100702] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3481), 1, + sym_name_identifier, + STATE(2018), 1, + sym_annotated_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100716] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3221), 1, + anon_sym_COLON, + STATE(2217), 1, + sym__type_annotations, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100730] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3998), 1, + anon_sym_DQUOTE, + STATE(1374), 1, + sym_string_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100744] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(2018), 1, + sym_annotated_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100758] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3475), 1, + sym_name_identifier, + STATE(1975), 1, + sym_annotated_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100772] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1824), 1, + anon_sym_import, + STATE(1332), 1, + sym_import_statement, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100786] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3578), 1, + sym_name_identifier, + STATE(2031), 1, + aux_sym_name_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100800] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_then, + ACTIONS(4000), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100814] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_with, + ACTIONS(4002), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100828] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4004), 1, + sym_name_identifier, + STATE(2031), 1, + aux_sym_name_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100842] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3570), 1, + sym_name_identifier, + STATE(2031), 1, + aux_sym_name_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100856] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(13), 1, + anon_sym_import, + STATE(1332), 1, + sym_import_statement, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100870] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2766), 1, + anon_sym_AMP, + STATE(1180), 1, + aux_sym_typeclass_definition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100884] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4007), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100898] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4011), 1, + sym_name_identifier, + ACTIONS(4013), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100912] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3481), 1, + sym_name_identifier, + STATE(1975), 1, + sym_annotated_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100926] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4015), 1, + sym_name_identifier, + STATE(2031), 1, + aux_sym_name_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100940] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4017), 1, + sym_name_identifier, + STATE(2031), 1, + aux_sym_name_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100954] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_do, + ACTIONS(4019), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100968] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4021), 1, + sym_name_identifier, + STATE(2422), 1, + sym_defined_annotated_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [100982] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_while, + ACTIONS(4023), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [100996] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4025), 2, + anon_sym_EQ, + anon_sym_in, + [101008] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1521), 1, + anon_sym_RPAREN, + ACTIONS(4027), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [101022] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3998), 1, + anon_sym_DQUOTE, + STATE(1298), 1, + sym_string_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101036] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4029), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101047] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4031), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101058] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4033), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101069] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4035), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101080] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4037), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101091] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4039), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101102] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4041), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101113] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4043), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101124] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4045), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101135] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4047), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101146] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4049), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101157] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4051), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101168] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4053), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101179] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4055), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101190] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4057), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101201] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2770), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101212] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4059), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101223] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4061), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101234] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4063), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101245] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101256] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4065), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101267] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4067), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101278] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4069), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101289] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4071), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101300] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4073), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101311] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4075), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101322] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4077), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101333] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4079), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101344] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4081), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101355] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4083), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101366] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4085), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101377] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4087), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101388] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4089), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101399] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101410] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4093), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101421] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4095), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101432] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4097), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101443] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4099), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101454] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4101), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101465] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4103), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101476] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4105), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101487] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4107), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101498] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4109), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101509] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4111), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101520] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4113), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101531] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4115), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101542] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4117), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101553] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4119), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101564] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4121), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101575] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4123), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101586] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4125), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101597] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4127), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101608] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4129), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101619] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4131), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101630] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4133), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101641] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4135), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101652] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4137), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101663] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4139), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101674] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4141), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101685] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4143), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101696] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4145), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101707] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4147), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101718] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4149), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101729] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4151), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101740] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4153), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101751] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4155), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101762] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101773] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4159), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101784] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4161), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101795] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4163), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101806] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4165), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101817] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4167), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101828] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4169), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101839] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4171), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101850] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4173), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101861] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4175), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101872] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4177), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101883] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4179), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101894] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4181), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101905] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4183), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101916] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4185), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101927] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101938] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4189), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101949] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4191), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101960] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4193), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101971] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4195), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101982] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4197), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [101993] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4199), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102004] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4201), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102015] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4203), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102026] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4205), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102037] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4207), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102048] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4209), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102059] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4211), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102070] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4213), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102081] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4215), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102092] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4217), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102103] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4219), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102114] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4221), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102125] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4223), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102136] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1625), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102147] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4225), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102158] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102169] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4229), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102180] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4231), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102191] = 2, + ACTIONS(4233), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102200] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4235), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102211] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102222] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4239), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102233] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4241), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102244] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4243), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102255] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4245), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102266] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4247), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102277] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4249), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102288] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4251), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102299] = 2, + ACTIONS(4253), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102308] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4255), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102319] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4257), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102330] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4259), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102341] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4261), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102352] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4263), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102363] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4265), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102374] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4267), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102385] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4269), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102396] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4271), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102407] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4273), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102418] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4275), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102429] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4277), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102440] = 2, + ACTIONS(4279), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102449] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4281), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102460] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4283), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102471] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4285), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102482] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4287), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102493] = 2, + ACTIONS(4289), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102502] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4291), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102513] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4293), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102524] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4295), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102535] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4297), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102546] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4299), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102557] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4301), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102568] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102579] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4305), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102590] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4307), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102601] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4309), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102612] = 2, + ACTIONS(4311), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102621] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4313), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102632] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4315), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102643] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4317), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102654] = 2, + ACTIONS(4319), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102663] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4321), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102674] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4323), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102685] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4325), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102696] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4327), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102707] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4329), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102718] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4331), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102729] = 2, + ACTIONS(4333), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102738] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4335), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102749] = 2, + ACTIONS(4337), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102758] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4339), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102769] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4341), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102780] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4343), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102791] = 2, + ACTIONS(4345), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102800] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4347), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102811] = 2, + ACTIONS(4349), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102820] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4351), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102831] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4353), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102842] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4355), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102853] = 2, + ACTIONS(4357), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102862] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4359), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102873] = 2, + ACTIONS(4361), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102882] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4363), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102893] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4365), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102904] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4367), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102915] = 2, + ACTIONS(4369), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102924] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4371), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102935] = 2, + ACTIONS(4373), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102944] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4375), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102955] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4377), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102966] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4379), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [102977] = 2, + ACTIONS(4381), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102986] = 2, + ACTIONS(4383), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [102995] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4385), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103006] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4387), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103017] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4389), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103028] = 2, + ACTIONS(4391), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103037] = 2, + ACTIONS(4393), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103046] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4395), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103057] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4397), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103068] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4399), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103079] = 2, + ACTIONS(4401), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103088] = 2, + ACTIONS(4403), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103097] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4405), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103108] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4407), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103119] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4409), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103130] = 2, + ACTIONS(4411), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103139] = 2, + ACTIONS(4413), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103148] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4415), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103159] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4417), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103170] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4419), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103181] = 2, + ACTIONS(4421), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103190] = 2, + ACTIONS(4423), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103199] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4425), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103210] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103221] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103232] = 2, + ACTIONS(4431), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103241] = 2, + ACTIONS(4433), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103250] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4435), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103261] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4437), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103272] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103283] = 2, + ACTIONS(4441), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103292] = 2, + ACTIONS(4443), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103301] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4445), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103312] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4447), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103323] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4449), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103334] = 2, + ACTIONS(4451), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103343] = 2, + ACTIONS(4453), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103352] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4455), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103363] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4457), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103374] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103385] = 2, + ACTIONS(4461), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103394] = 2, + ACTIONS(4463), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103403] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4465), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103414] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4467), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103425] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4469), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103436] = 2, + ACTIONS(4471), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103445] = 2, + ACTIONS(4473), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103454] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4475), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103465] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4477), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103476] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4479), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103487] = 2, + ACTIONS(4481), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103496] = 2, + ACTIONS(4483), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103505] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4485), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103516] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4487), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103527] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4489), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103538] = 2, + ACTIONS(4491), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103547] = 2, + ACTIONS(4493), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103556] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4495), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103567] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103578] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4499), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103589] = 2, + ACTIONS(4501), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103598] = 2, + ACTIONS(4503), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103607] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4505), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103618] = 2, + ACTIONS(4507), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103627] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4509), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103638] = 2, + ACTIONS(4511), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103647] = 2, + ACTIONS(4513), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103656] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4515), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103667] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4517), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103678] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103689] = 2, + ACTIONS(4521), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103698] = 2, + ACTIONS(4523), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103707] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4525), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103718] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4527), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103729] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103740] = 2, + ACTIONS(4531), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103749] = 2, + ACTIONS(4533), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103758] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4535), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103769] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4537), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103780] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103791] = 2, + ACTIONS(4541), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103800] = 2, + ACTIONS(4543), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103809] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4545), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103820] = 2, + ACTIONS(4547), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103829] = 2, + ACTIONS(4549), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103838] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4551), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103849] = 2, + ACTIONS(4553), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103858] = 2, + ACTIONS(4555), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103867] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4557), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103878] = 2, + ACTIONS(4559), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103887] = 2, + ACTIONS(4561), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103896] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4563), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103907] = 2, + ACTIONS(4565), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103916] = 2, + ACTIONS(4567), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103925] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4569), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103936] = 2, + ACTIONS(4571), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103945] = 2, + ACTIONS(4573), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103954] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4011), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103965] = 2, + ACTIONS(4575), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103974] = 2, + ACTIONS(4577), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [103983] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4579), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [103994] = 2, + ACTIONS(4581), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104003] = 2, + ACTIONS(4583), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104012] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4585), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104023] = 2, + ACTIONS(4587), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104032] = 2, + ACTIONS(4589), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104041] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4591), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104052] = 2, + ACTIONS(4593), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104061] = 2, + ACTIONS(4595), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104070] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(201), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104081] = 2, + ACTIONS(4597), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104090] = 2, + ACTIONS(4599), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104099] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4601), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104110] = 2, + ACTIONS(4603), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104119] = 2, + ACTIONS(4605), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104128] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4607), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104139] = 2, + ACTIONS(4609), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104148] = 2, + ACTIONS(4611), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104157] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4613), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104168] = 2, + ACTIONS(4615), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104177] = 2, + ACTIONS(4617), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104186] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4619), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104197] = 2, + ACTIONS(4621), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104206] = 2, + ACTIONS(4623), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104215] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4625), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104226] = 2, + ACTIONS(4627), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104235] = 2, + ACTIONS(4629), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104244] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4631), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104255] = 2, + ACTIONS(4633), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104264] = 2, + ACTIONS(4635), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104273] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4637), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104284] = 2, + ACTIONS(4639), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104293] = 2, + ACTIONS(4641), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104302] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4643), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104313] = 2, + ACTIONS(4645), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104322] = 2, + ACTIONS(4647), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104331] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4649), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104342] = 2, + ACTIONS(4651), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104351] = 2, + ACTIONS(4653), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104360] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4655), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104371] = 2, + ACTIONS(4657), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104380] = 2, + ACTIONS(4659), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104389] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4661), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104400] = 2, + ACTIONS(4663), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104409] = 2, + ACTIONS(4665), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104418] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4667), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104429] = 2, + ACTIONS(4669), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104438] = 2, + ACTIONS(4671), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104447] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4673), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104458] = 2, + ACTIONS(4675), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104467] = 2, + ACTIONS(4677), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104476] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4679), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104487] = 2, + ACTIONS(4681), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104496] = 2, + ACTIONS(4683), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [104505] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104516] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4687), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104527] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4689), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104538] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4691), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104549] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4693), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104560] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4695), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104571] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4697), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104582] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4699), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104593] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4701), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104604] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4703), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104615] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4705), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104626] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4707), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104637] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4709), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104648] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4711), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104659] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4713), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104670] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4715), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104681] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4717), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104692] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4719), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104703] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104714] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4723), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104725] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4725), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104736] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1637), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104747] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4727), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104758] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4729), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104769] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4731), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104780] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4733), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104791] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4735), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104802] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4737), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104813] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4739), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104824] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4741), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104835] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4013), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104846] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4743), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104857] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4745), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104868] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4747), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104879] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4749), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104890] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4751), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104901] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4753), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104912] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4755), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104923] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4757), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104934] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4759), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104945] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4761), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104956] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4763), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104967] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4765), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104978] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4767), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [104989] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4769), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105000] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4771), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105011] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4773), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105022] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4775), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105033] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(207), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105044] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4777), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105055] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4779), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105066] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4781), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105077] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4783), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105088] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4785), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105099] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4787), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105110] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4789), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105121] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4791), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105132] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4793), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105143] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4795), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105154] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4797), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105165] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4799), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105176] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4801), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105187] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4803), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105198] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4805), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105209] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4807), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [105220] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4809), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105231] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4811), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105242] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4813), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105253] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4815), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105264] = 2, + ACTIONS(4817), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [105273] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4819), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105284] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4821), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105295] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4823), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105306] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4825), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105317] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4827), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105328] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4829), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105339] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4831), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105350] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4833), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105361] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4835), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105372] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4837), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105383] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4839), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105394] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4841), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105405] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4843), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105416] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4845), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105427] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4847), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105438] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4849), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105449] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4851), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105460] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4853), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105471] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4855), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105482] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4857), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105493] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4859), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105504] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4861), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105515] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4863), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105526] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4865), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105537] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4867), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105548] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4869), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105559] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105570] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4871), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105581] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105592] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4875), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105603] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4877), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105614] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1623), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105625] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4879), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105636] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4881), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105647] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4883), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105658] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105669] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4887), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105680] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4889), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105691] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4891), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105702] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4893), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105713] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4895), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105724] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4897), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105735] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4899), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105746] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4901), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105757] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4903), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105768] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4905), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105779] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4907), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105790] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4909), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105801] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4911), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105812] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4913), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105823] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4915), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105834] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4917), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105845] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4919), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105856] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4921), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105867] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4923), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105878] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4925), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105889] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4927), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105900] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4929), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105911] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4931), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105922] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4933), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105933] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4935), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105944] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4937), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105955] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4939), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105966] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4941), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105977] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4943), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105988] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4945), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [105999] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4947), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106010] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4949), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106021] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4951), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106032] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4953), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106043] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4955), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106054] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4957), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106065] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4959), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106076] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4961), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [106087] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4963), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(2)] = 0, + [SMALL_STATE(3)] = 146, + [SMALL_STATE(4)] = 292, + [SMALL_STATE(5)] = 438, + [SMALL_STATE(6)] = 584, + [SMALL_STATE(7)] = 730, + [SMALL_STATE(8)] = 876, + [SMALL_STATE(9)] = 1022, + [SMALL_STATE(10)] = 1168, + [SMALL_STATE(11)] = 1314, + [SMALL_STATE(12)] = 1460, + [SMALL_STATE(13)] = 1606, + [SMALL_STATE(14)] = 1752, + [SMALL_STATE(15)] = 1898, + [SMALL_STATE(16)] = 2044, + [SMALL_STATE(17)] = 2190, + [SMALL_STATE(18)] = 2336, + [SMALL_STATE(19)] = 2482, + [SMALL_STATE(20)] = 2628, + [SMALL_STATE(21)] = 2774, + [SMALL_STATE(22)] = 2920, + [SMALL_STATE(23)] = 3066, + [SMALL_STATE(24)] = 3212, + [SMALL_STATE(25)] = 3358, + [SMALL_STATE(26)] = 3504, + [SMALL_STATE(27)] = 3650, + [SMALL_STATE(28)] = 3796, + [SMALL_STATE(29)] = 3942, + [SMALL_STATE(30)] = 4088, + [SMALL_STATE(31)] = 4234, + [SMALL_STATE(32)] = 4380, + [SMALL_STATE(33)] = 4526, + [SMALL_STATE(34)] = 4672, + [SMALL_STATE(35)] = 4818, + [SMALL_STATE(36)] = 4964, + [SMALL_STATE(37)] = 5110, + [SMALL_STATE(38)] = 5256, + [SMALL_STATE(39)] = 5402, + [SMALL_STATE(40)] = 5548, + [SMALL_STATE(41)] = 5694, + [SMALL_STATE(42)] = 5840, + [SMALL_STATE(43)] = 5986, + [SMALL_STATE(44)] = 6132, + [SMALL_STATE(45)] = 6278, + [SMALL_STATE(46)] = 6424, + [SMALL_STATE(47)] = 6570, + [SMALL_STATE(48)] = 6716, + [SMALL_STATE(49)] = 6862, + [SMALL_STATE(50)] = 7008, + [SMALL_STATE(51)] = 7154, + [SMALL_STATE(52)] = 7300, + [SMALL_STATE(53)] = 7446, + [SMALL_STATE(54)] = 7592, + [SMALL_STATE(55)] = 7738, + [SMALL_STATE(56)] = 7884, + [SMALL_STATE(57)] = 8030, + [SMALL_STATE(58)] = 8176, + [SMALL_STATE(59)] = 8322, + [SMALL_STATE(60)] = 8462, + [SMALL_STATE(61)] = 8602, + [SMALL_STATE(62)] = 8742, + [SMALL_STATE(63)] = 8882, + [SMALL_STATE(64)] = 9022, + [SMALL_STATE(65)] = 9162, + [SMALL_STATE(66)] = 9302, + [SMALL_STATE(67)] = 9442, + [SMALL_STATE(68)] = 9582, + [SMALL_STATE(69)] = 9722, + [SMALL_STATE(70)] = 9862, + [SMALL_STATE(71)] = 10002, + [SMALL_STATE(72)] = 10142, + [SMALL_STATE(73)] = 10282, + [SMALL_STATE(74)] = 10422, + [SMALL_STATE(75)] = 10562, + [SMALL_STATE(76)] = 10702, + [SMALL_STATE(77)] = 10842, + [SMALL_STATE(78)] = 10982, + [SMALL_STATE(79)] = 11122, + [SMALL_STATE(80)] = 11262, + [SMALL_STATE(81)] = 11402, + [SMALL_STATE(82)] = 11542, + [SMALL_STATE(83)] = 11682, + [SMALL_STATE(84)] = 11822, + [SMALL_STATE(85)] = 11962, + [SMALL_STATE(86)] = 12102, + [SMALL_STATE(87)] = 12242, + [SMALL_STATE(88)] = 12382, + [SMALL_STATE(89)] = 12522, + [SMALL_STATE(90)] = 12662, + [SMALL_STATE(91)] = 12802, + [SMALL_STATE(92)] = 12942, + [SMALL_STATE(93)] = 13082, + [SMALL_STATE(94)] = 13222, + [SMALL_STATE(95)] = 13362, + [SMALL_STATE(96)] = 13502, + [SMALL_STATE(97)] = 13642, + [SMALL_STATE(98)] = 13782, + [SMALL_STATE(99)] = 13922, + [SMALL_STATE(100)] = 14062, + [SMALL_STATE(101)] = 14202, + [SMALL_STATE(102)] = 14342, + [SMALL_STATE(103)] = 14482, + [SMALL_STATE(104)] = 14622, + [SMALL_STATE(105)] = 14762, + [SMALL_STATE(106)] = 14902, + [SMALL_STATE(107)] = 15042, + [SMALL_STATE(108)] = 15182, + [SMALL_STATE(109)] = 15322, + [SMALL_STATE(110)] = 15462, + [SMALL_STATE(111)] = 15602, + [SMALL_STATE(112)] = 15742, + [SMALL_STATE(113)] = 15882, + [SMALL_STATE(114)] = 15950, + [SMALL_STATE(115)] = 16018, + [SMALL_STATE(116)] = 16086, + [SMALL_STATE(117)] = 16141, + [SMALL_STATE(118)] = 16195, + [SMALL_STATE(119)] = 16247, + [SMALL_STATE(120)] = 16301, + [SMALL_STATE(121)] = 16353, + [SMALL_STATE(122)] = 16437, + [SMALL_STATE(123)] = 16521, + [SMALL_STATE(124)] = 16605, + [SMALL_STATE(125)] = 16688, + [SMALL_STATE(126)] = 16771, + [SMALL_STATE(127)] = 16854, + [SMALL_STATE(128)] = 16937, + [SMALL_STATE(129)] = 17020, + [SMALL_STATE(130)] = 17103, + [SMALL_STATE(131)] = 17186, + [SMALL_STATE(132)] = 17269, + [SMALL_STATE(133)] = 17352, + [SMALL_STATE(134)] = 17435, + [SMALL_STATE(135)] = 17518, + [SMALL_STATE(136)] = 17601, + [SMALL_STATE(137)] = 17683, + [SMALL_STATE(138)] = 17765, + [SMALL_STATE(139)] = 17847, + [SMALL_STATE(140)] = 17929, + [SMALL_STATE(141)] = 18011, + [SMALL_STATE(142)] = 18093, + [SMALL_STATE(143)] = 18175, + [SMALL_STATE(144)] = 18257, + [SMALL_STATE(145)] = 18339, + [SMALL_STATE(146)] = 18421, + [SMALL_STATE(147)] = 18503, + [SMALL_STATE(148)] = 18585, + [SMALL_STATE(149)] = 18667, + [SMALL_STATE(150)] = 18749, + [SMALL_STATE(151)] = 18831, + [SMALL_STATE(152)] = 18913, + [SMALL_STATE(153)] = 18995, + [SMALL_STATE(154)] = 19077, + [SMALL_STATE(155)] = 19159, + [SMALL_STATE(156)] = 19241, + [SMALL_STATE(157)] = 19323, + [SMALL_STATE(158)] = 19425, + [SMALL_STATE(159)] = 19506, + [SMALL_STATE(160)] = 19587, + [SMALL_STATE(161)] = 19668, + [SMALL_STATE(162)] = 19749, + [SMALL_STATE(163)] = 19830, + [SMALL_STATE(164)] = 19911, + [SMALL_STATE(165)] = 19992, + [SMALL_STATE(166)] = 20073, + [SMALL_STATE(167)] = 20154, + [SMALL_STATE(168)] = 20235, + [SMALL_STATE(169)] = 20316, + [SMALL_STATE(170)] = 20397, + [SMALL_STATE(171)] = 20478, + [SMALL_STATE(172)] = 20559, + [SMALL_STATE(173)] = 20640, + [SMALL_STATE(174)] = 20721, + [SMALL_STATE(175)] = 20802, + [SMALL_STATE(176)] = 20883, + [SMALL_STATE(177)] = 20964, + [SMALL_STATE(178)] = 21045, + [SMALL_STATE(179)] = 21126, + [SMALL_STATE(180)] = 21207, + [SMALL_STATE(181)] = 21288, + [SMALL_STATE(182)] = 21369, + [SMALL_STATE(183)] = 21465, + [SMALL_STATE(184)] = 21561, + [SMALL_STATE(185)] = 21641, + [SMALL_STATE(186)] = 21737, + [SMALL_STATE(187)] = 21833, + [SMALL_STATE(188)] = 21929, + [SMALL_STATE(189)] = 22025, + [SMALL_STATE(190)] = 22105, + [SMALL_STATE(191)] = 22201, + [SMALL_STATE(192)] = 22281, + [SMALL_STATE(193)] = 22377, + [SMALL_STATE(194)] = 22473, + [SMALL_STATE(195)] = 22569, + [SMALL_STATE(196)] = 22665, + [SMALL_STATE(197)] = 22761, + [SMALL_STATE(198)] = 22857, + [SMALL_STATE(199)] = 22953, + [SMALL_STATE(200)] = 23049, + [SMALL_STATE(201)] = 23145, + [SMALL_STATE(202)] = 23241, + [SMALL_STATE(203)] = 23321, + [SMALL_STATE(204)] = 23401, + [SMALL_STATE(205)] = 23497, + [SMALL_STATE(206)] = 23593, + [SMALL_STATE(207)] = 23689, + [SMALL_STATE(208)] = 23785, + [SMALL_STATE(209)] = 23881, + [SMALL_STATE(210)] = 23977, + [SMALL_STATE(211)] = 24073, + [SMALL_STATE(212)] = 24169, + [SMALL_STATE(213)] = 24265, + [SMALL_STATE(214)] = 24361, + [SMALL_STATE(215)] = 24457, + [SMALL_STATE(216)] = 24553, + [SMALL_STATE(217)] = 24649, + [SMALL_STATE(218)] = 24729, + [SMALL_STATE(219)] = 24825, + [SMALL_STATE(220)] = 24921, + [SMALL_STATE(221)] = 25017, + [SMALL_STATE(222)] = 25113, + [SMALL_STATE(223)] = 25209, + [SMALL_STATE(224)] = 25305, + [SMALL_STATE(225)] = 25401, + [SMALL_STATE(226)] = 25481, + [SMALL_STATE(227)] = 25577, + [SMALL_STATE(228)] = 25673, + [SMALL_STATE(229)] = 25769, + [SMALL_STATE(230)] = 25865, + [SMALL_STATE(231)] = 25961, + [SMALL_STATE(232)] = 26057, + [SMALL_STATE(233)] = 26153, + [SMALL_STATE(234)] = 26249, + [SMALL_STATE(235)] = 26345, + [SMALL_STATE(236)] = 26441, + [SMALL_STATE(237)] = 26537, + [SMALL_STATE(238)] = 26633, + [SMALL_STATE(239)] = 26729, + [SMALL_STATE(240)] = 26825, + [SMALL_STATE(241)] = 26921, + [SMALL_STATE(242)] = 27017, + [SMALL_STATE(243)] = 27113, + [SMALL_STATE(244)] = 27209, + [SMALL_STATE(245)] = 27289, + [SMALL_STATE(246)] = 27385, + [SMALL_STATE(247)] = 27481, + [SMALL_STATE(248)] = 27577, + [SMALL_STATE(249)] = 27673, + [SMALL_STATE(250)] = 27753, + [SMALL_STATE(251)] = 27849, + [SMALL_STATE(252)] = 27929, + [SMALL_STATE(253)] = 28025, + [SMALL_STATE(254)] = 28121, + [SMALL_STATE(255)] = 28201, + [SMALL_STATE(256)] = 28297, + [SMALL_STATE(257)] = 28393, + [SMALL_STATE(258)] = 28489, + [SMALL_STATE(259)] = 28569, + [SMALL_STATE(260)] = 28665, + [SMALL_STATE(261)] = 28761, + [SMALL_STATE(262)] = 28857, + [SMALL_STATE(263)] = 28953, + [SMALL_STATE(264)] = 29049, + [SMALL_STATE(265)] = 29145, + [SMALL_STATE(266)] = 29241, + [SMALL_STATE(267)] = 29337, + [SMALL_STATE(268)] = 29433, + [SMALL_STATE(269)] = 29529, + [SMALL_STATE(270)] = 29625, + [SMALL_STATE(271)] = 29721, + [SMALL_STATE(272)] = 29817, + [SMALL_STATE(273)] = 29913, + [SMALL_STATE(274)] = 30009, + [SMALL_STATE(275)] = 30105, + [SMALL_STATE(276)] = 30201, + [SMALL_STATE(277)] = 30297, + [SMALL_STATE(278)] = 30393, + [SMALL_STATE(279)] = 30489, + [SMALL_STATE(280)] = 30585, + [SMALL_STATE(281)] = 30681, + [SMALL_STATE(282)] = 30777, + [SMALL_STATE(283)] = 30873, + [SMALL_STATE(284)] = 30969, + [SMALL_STATE(285)] = 31065, + [SMALL_STATE(286)] = 31161, + [SMALL_STATE(287)] = 31257, + [SMALL_STATE(288)] = 31353, + [SMALL_STATE(289)] = 31449, + [SMALL_STATE(290)] = 31545, + [SMALL_STATE(291)] = 31641, + [SMALL_STATE(292)] = 31737, + [SMALL_STATE(293)] = 31833, + [SMALL_STATE(294)] = 31929, + [SMALL_STATE(295)] = 32025, + [SMALL_STATE(296)] = 32121, + [SMALL_STATE(297)] = 32217, + [SMALL_STATE(298)] = 32313, + [SMALL_STATE(299)] = 32409, + [SMALL_STATE(300)] = 32505, + [SMALL_STATE(301)] = 32601, + [SMALL_STATE(302)] = 32697, + [SMALL_STATE(303)] = 32793, + [SMALL_STATE(304)] = 32889, + [SMALL_STATE(305)] = 32985, + [SMALL_STATE(306)] = 33081, + [SMALL_STATE(307)] = 33177, + [SMALL_STATE(308)] = 33273, + [SMALL_STATE(309)] = 33369, + [SMALL_STATE(310)] = 33465, + [SMALL_STATE(311)] = 33561, + [SMALL_STATE(312)] = 33657, + [SMALL_STATE(313)] = 33753, + [SMALL_STATE(314)] = 33849, + [SMALL_STATE(315)] = 33945, + [SMALL_STATE(316)] = 34041, + [SMALL_STATE(317)] = 34137, + [SMALL_STATE(318)] = 34233, + [SMALL_STATE(319)] = 34329, + [SMALL_STATE(320)] = 34425, + [SMALL_STATE(321)] = 34521, + [SMALL_STATE(322)] = 34617, + [SMALL_STATE(323)] = 34713, + [SMALL_STATE(324)] = 34809, + [SMALL_STATE(325)] = 34905, + [SMALL_STATE(326)] = 35001, + [SMALL_STATE(327)] = 35097, + [SMALL_STATE(328)] = 35193, + [SMALL_STATE(329)] = 35289, + [SMALL_STATE(330)] = 35385, + [SMALL_STATE(331)] = 35481, + [SMALL_STATE(332)] = 35561, + [SMALL_STATE(333)] = 35657, + [SMALL_STATE(334)] = 35753, + [SMALL_STATE(335)] = 35849, + [SMALL_STATE(336)] = 35945, + [SMALL_STATE(337)] = 36041, + [SMALL_STATE(338)] = 36137, + [SMALL_STATE(339)] = 36233, + [SMALL_STATE(340)] = 36329, + [SMALL_STATE(341)] = 36409, + [SMALL_STATE(342)] = 36505, + [SMALL_STATE(343)] = 36601, + [SMALL_STATE(344)] = 36697, + [SMALL_STATE(345)] = 36793, + [SMALL_STATE(346)] = 36889, + [SMALL_STATE(347)] = 36985, + [SMALL_STATE(348)] = 37081, + [SMALL_STATE(349)] = 37177, + [SMALL_STATE(350)] = 37273, + [SMALL_STATE(351)] = 37369, + [SMALL_STATE(352)] = 37449, + [SMALL_STATE(353)] = 37545, + [SMALL_STATE(354)] = 37641, + [SMALL_STATE(355)] = 37737, + [SMALL_STATE(356)] = 37833, + [SMALL_STATE(357)] = 37929, + [SMALL_STATE(358)] = 38025, + [SMALL_STATE(359)] = 38121, + [SMALL_STATE(360)] = 38217, + [SMALL_STATE(361)] = 38313, + [SMALL_STATE(362)] = 38409, + [SMALL_STATE(363)] = 38505, + [SMALL_STATE(364)] = 38601, + [SMALL_STATE(365)] = 38697, + [SMALL_STATE(366)] = 38793, + [SMALL_STATE(367)] = 38889, + [SMALL_STATE(368)] = 38985, + [SMALL_STATE(369)] = 39081, + [SMALL_STATE(370)] = 39161, + [SMALL_STATE(371)] = 39257, + [SMALL_STATE(372)] = 39353, + [SMALL_STATE(373)] = 39449, + [SMALL_STATE(374)] = 39545, + [SMALL_STATE(375)] = 39641, + [SMALL_STATE(376)] = 39737, + [SMALL_STATE(377)] = 39833, + [SMALL_STATE(378)] = 39929, + [SMALL_STATE(379)] = 40025, + [SMALL_STATE(380)] = 40121, + [SMALL_STATE(381)] = 40217, + [SMALL_STATE(382)] = 40313, + [SMALL_STATE(383)] = 40409, + [SMALL_STATE(384)] = 40505, + [SMALL_STATE(385)] = 40585, + [SMALL_STATE(386)] = 40681, + [SMALL_STATE(387)] = 40777, + [SMALL_STATE(388)] = 40873, + [SMALL_STATE(389)] = 40969, + [SMALL_STATE(390)] = 41065, + [SMALL_STATE(391)] = 41161, + [SMALL_STATE(392)] = 41257, + [SMALL_STATE(393)] = 41353, + [SMALL_STATE(394)] = 41449, + [SMALL_STATE(395)] = 41529, + [SMALL_STATE(396)] = 41625, + [SMALL_STATE(397)] = 41721, + [SMALL_STATE(398)] = 41817, + [SMALL_STATE(399)] = 41913, + [SMALL_STATE(400)] = 42009, + [SMALL_STATE(401)] = 42105, + [SMALL_STATE(402)] = 42201, + [SMALL_STATE(403)] = 42297, + [SMALL_STATE(404)] = 42393, + [SMALL_STATE(405)] = 42489, + [SMALL_STATE(406)] = 42585, + [SMALL_STATE(407)] = 42681, + [SMALL_STATE(408)] = 42777, + [SMALL_STATE(409)] = 42873, + [SMALL_STATE(410)] = 42969, + [SMALL_STATE(411)] = 43065, + [SMALL_STATE(412)] = 43161, + [SMALL_STATE(413)] = 43257, + [SMALL_STATE(414)] = 43353, + [SMALL_STATE(415)] = 43449, + [SMALL_STATE(416)] = 43545, + [SMALL_STATE(417)] = 43641, + [SMALL_STATE(418)] = 43720, + [SMALL_STATE(419)] = 43799, + [SMALL_STATE(420)] = 43878, + [SMALL_STATE(421)] = 43957, + [SMALL_STATE(422)] = 44036, + [SMALL_STATE(423)] = 44115, + [SMALL_STATE(424)] = 44194, + [SMALL_STATE(425)] = 44273, + [SMALL_STATE(426)] = 44352, + [SMALL_STATE(427)] = 44398, + [SMALL_STATE(428)] = 44476, + [SMALL_STATE(429)] = 44522, + [SMALL_STATE(430)] = 44570, + [SMALL_STATE(431)] = 44616, + [SMALL_STATE(432)] = 44662, + [SMALL_STATE(433)] = 44708, + [SMALL_STATE(434)] = 44754, + [SMALL_STATE(435)] = 44800, + [SMALL_STATE(436)] = 44846, + [SMALL_STATE(437)] = 44924, + [SMALL_STATE(438)] = 44970, + [SMALL_STATE(439)] = 45016, + [SMALL_STATE(440)] = 45062, + [SMALL_STATE(441)] = 45140, + [SMALL_STATE(442)] = 45187, + [SMALL_STATE(443)] = 45232, + [SMALL_STATE(444)] = 45277, + [SMALL_STATE(445)] = 45324, + [SMALL_STATE(446)] = 45369, + [SMALL_STATE(447)] = 45413, + [SMALL_STATE(448)] = 45457, + [SMALL_STATE(449)] = 45501, + [SMALL_STATE(450)] = 45547, + [SMALL_STATE(451)] = 45591, + [SMALL_STATE(452)] = 45635, + [SMALL_STATE(453)] = 45679, + [SMALL_STATE(454)] = 45725, + [SMALL_STATE(455)] = 45770, + [SMALL_STATE(456)] = 45813, + [SMALL_STATE(457)] = 45856, + [SMALL_STATE(458)] = 45899, + [SMALL_STATE(459)] = 45944, + [SMALL_STATE(460)] = 45987, + [SMALL_STATE(461)] = 46030, + [SMALL_STATE(462)] = 46073, + [SMALL_STATE(463)] = 46115, + [SMALL_STATE(464)] = 46157, + [SMALL_STATE(465)] = 46229, + [SMALL_STATE(466)] = 46271, + [SMALL_STATE(467)] = 46315, + [SMALL_STATE(468)] = 46387, + [SMALL_STATE(469)] = 46459, + [SMALL_STATE(470)] = 46501, + [SMALL_STATE(471)] = 46543, + [SMALL_STATE(472)] = 46585, + [SMALL_STATE(473)] = 46628, + [SMALL_STATE(474)] = 46671, + [SMALL_STATE(475)] = 46712, + [SMALL_STATE(476)] = 46753, + [SMALL_STATE(477)] = 46794, + [SMALL_STATE(478)] = 46835, + [SMALL_STATE(479)] = 46876, + [SMALL_STATE(480)] = 46917, + [SMALL_STATE(481)] = 46958, + [SMALL_STATE(482)] = 47001, + [SMALL_STATE(483)] = 47042, + [SMALL_STATE(484)] = 47085, + [SMALL_STATE(485)] = 47126, + [SMALL_STATE(486)] = 47169, + [SMALL_STATE(487)] = 47212, + [SMALL_STATE(488)] = 47253, + [SMALL_STATE(489)] = 47294, + [SMALL_STATE(490)] = 47334, + [SMALL_STATE(491)] = 47374, + [SMALL_STATE(492)] = 47416, + [SMALL_STATE(493)] = 47456, + [SMALL_STATE(494)] = 47496, + [SMALL_STATE(495)] = 47536, + [SMALL_STATE(496)] = 47576, + [SMALL_STATE(497)] = 47618, + [SMALL_STATE(498)] = 47660, + [SMALL_STATE(499)] = 47700, + [SMALL_STATE(500)] = 47740, + [SMALL_STATE(501)] = 47780, + [SMALL_STATE(502)] = 47820, + [SMALL_STATE(503)] = 47862, + [SMALL_STATE(504)] = 47902, + [SMALL_STATE(505)] = 47942, + [SMALL_STATE(506)] = 47984, + [SMALL_STATE(507)] = 48024, + [SMALL_STATE(508)] = 48064, + [SMALL_STATE(509)] = 48104, + [SMALL_STATE(510)] = 48144, + [SMALL_STATE(511)] = 48186, + [SMALL_STATE(512)] = 48226, + [SMALL_STATE(513)] = 48266, + [SMALL_STATE(514)] = 48306, + [SMALL_STATE(515)] = 48346, + [SMALL_STATE(516)] = 48388, + [SMALL_STATE(517)] = 48430, + [SMALL_STATE(518)] = 48472, + [SMALL_STATE(519)] = 48514, + [SMALL_STATE(520)] = 48556, + [SMALL_STATE(521)] = 48596, + [SMALL_STATE(522)] = 48638, + [SMALL_STATE(523)] = 48680, + [SMALL_STATE(524)] = 48722, + [SMALL_STATE(525)] = 48764, + [SMALL_STATE(526)] = 48806, + [SMALL_STATE(527)] = 48848, + [SMALL_STATE(528)] = 48890, + [SMALL_STATE(529)] = 48930, + [SMALL_STATE(530)] = 48972, + [SMALL_STATE(531)] = 49012, + [SMALL_STATE(532)] = 49054, + [SMALL_STATE(533)] = 49096, + [SMALL_STATE(534)] = 49138, + [SMALL_STATE(535)] = 49180, + [SMALL_STATE(536)] = 49222, + [SMALL_STATE(537)] = 49262, + [SMALL_STATE(538)] = 49302, + [SMALL_STATE(539)] = 49342, + [SMALL_STATE(540)] = 49382, + [SMALL_STATE(541)] = 49424, + [SMALL_STATE(542)] = 49464, + [SMALL_STATE(543)] = 49504, + [SMALL_STATE(544)] = 49544, + [SMALL_STATE(545)] = 49584, + [SMALL_STATE(546)] = 49626, + [SMALL_STATE(547)] = 49666, + [SMALL_STATE(548)] = 49705, + [SMALL_STATE(549)] = 49744, + [SMALL_STATE(550)] = 49783, + [SMALL_STATE(551)] = 49824, + [SMALL_STATE(552)] = 49863, + [SMALL_STATE(553)] = 49902, + [SMALL_STATE(554)] = 49943, + [SMALL_STATE(555)] = 49984, + [SMALL_STATE(556)] = 50023, + [SMALL_STATE(557)] = 50064, + [SMALL_STATE(558)] = 50103, + [SMALL_STATE(559)] = 50142, + [SMALL_STATE(560)] = 50181, + [SMALL_STATE(561)] = 50220, + [SMALL_STATE(562)] = 50261, + [SMALL_STATE(563)] = 50302, + [SMALL_STATE(564)] = 50343, + [SMALL_STATE(565)] = 50382, + [SMALL_STATE(566)] = 50421, + [SMALL_STATE(567)] = 50460, + [SMALL_STATE(568)] = 50523, + [SMALL_STATE(569)] = 50564, + [SMALL_STATE(570)] = 50603, + [SMALL_STATE(571)] = 50666, + [SMALL_STATE(572)] = 50705, + [SMALL_STATE(573)] = 50746, + [SMALL_STATE(574)] = 50787, + [SMALL_STATE(575)] = 50826, + [SMALL_STATE(576)] = 50867, + [SMALL_STATE(577)] = 50924, + [SMALL_STATE(578)] = 50963, + [SMALL_STATE(579)] = 51004, + [SMALL_STATE(580)] = 51045, + [SMALL_STATE(581)] = 51086, + [SMALL_STATE(582)] = 51125, + [SMALL_STATE(583)] = 51164, + [SMALL_STATE(584)] = 51203, + [SMALL_STATE(585)] = 51242, + [SMALL_STATE(586)] = 51281, + [SMALL_STATE(587)] = 51322, + [SMALL_STATE(588)] = 51361, + [SMALL_STATE(589)] = 51402, + [SMALL_STATE(590)] = 51443, + [SMALL_STATE(591)] = 51482, + [SMALL_STATE(592)] = 51521, + [SMALL_STATE(593)] = 51560, + [SMALL_STATE(594)] = 51601, + [SMALL_STATE(595)] = 51640, + [SMALL_STATE(596)] = 51681, + [SMALL_STATE(597)] = 51720, + [SMALL_STATE(598)] = 51759, + [SMALL_STATE(599)] = 51798, + [SMALL_STATE(600)] = 51837, + [SMALL_STATE(601)] = 51878, + [SMALL_STATE(602)] = 51917, + [SMALL_STATE(603)] = 51956, + [SMALL_STATE(604)] = 51997, + [SMALL_STATE(605)] = 52036, + [SMALL_STATE(606)] = 52075, + [SMALL_STATE(607)] = 52114, + [SMALL_STATE(608)] = 52155, + [SMALL_STATE(609)] = 52196, + [SMALL_STATE(610)] = 52235, + [SMALL_STATE(611)] = 52274, + [SMALL_STATE(612)] = 52313, + [SMALL_STATE(613)] = 52352, + [SMALL_STATE(614)] = 52391, + [SMALL_STATE(615)] = 52430, + [SMALL_STATE(616)] = 52469, + [SMALL_STATE(617)] = 52526, + [SMALL_STATE(618)] = 52567, + [SMALL_STATE(619)] = 52606, + [SMALL_STATE(620)] = 52647, + [SMALL_STATE(621)] = 52686, + [SMALL_STATE(622)] = 52725, + [SMALL_STATE(623)] = 52764, + [SMALL_STATE(624)] = 52803, + [SMALL_STATE(625)] = 52844, + [SMALL_STATE(626)] = 52885, + [SMALL_STATE(627)] = 52926, + [SMALL_STATE(628)] = 52965, + [SMALL_STATE(629)] = 53006, + [SMALL_STATE(630)] = 53045, + [SMALL_STATE(631)] = 53084, + [SMALL_STATE(632)] = 53123, + [SMALL_STATE(633)] = 53164, + [SMALL_STATE(634)] = 53203, + [SMALL_STATE(635)] = 53242, + [SMALL_STATE(636)] = 53283, + [SMALL_STATE(637)] = 53322, + [SMALL_STATE(638)] = 53361, + [SMALL_STATE(639)] = 53400, + [SMALL_STATE(640)] = 53441, + [SMALL_STATE(641)] = 53482, + [SMALL_STATE(642)] = 53523, + [SMALL_STATE(643)] = 53562, + [SMALL_STATE(644)] = 53603, + [SMALL_STATE(645)] = 53644, + [SMALL_STATE(646)] = 53683, + [SMALL_STATE(647)] = 53724, + [SMALL_STATE(648)] = 53763, + [SMALL_STATE(649)] = 53804, + [SMALL_STATE(650)] = 53845, + [SMALL_STATE(651)] = 53884, + [SMALL_STATE(652)] = 53923, + [SMALL_STATE(653)] = 53962, + [SMALL_STATE(654)] = 54001, + [SMALL_STATE(655)] = 54042, + [SMALL_STATE(656)] = 54083, + [SMALL_STATE(657)] = 54122, + [SMALL_STATE(658)] = 54163, + [SMALL_STATE(659)] = 54203, + [SMALL_STATE(660)] = 54259, + [SMALL_STATE(661)] = 54299, + [SMALL_STATE(662)] = 54337, + [SMALL_STATE(663)] = 54377, + [SMALL_STATE(664)] = 54417, + [SMALL_STATE(665)] = 54457, + [SMALL_STATE(666)] = 54497, + [SMALL_STATE(667)] = 54537, + [SMALL_STATE(668)] = 54577, + [SMALL_STATE(669)] = 54617, + [SMALL_STATE(670)] = 54657, + [SMALL_STATE(671)] = 54695, + [SMALL_STATE(672)] = 54733, + [SMALL_STATE(673)] = 54773, + [SMALL_STATE(674)] = 54813, + [SMALL_STATE(675)] = 54853, + [SMALL_STATE(676)] = 54891, + [SMALL_STATE(677)] = 54931, + [SMALL_STATE(678)] = 54969, + [SMALL_STATE(679)] = 55009, + [SMALL_STATE(680)] = 55047, + [SMALL_STATE(681)] = 55085, + [SMALL_STATE(682)] = 55123, + [SMALL_STATE(683)] = 55163, + [SMALL_STATE(684)] = 55203, + [SMALL_STATE(685)] = 55241, + [SMALL_STATE(686)] = 55279, + [SMALL_STATE(687)] = 55317, + [SMALL_STATE(688)] = 55355, + [SMALL_STATE(689)] = 55393, + [SMALL_STATE(690)] = 55431, + [SMALL_STATE(691)] = 55469, + [SMALL_STATE(692)] = 55507, + [SMALL_STATE(693)] = 55545, + [SMALL_STATE(694)] = 55583, + [SMALL_STATE(695)] = 55623, + [SMALL_STATE(696)] = 55661, + [SMALL_STATE(697)] = 55699, + [SMALL_STATE(698)] = 55737, + [SMALL_STATE(699)] = 55775, + [SMALL_STATE(700)] = 55813, + [SMALL_STATE(701)] = 55851, + [SMALL_STATE(702)] = 55889, + [SMALL_STATE(703)] = 55927, + [SMALL_STATE(704)] = 55965, + [SMALL_STATE(705)] = 56003, + [SMALL_STATE(706)] = 56041, + [SMALL_STATE(707)] = 56081, + [SMALL_STATE(708)] = 56119, + [SMALL_STATE(709)] = 56157, + [SMALL_STATE(710)] = 56197, + [SMALL_STATE(711)] = 56235, + [SMALL_STATE(712)] = 56273, + [SMALL_STATE(713)] = 56311, + [SMALL_STATE(714)] = 56349, + [SMALL_STATE(715)] = 56387, + [SMALL_STATE(716)] = 56425, + [SMALL_STATE(717)] = 56465, + [SMALL_STATE(718)] = 56503, + [SMALL_STATE(719)] = 56541, + [SMALL_STATE(720)] = 56581, + [SMALL_STATE(721)] = 56619, + [SMALL_STATE(722)] = 56657, + [SMALL_STATE(723)] = 56695, + [SMALL_STATE(724)] = 56733, + [SMALL_STATE(725)] = 56771, + [SMALL_STATE(726)] = 56809, + [SMALL_STATE(727)] = 56847, + [SMALL_STATE(728)] = 56885, + [SMALL_STATE(729)] = 56923, + [SMALL_STATE(730)] = 56961, + [SMALL_STATE(731)] = 56999, + [SMALL_STATE(732)] = 57039, + [SMALL_STATE(733)] = 57077, + [SMALL_STATE(734)] = 57115, + [SMALL_STATE(735)] = 57155, + [SMALL_STATE(736)] = 57193, + [SMALL_STATE(737)] = 57231, + [SMALL_STATE(738)] = 57271, + [SMALL_STATE(739)] = 57309, + [SMALL_STATE(740)] = 57347, + [SMALL_STATE(741)] = 57387, + [SMALL_STATE(742)] = 57427, + [SMALL_STATE(743)] = 57465, + [SMALL_STATE(744)] = 57505, + [SMALL_STATE(745)] = 57545, + [SMALL_STATE(746)] = 57585, + [SMALL_STATE(747)] = 57625, + [SMALL_STATE(748)] = 57681, + [SMALL_STATE(749)] = 57721, + [SMALL_STATE(750)] = 57759, + [SMALL_STATE(751)] = 57797, + [SMALL_STATE(752)] = 57837, + [SMALL_STATE(753)] = 57875, + [SMALL_STATE(754)] = 57915, + [SMALL_STATE(755)] = 57953, + [SMALL_STATE(756)] = 57993, + [SMALL_STATE(757)] = 58031, + [SMALL_STATE(758)] = 58101, + [SMALL_STATE(759)] = 58141, + [SMALL_STATE(760)] = 58179, + [SMALL_STATE(761)] = 58219, + [SMALL_STATE(762)] = 58259, + [SMALL_STATE(763)] = 58297, + [SMALL_STATE(764)] = 58337, + [SMALL_STATE(765)] = 58377, + [SMALL_STATE(766)] = 58417, + [SMALL_STATE(767)] = 58487, + [SMALL_STATE(768)] = 58525, + [SMALL_STATE(769)] = 58563, + [SMALL_STATE(770)] = 58633, + [SMALL_STATE(771)] = 58671, + [SMALL_STATE(772)] = 58711, + [SMALL_STATE(773)] = 58749, + [SMALL_STATE(774)] = 58789, + [SMALL_STATE(775)] = 58829, + [SMALL_STATE(776)] = 58869, + [SMALL_STATE(777)] = 58909, + [SMALL_STATE(778)] = 58947, + [SMALL_STATE(779)] = 58985, + [SMALL_STATE(780)] = 59023, + [SMALL_STATE(781)] = 59063, + [SMALL_STATE(782)] = 59103, + [SMALL_STATE(783)] = 59141, + [SMALL_STATE(784)] = 59180, + [SMALL_STATE(785)] = 59239, + [SMALL_STATE(786)] = 59276, + [SMALL_STATE(787)] = 59315, + [SMALL_STATE(788)] = 59352, + [SMALL_STATE(789)] = 59389, + [SMALL_STATE(790)] = 59426, + [SMALL_STATE(791)] = 59465, + [SMALL_STATE(792)] = 59524, + [SMALL_STATE(793)] = 59563, + [SMALL_STATE(794)] = 59600, + [SMALL_STATE(795)] = 59639, + [SMALL_STATE(796)] = 59698, + [SMALL_STATE(797)] = 59735, + [SMALL_STATE(798)] = 59772, + [SMALL_STATE(799)] = 59809, + [SMALL_STATE(800)] = 59848, + [SMALL_STATE(801)] = 59885, + [SMALL_STATE(802)] = 59922, + [SMALL_STATE(803)] = 59959, + [SMALL_STATE(804)] = 59998, + [SMALL_STATE(805)] = 60037, + [SMALL_STATE(806)] = 60074, + [SMALL_STATE(807)] = 60111, + [SMALL_STATE(808)] = 60148, + [SMALL_STATE(809)] = 60185, + [SMALL_STATE(810)] = 60224, + [SMALL_STATE(811)] = 60263, + [SMALL_STATE(812)] = 60300, + [SMALL_STATE(813)] = 60339, + [SMALL_STATE(814)] = 60376, + [SMALL_STATE(815)] = 60415, + [SMALL_STATE(816)] = 60452, + [SMALL_STATE(817)] = 60489, + [SMALL_STATE(818)] = 60526, + [SMALL_STATE(819)] = 60563, + [SMALL_STATE(820)] = 60600, + [SMALL_STATE(821)] = 60659, + [SMALL_STATE(822)] = 60698, + [SMALL_STATE(823)] = 60735, + [SMALL_STATE(824)] = 60804, + [SMALL_STATE(825)] = 60873, + [SMALL_STATE(826)] = 60910, + [SMALL_STATE(827)] = 60949, + [SMALL_STATE(828)] = 61018, + [SMALL_STATE(829)] = 61055, + [SMALL_STATE(830)] = 61094, + [SMALL_STATE(831)] = 61131, + [SMALL_STATE(832)] = 61168, + [SMALL_STATE(833)] = 61207, + [SMALL_STATE(834)] = 61244, + [SMALL_STATE(835)] = 61283, + [SMALL_STATE(836)] = 61322, + [SMALL_STATE(837)] = 61361, + [SMALL_STATE(838)] = 61398, + [SMALL_STATE(839)] = 61447, + [SMALL_STATE(840)] = 61486, + [SMALL_STATE(841)] = 61523, + [SMALL_STATE(842)] = 61592, + [SMALL_STATE(843)] = 61629, + [SMALL_STATE(844)] = 61666, + [SMALL_STATE(845)] = 61703, + [SMALL_STATE(846)] = 61740, + [SMALL_STATE(847)] = 61809, + [SMALL_STATE(848)] = 61846, + [SMALL_STATE(849)] = 61883, + [SMALL_STATE(850)] = 61920, + [SMALL_STATE(851)] = 61957, + [SMALL_STATE(852)] = 61994, + [SMALL_STATE(853)] = 62063, + [SMALL_STATE(854)] = 62100, + [SMALL_STATE(855)] = 62137, + [SMALL_STATE(856)] = 62174, + [SMALL_STATE(857)] = 62211, + [SMALL_STATE(858)] = 62250, + [SMALL_STATE(859)] = 62287, + [SMALL_STATE(860)] = 62324, + [SMALL_STATE(861)] = 62361, + [SMALL_STATE(862)] = 62398, + [SMALL_STATE(863)] = 62437, + [SMALL_STATE(864)] = 62474, + [SMALL_STATE(865)] = 62513, + [SMALL_STATE(866)] = 62550, + [SMALL_STATE(867)] = 62589, + [SMALL_STATE(868)] = 62628, + [SMALL_STATE(869)] = 62667, + [SMALL_STATE(870)] = 62704, + [SMALL_STATE(871)] = 62743, + [SMALL_STATE(872)] = 62792, + [SMALL_STATE(873)] = 62831, + [SMALL_STATE(874)] = 62870, + [SMALL_STATE(875)] = 62907, + [SMALL_STATE(876)] = 62944, + [SMALL_STATE(877)] = 63003, + [SMALL_STATE(878)] = 63040, + [SMALL_STATE(879)] = 63077, + [SMALL_STATE(880)] = 63116, + [SMALL_STATE(881)] = 63153, + [SMALL_STATE(882)] = 63190, + [SMALL_STATE(883)] = 63259, + [SMALL_STATE(884)] = 63328, + [SMALL_STATE(885)] = 63397, + [SMALL_STATE(886)] = 63436, + [SMALL_STATE(887)] = 63473, + [SMALL_STATE(888)] = 63510, + [SMALL_STATE(889)] = 63549, + [SMALL_STATE(890)] = 63586, + [SMALL_STATE(891)] = 63625, + [SMALL_STATE(892)] = 63664, + [SMALL_STATE(893)] = 63701, + [SMALL_STATE(894)] = 63740, + [SMALL_STATE(895)] = 63779, + [SMALL_STATE(896)] = 63817, + [SMALL_STATE(897)] = 63855, + [SMALL_STATE(898)] = 63891, + [SMALL_STATE(899)] = 63929, + [SMALL_STATE(900)] = 63965, + [SMALL_STATE(901)] = 64001, + [SMALL_STATE(902)] = 64069, + [SMALL_STATE(903)] = 64137, + [SMALL_STATE(904)] = 64205, + [SMALL_STATE(905)] = 64243, + [SMALL_STATE(906)] = 64281, + [SMALL_STATE(907)] = 64317, + [SMALL_STATE(908)] = 64355, + [SMALL_STATE(909)] = 64391, + [SMALL_STATE(910)] = 64429, + [SMALL_STATE(911)] = 64465, + [SMALL_STATE(912)] = 64501, + [SMALL_STATE(913)] = 64537, + [SMALL_STATE(914)] = 64573, + [SMALL_STATE(915)] = 64609, + [SMALL_STATE(916)] = 64645, + [SMALL_STATE(917)] = 64681, + [SMALL_STATE(918)] = 64717, + [SMALL_STATE(919)] = 64755, + [SMALL_STATE(920)] = 64791, + [SMALL_STATE(921)] = 64827, + [SMALL_STATE(922)] = 64863, + [SMALL_STATE(923)] = 64899, + [SMALL_STATE(924)] = 64935, + [SMALL_STATE(925)] = 64971, + [SMALL_STATE(926)] = 65007, + [SMALL_STATE(927)] = 65043, + [SMALL_STATE(928)] = 65081, + [SMALL_STATE(929)] = 65117, + [SMALL_STATE(930)] = 65153, + [SMALL_STATE(931)] = 65189, + [SMALL_STATE(932)] = 65225, + [SMALL_STATE(933)] = 65261, + [SMALL_STATE(934)] = 65299, + [SMALL_STATE(935)] = 65367, + [SMALL_STATE(936)] = 65405, + [SMALL_STATE(937)] = 65441, + [SMALL_STATE(938)] = 65479, + [SMALL_STATE(939)] = 65517, + [SMALL_STATE(940)] = 65553, + [SMALL_STATE(941)] = 65591, + [SMALL_STATE(942)] = 65629, + [SMALL_STATE(943)] = 65667, + [SMALL_STATE(944)] = 65703, + [SMALL_STATE(945)] = 65771, + [SMALL_STATE(946)] = 65839, + [SMALL_STATE(947)] = 65877, + [SMALL_STATE(948)] = 65913, + [SMALL_STATE(949)] = 65951, + [SMALL_STATE(950)] = 66019, + [SMALL_STATE(951)] = 66055, + [SMALL_STATE(952)] = 66091, + [SMALL_STATE(953)] = 66159, + [SMALL_STATE(954)] = 66227, + [SMALL_STATE(955)] = 66263, + [SMALL_STATE(956)] = 66298, + [SMALL_STATE(957)] = 66363, + [SMALL_STATE(958)] = 66398, + [SMALL_STATE(959)] = 66463, + [SMALL_STATE(960)] = 66498, + [SMALL_STATE(961)] = 66563, + [SMALL_STATE(962)] = 66628, + [SMALL_STATE(963)] = 66663, + [SMALL_STATE(964)] = 66730, + [SMALL_STATE(965)] = 66797, + [SMALL_STATE(966)] = 66864, + [SMALL_STATE(967)] = 66929, + [SMALL_STATE(968)] = 66994, + [SMALL_STATE(969)] = 67059, + [SMALL_STATE(970)] = 67094, + [SMALL_STATE(971)] = 67129, + [SMALL_STATE(972)] = 67166, + [SMALL_STATE(973)] = 67231, + [SMALL_STATE(974)] = 67268, + [SMALL_STATE(975)] = 67303, + [SMALL_STATE(976)] = 67338, + [SMALL_STATE(977)] = 67375, + [SMALL_STATE(978)] = 67440, + [SMALL_STATE(979)] = 67507, + [SMALL_STATE(980)] = 67574, + [SMALL_STATE(981)] = 67609, + [SMALL_STATE(982)] = 67644, + [SMALL_STATE(983)] = 67709, + [SMALL_STATE(984)] = 67744, + [SMALL_STATE(985)] = 67809, + [SMALL_STATE(986)] = 67846, + [SMALL_STATE(987)] = 67881, + [SMALL_STATE(988)] = 67916, + [SMALL_STATE(989)] = 67983, + [SMALL_STATE(990)] = 68048, + [SMALL_STATE(991)] = 68085, + [SMALL_STATE(992)] = 68122, + [SMALL_STATE(993)] = 68156, + [SMALL_STATE(994)] = 68220, + [SMALL_STATE(995)] = 68284, + [SMALL_STATE(996)] = 68348, + [SMALL_STATE(997)] = 68412, + [SMALL_STATE(998)] = 68446, + [SMALL_STATE(999)] = 68510, + [SMALL_STATE(1000)] = 68574, + [SMALL_STATE(1001)] = 68638, + [SMALL_STATE(1002)] = 68702, + [SMALL_STATE(1003)] = 68766, + [SMALL_STATE(1004)] = 68830, + [SMALL_STATE(1005)] = 68894, + [SMALL_STATE(1006)] = 68934, + [SMALL_STATE(1007)] = 69000, + [SMALL_STATE(1008)] = 69038, + [SMALL_STATE(1009)] = 69104, + [SMALL_STATE(1010)] = 69168, + [SMALL_STATE(1011)] = 69234, + [SMALL_STATE(1012)] = 69297, + [SMALL_STATE(1013)] = 69360, + [SMALL_STATE(1014)] = 69423, + [SMALL_STATE(1015)] = 69486, + [SMALL_STATE(1016)] = 69549, + [SMALL_STATE(1017)] = 69612, + [SMALL_STATE(1018)] = 69675, + [SMALL_STATE(1019)] = 69738, + [SMALL_STATE(1020)] = 69801, + [SMALL_STATE(1021)] = 69864, + [SMALL_STATE(1022)] = 69927, + [SMALL_STATE(1023)] = 69990, + [SMALL_STATE(1024)] = 70053, + [SMALL_STATE(1025)] = 70116, + [SMALL_STATE(1026)] = 70179, + [SMALL_STATE(1027)] = 70242, + [SMALL_STATE(1028)] = 70305, + [SMALL_STATE(1029)] = 70368, + [SMALL_STATE(1030)] = 70431, + [SMALL_STATE(1031)] = 70494, + [SMALL_STATE(1032)] = 70557, + [SMALL_STATE(1033)] = 70620, + [SMALL_STATE(1034)] = 70683, + [SMALL_STATE(1035)] = 70746, + [SMALL_STATE(1036)] = 70809, + [SMALL_STATE(1037)] = 70872, + [SMALL_STATE(1038)] = 70935, + [SMALL_STATE(1039)] = 70998, + [SMALL_STATE(1040)] = 71061, + [SMALL_STATE(1041)] = 71124, + [SMALL_STATE(1042)] = 71187, + [SMALL_STATE(1043)] = 71250, + [SMALL_STATE(1044)] = 71313, + [SMALL_STATE(1045)] = 71376, + [SMALL_STATE(1046)] = 71439, + [SMALL_STATE(1047)] = 71502, + [SMALL_STATE(1048)] = 71565, + [SMALL_STATE(1049)] = 71628, + [SMALL_STATE(1050)] = 71691, + [SMALL_STATE(1051)] = 71754, + [SMALL_STATE(1052)] = 71817, + [SMALL_STATE(1053)] = 71880, + [SMALL_STATE(1054)] = 71943, + [SMALL_STATE(1055)] = 72006, + [SMALL_STATE(1056)] = 72069, + [SMALL_STATE(1057)] = 72132, + [SMALL_STATE(1058)] = 72195, + [SMALL_STATE(1059)] = 72258, + [SMALL_STATE(1060)] = 72321, + [SMALL_STATE(1061)] = 72384, + [SMALL_STATE(1062)] = 72447, + [SMALL_STATE(1063)] = 72510, + [SMALL_STATE(1064)] = 72573, + [SMALL_STATE(1065)] = 72636, + [SMALL_STATE(1066)] = 72699, + [SMALL_STATE(1067)] = 72762, + [SMALL_STATE(1068)] = 72825, + [SMALL_STATE(1069)] = 72888, + [SMALL_STATE(1070)] = 72951, + [SMALL_STATE(1071)] = 73014, + [SMALL_STATE(1072)] = 73077, + [SMALL_STATE(1073)] = 73140, + [SMALL_STATE(1074)] = 73203, + [SMALL_STATE(1075)] = 73266, + [SMALL_STATE(1076)] = 73329, + [SMALL_STATE(1077)] = 73392, + [SMALL_STATE(1078)] = 73455, + [SMALL_STATE(1079)] = 73518, + [SMALL_STATE(1080)] = 73581, + [SMALL_STATE(1081)] = 73644, + [SMALL_STATE(1082)] = 73707, + [SMALL_STATE(1083)] = 73770, + [SMALL_STATE(1084)] = 73833, + [SMALL_STATE(1085)] = 73896, + [SMALL_STATE(1086)] = 73959, + [SMALL_STATE(1087)] = 74022, + [SMALL_STATE(1088)] = 74085, + [SMALL_STATE(1089)] = 74148, + [SMALL_STATE(1090)] = 74211, + [SMALL_STATE(1091)] = 74274, + [SMALL_STATE(1092)] = 74314, + [SMALL_STATE(1093)] = 74348, + [SMALL_STATE(1094)] = 74380, + [SMALL_STATE(1095)] = 74412, + [SMALL_STATE(1096)] = 74452, + [SMALL_STATE(1097)] = 74486, + [SMALL_STATE(1098)] = 74518, + [SMALL_STATE(1099)] = 74552, + [SMALL_STATE(1100)] = 74586, + [SMALL_STATE(1101)] = 74620, + [SMALL_STATE(1102)] = 74652, + [SMALL_STATE(1103)] = 74686, + [SMALL_STATE(1104)] = 74720, + [SMALL_STATE(1105)] = 74753, + [SMALL_STATE(1106)] = 74786, + [SMALL_STATE(1107)] = 74825, + [SMALL_STATE(1108)] = 74858, + [SMALL_STATE(1109)] = 74891, + [SMALL_STATE(1110)] = 74924, + [SMALL_STATE(1111)] = 74957, + [SMALL_STATE(1112)] = 74990, + [SMALL_STATE(1113)] = 75023, + [SMALL_STATE(1114)] = 75054, + [SMALL_STATE(1115)] = 75091, + [SMALL_STATE(1116)] = 75126, + [SMALL_STATE(1117)] = 75161, + [SMALL_STATE(1118)] = 75194, + [SMALL_STATE(1119)] = 75231, + [SMALL_STATE(1120)] = 75264, + [SMALL_STATE(1121)] = 75297, + [SMALL_STATE(1122)] = 75334, + [SMALL_STATE(1123)] = 75367, + [SMALL_STATE(1124)] = 75400, + [SMALL_STATE(1125)] = 75435, + [SMALL_STATE(1126)] = 75468, + [SMALL_STATE(1127)] = 75499, + [SMALL_STATE(1128)] = 75538, + [SMALL_STATE(1129)] = 75571, + [SMALL_STATE(1130)] = 75602, + [SMALL_STATE(1131)] = 75638, + [SMALL_STATE(1132)] = 75672, + [SMALL_STATE(1133)] = 75704, + [SMALL_STATE(1134)] = 75736, + [SMALL_STATE(1135)] = 75768, + [SMALL_STATE(1136)] = 75802, + [SMALL_STATE(1137)] = 75836, + [SMALL_STATE(1138)] = 75870, + [SMALL_STATE(1139)] = 75904, + [SMALL_STATE(1140)] = 75938, + [SMALL_STATE(1141)] = 75974, + [SMALL_STATE(1142)] = 76010, + [SMALL_STATE(1143)] = 76040, + [SMALL_STATE(1144)] = 76072, + [SMALL_STATE(1145)] = 76106, + [SMALL_STATE(1146)] = 76140, + [SMALL_STATE(1147)] = 76172, + [SMALL_STATE(1148)] = 76204, + [SMALL_STATE(1149)] = 76234, + [SMALL_STATE(1150)] = 76264, + [SMALL_STATE(1151)] = 76294, + [SMALL_STATE(1152)] = 76324, + [SMALL_STATE(1153)] = 76354, + [SMALL_STATE(1154)] = 76388, + [SMALL_STATE(1155)] = 76418, + [SMALL_STATE(1156)] = 76452, + [SMALL_STATE(1157)] = 76486, + [SMALL_STATE(1158)] = 76518, + [SMALL_STATE(1159)] = 76552, + [SMALL_STATE(1160)] = 76582, + [SMALL_STATE(1161)] = 76614, + [SMALL_STATE(1162)] = 76646, + [SMALL_STATE(1163)] = 76678, + [SMALL_STATE(1164)] = 76710, + [SMALL_STATE(1165)] = 76744, + [SMALL_STATE(1166)] = 76776, + [SMALL_STATE(1167)] = 76810, + [SMALL_STATE(1168)] = 76842, + [SMALL_STATE(1169)] = 76872, + [SMALL_STATE(1170)] = 76906, + [SMALL_STATE(1171)] = 76936, + [SMALL_STATE(1172)] = 76969, + [SMALL_STATE(1173)] = 77004, + [SMALL_STATE(1174)] = 77037, + [SMALL_STATE(1175)] = 77066, + [SMALL_STATE(1176)] = 77097, + [SMALL_STATE(1177)] = 77128, + [SMALL_STATE(1178)] = 77161, + [SMALL_STATE(1179)] = 77192, + [SMALL_STATE(1180)] = 77225, + [SMALL_STATE(1181)] = 77258, + [SMALL_STATE(1182)] = 77289, + [SMALL_STATE(1183)] = 77318, + [SMALL_STATE(1184)] = 77349, + [SMALL_STATE(1185)] = 77382, + [SMALL_STATE(1186)] = 77411, + [SMALL_STATE(1187)] = 77440, + [SMALL_STATE(1188)] = 77473, + [SMALL_STATE(1189)] = 77506, + [SMALL_STATE(1190)] = 77539, + [SMALL_STATE(1191)] = 77570, + [SMALL_STATE(1192)] = 77601, + [SMALL_STATE(1193)] = 77634, + [SMALL_STATE(1194)] = 77667, + [SMALL_STATE(1195)] = 77700, + [SMALL_STATE(1196)] = 77731, + [SMALL_STATE(1197)] = 77760, + [SMALL_STATE(1198)] = 77791, + [SMALL_STATE(1199)] = 77824, + [SMALL_STATE(1200)] = 77855, + [SMALL_STATE(1201)] = 77884, + [SMALL_STATE(1202)] = 77915, + [SMALL_STATE(1203)] = 77946, + [SMALL_STATE(1204)] = 77979, + [SMALL_STATE(1205)] = 78010, + [SMALL_STATE(1206)] = 78041, + [SMALL_STATE(1207)] = 78072, + [SMALL_STATE(1208)] = 78105, + [SMALL_STATE(1209)] = 78136, + [SMALL_STATE(1210)] = 78191, + [SMALL_STATE(1211)] = 78222, + [SMALL_STATE(1212)] = 78251, + [SMALL_STATE(1213)] = 78284, + [SMALL_STATE(1214)] = 78317, + [SMALL_STATE(1215)] = 78348, + [SMALL_STATE(1216)] = 78379, + [SMALL_STATE(1217)] = 78410, + [SMALL_STATE(1218)] = 78445, + [SMALL_STATE(1219)] = 78478, + [SMALL_STATE(1220)] = 78506, + [SMALL_STATE(1221)] = 78536, + [SMALL_STATE(1222)] = 78566, + [SMALL_STATE(1223)] = 78598, + [SMALL_STATE(1224)] = 78628, + [SMALL_STATE(1225)] = 78658, + [SMALL_STATE(1226)] = 78690, + [SMALL_STATE(1227)] = 78724, + [SMALL_STATE(1228)] = 78754, + [SMALL_STATE(1229)] = 78782, + [SMALL_STATE(1230)] = 78810, + [SMALL_STATE(1231)] = 78840, + [SMALL_STATE(1232)] = 78870, + [SMALL_STATE(1233)] = 78898, + [SMALL_STATE(1234)] = 78930, + [SMALL_STATE(1235)] = 78962, + [SMALL_STATE(1236)] = 78992, + [SMALL_STATE(1237)] = 79024, + [SMALL_STATE(1238)] = 79056, + [SMALL_STATE(1239)] = 79088, + [SMALL_STATE(1240)] = 79120, + [SMALL_STATE(1241)] = 79152, + [SMALL_STATE(1242)] = 79206, + [SMALL_STATE(1243)] = 79260, + [SMALL_STATE(1244)] = 79290, + [SMALL_STATE(1245)] = 79324, + [SMALL_STATE(1246)] = 79356, + [SMALL_STATE(1247)] = 79388, + [SMALL_STATE(1248)] = 79420, + [SMALL_STATE(1249)] = 79452, + [SMALL_STATE(1250)] = 79484, + [SMALL_STATE(1251)] = 79533, + [SMALL_STATE(1252)] = 79562, + [SMALL_STATE(1253)] = 79591, + [SMALL_STATE(1254)] = 79640, + [SMALL_STATE(1255)] = 79667, + [SMALL_STATE(1256)] = 79716, + [SMALL_STATE(1257)] = 79765, + [SMALL_STATE(1258)] = 79814, + [SMALL_STATE(1259)] = 79863, + [SMALL_STATE(1260)] = 79912, + [SMALL_STATE(1261)] = 79961, + [SMALL_STATE(1262)] = 80010, + [SMALL_STATE(1263)] = 80059, + [SMALL_STATE(1264)] = 80108, + [SMALL_STATE(1265)] = 80157, + [SMALL_STATE(1266)] = 80206, + [SMALL_STATE(1267)] = 80255, + [SMALL_STATE(1268)] = 80284, + [SMALL_STATE(1269)] = 80313, + [SMALL_STATE(1270)] = 80362, + [SMALL_STATE(1271)] = 80411, + [SMALL_STATE(1272)] = 80460, + [SMALL_STATE(1273)] = 80509, + [SMALL_STATE(1274)] = 80558, + [SMALL_STATE(1275)] = 80607, + [SMALL_STATE(1276)] = 80656, + [SMALL_STATE(1277)] = 80705, + [SMALL_STATE(1278)] = 80754, + [SMALL_STATE(1279)] = 80781, + [SMALL_STATE(1280)] = 80830, + [SMALL_STATE(1281)] = 80861, + [SMALL_STATE(1282)] = 80890, + [SMALL_STATE(1283)] = 80939, + [SMALL_STATE(1284)] = 80988, + [SMALL_STATE(1285)] = 81037, + [SMALL_STATE(1286)] = 81086, + [SMALL_STATE(1287)] = 81117, + [SMALL_STATE(1288)] = 81148, + [SMALL_STATE(1289)] = 81197, + [SMALL_STATE(1290)] = 81226, + [SMALL_STATE(1291)] = 81255, + [SMALL_STATE(1292)] = 81280, + [SMALL_STATE(1293)] = 81311, + [SMALL_STATE(1294)] = 81342, + [SMALL_STATE(1295)] = 81391, + [SMALL_STATE(1296)] = 81440, + [SMALL_STATE(1297)] = 81465, + [SMALL_STATE(1298)] = 81492, + [SMALL_STATE(1299)] = 81521, + [SMALL_STATE(1300)] = 81570, + [SMALL_STATE(1301)] = 81597, + [SMALL_STATE(1302)] = 81646, + [SMALL_STATE(1303)] = 81695, + [SMALL_STATE(1304)] = 81744, + [SMALL_STATE(1305)] = 81793, + [SMALL_STATE(1306)] = 81824, + [SMALL_STATE(1307)] = 81853, + [SMALL_STATE(1308)] = 81884, + [SMALL_STATE(1309)] = 81933, + [SMALL_STATE(1310)] = 81982, + [SMALL_STATE(1311)] = 82031, + [SMALL_STATE(1312)] = 82060, + [SMALL_STATE(1313)] = 82109, + [SMALL_STATE(1314)] = 82158, + [SMALL_STATE(1315)] = 82207, + [SMALL_STATE(1316)] = 82256, + [SMALL_STATE(1317)] = 82305, + [SMALL_STATE(1318)] = 82334, + [SMALL_STATE(1319)] = 82361, + [SMALL_STATE(1320)] = 82410, + [SMALL_STATE(1321)] = 82459, + [SMALL_STATE(1322)] = 82486, + [SMALL_STATE(1323)] = 82513, + [SMALL_STATE(1324)] = 82540, + [SMALL_STATE(1325)] = 82567, + [SMALL_STATE(1326)] = 82594, + [SMALL_STATE(1327)] = 82621, + [SMALL_STATE(1328)] = 82648, + [SMALL_STATE(1329)] = 82697, + [SMALL_STATE(1330)] = 82726, + [SMALL_STATE(1331)] = 82753, + [SMALL_STATE(1332)] = 82802, + [SMALL_STATE(1333)] = 82829, + [SMALL_STATE(1334)] = 82856, + [SMALL_STATE(1335)] = 82885, + [SMALL_STATE(1336)] = 82912, + [SMALL_STATE(1337)] = 82961, + [SMALL_STATE(1338)] = 82987, + [SMALL_STATE(1339)] = 83015, + [SMALL_STATE(1340)] = 83041, + [SMALL_STATE(1341)] = 83067, + [SMALL_STATE(1342)] = 83093, + [SMALL_STATE(1343)] = 83121, + [SMALL_STATE(1344)] = 83147, + [SMALL_STATE(1345)] = 83173, + [SMALL_STATE(1346)] = 83199, + [SMALL_STATE(1347)] = 83235, + [SMALL_STATE(1348)] = 83261, + [SMALL_STATE(1349)] = 83297, + [SMALL_STATE(1350)] = 83323, + [SMALL_STATE(1351)] = 83349, + [SMALL_STATE(1352)] = 83377, + [SMALL_STATE(1353)] = 83403, + [SMALL_STATE(1354)] = 83429, + [SMALL_STATE(1355)] = 83455, + [SMALL_STATE(1356)] = 83481, + [SMALL_STATE(1357)] = 83509, + [SMALL_STATE(1358)] = 83535, + [SMALL_STATE(1359)] = 83561, + [SMALL_STATE(1360)] = 83587, + [SMALL_STATE(1361)] = 83615, + [SMALL_STATE(1362)] = 83643, + [SMALL_STATE(1363)] = 83669, + [SMALL_STATE(1364)] = 83697, + [SMALL_STATE(1365)] = 83723, + [SMALL_STATE(1366)] = 83749, + [SMALL_STATE(1367)] = 83777, + [SMALL_STATE(1368)] = 83805, + [SMALL_STATE(1369)] = 83833, + [SMALL_STATE(1370)] = 83859, + [SMALL_STATE(1371)] = 83885, + [SMALL_STATE(1372)] = 83921, + [SMALL_STATE(1373)] = 83949, + [SMALL_STATE(1374)] = 83977, + [SMALL_STATE(1375)] = 84005, + [SMALL_STATE(1376)] = 84033, + [SMALL_STATE(1377)] = 84061, + [SMALL_STATE(1378)] = 84089, + [SMALL_STATE(1379)] = 84117, + [SMALL_STATE(1380)] = 84143, + [SMALL_STATE(1381)] = 84171, + [SMALL_STATE(1382)] = 84199, + [SMALL_STATE(1383)] = 84227, + [SMALL_STATE(1384)] = 84253, + [SMALL_STATE(1385)] = 84278, + [SMALL_STATE(1386)] = 84303, + [SMALL_STATE(1387)] = 84328, + [SMALL_STATE(1388)] = 84353, + [SMALL_STATE(1389)] = 84378, + [SMALL_STATE(1390)] = 84403, + [SMALL_STATE(1391)] = 84430, + [SMALL_STATE(1392)] = 84457, + [SMALL_STATE(1393)] = 84482, + [SMALL_STATE(1394)] = 84509, + [SMALL_STATE(1395)] = 84536, + [SMALL_STATE(1396)] = 84561, + [SMALL_STATE(1397)] = 84600, + [SMALL_STATE(1398)] = 84627, + [SMALL_STATE(1399)] = 84652, + [SMALL_STATE(1400)] = 84677, + [SMALL_STATE(1401)] = 84702, + [SMALL_STATE(1402)] = 84727, + [SMALL_STATE(1403)] = 84752, + [SMALL_STATE(1404)] = 84777, + [SMALL_STATE(1405)] = 84802, + [SMALL_STATE(1406)] = 84827, + [SMALL_STATE(1407)] = 84854, + [SMALL_STATE(1408)] = 84881, + [SMALL_STATE(1409)] = 84908, + [SMALL_STATE(1410)] = 84935, + [SMALL_STATE(1411)] = 84962, + [SMALL_STATE(1412)] = 84989, + [SMALL_STATE(1413)] = 85016, + [SMALL_STATE(1414)] = 85043, + [SMALL_STATE(1415)] = 85068, + [SMALL_STATE(1416)] = 85093, + [SMALL_STATE(1417)] = 85120, + [SMALL_STATE(1418)] = 85147, + [SMALL_STATE(1419)] = 85172, + [SMALL_STATE(1420)] = 85199, + [SMALL_STATE(1421)] = 85224, + [SMALL_STATE(1422)] = 85249, + [SMALL_STATE(1423)] = 85274, + [SMALL_STATE(1424)] = 85299, + [SMALL_STATE(1425)] = 85326, + [SMALL_STATE(1426)] = 85351, + [SMALL_STATE(1427)] = 85376, + [SMALL_STATE(1428)] = 85401, + [SMALL_STATE(1429)] = 85426, + [SMALL_STATE(1430)] = 85453, + [SMALL_STATE(1431)] = 85492, + [SMALL_STATE(1432)] = 85516, + [SMALL_STATE(1433)] = 85542, + [SMALL_STATE(1434)] = 85582, + [SMALL_STATE(1435)] = 85622, + [SMALL_STATE(1436)] = 85662, + [SMALL_STATE(1437)] = 85702, + [SMALL_STATE(1438)] = 85742, + [SMALL_STATE(1439)] = 85782, + [SMALL_STATE(1440)] = 85808, + [SMALL_STATE(1441)] = 85832, + [SMALL_STATE(1442)] = 85858, + [SMALL_STATE(1443)] = 85884, + [SMALL_STATE(1444)] = 85910, + [SMALL_STATE(1445)] = 85934, + [SMALL_STATE(1446)] = 85960, + [SMALL_STATE(1447)] = 85984, + [SMALL_STATE(1448)] = 86008, + [SMALL_STATE(1449)] = 86034, + [SMALL_STATE(1450)] = 86058, + [SMALL_STATE(1451)] = 86084, + [SMALL_STATE(1452)] = 86110, + [SMALL_STATE(1453)] = 86134, + [SMALL_STATE(1454)] = 86160, + [SMALL_STATE(1455)] = 86184, + [SMALL_STATE(1456)] = 86208, + [SMALL_STATE(1457)] = 86232, + [SMALL_STATE(1458)] = 86256, + [SMALL_STATE(1459)] = 86280, + [SMALL_STATE(1460)] = 86304, + [SMALL_STATE(1461)] = 86328, + [SMALL_STATE(1462)] = 86354, + [SMALL_STATE(1463)] = 86380, + [SMALL_STATE(1464)] = 86404, + [SMALL_STATE(1465)] = 86430, + [SMALL_STATE(1466)] = 86456, + [SMALL_STATE(1467)] = 86480, + [SMALL_STATE(1468)] = 86506, + [SMALL_STATE(1469)] = 86532, + [SMALL_STATE(1470)] = 86558, + [SMALL_STATE(1471)] = 86584, + [SMALL_STATE(1472)] = 86608, + [SMALL_STATE(1473)] = 86632, + [SMALL_STATE(1474)] = 86656, + [SMALL_STATE(1475)] = 86680, + [SMALL_STATE(1476)] = 86704, + [SMALL_STATE(1477)] = 86728, + [SMALL_STATE(1478)] = 86754, + [SMALL_STATE(1479)] = 86778, + [SMALL_STATE(1480)] = 86804, + [SMALL_STATE(1481)] = 86830, + [SMALL_STATE(1482)] = 86856, + [SMALL_STATE(1483)] = 86882, + [SMALL_STATE(1484)] = 86906, + [SMALL_STATE(1485)] = 86930, + [SMALL_STATE(1486)] = 86954, + [SMALL_STATE(1487)] = 86980, + [SMALL_STATE(1488)] = 87004, + [SMALL_STATE(1489)] = 87028, + [SMALL_STATE(1490)] = 87052, + [SMALL_STATE(1491)] = 87078, + [SMALL_STATE(1492)] = 87104, + [SMALL_STATE(1493)] = 87128, + [SMALL_STATE(1494)] = 87154, + [SMALL_STATE(1495)] = 87178, + [SMALL_STATE(1496)] = 87204, + [SMALL_STATE(1497)] = 87230, + [SMALL_STATE(1498)] = 87254, + [SMALL_STATE(1499)] = 87278, + [SMALL_STATE(1500)] = 87304, + [SMALL_STATE(1501)] = 87328, + [SMALL_STATE(1502)] = 87352, + [SMALL_STATE(1503)] = 87378, + [SMALL_STATE(1504)] = 87404, + [SMALL_STATE(1505)] = 87430, + [SMALL_STATE(1506)] = 87454, + [SMALL_STATE(1507)] = 87478, + [SMALL_STATE(1508)] = 87504, + [SMALL_STATE(1509)] = 87528, + [SMALL_STATE(1510)] = 87552, + [SMALL_STATE(1511)] = 87576, + [SMALL_STATE(1512)] = 87600, + [SMALL_STATE(1513)] = 87624, + [SMALL_STATE(1514)] = 87650, + [SMALL_STATE(1515)] = 87674, + [SMALL_STATE(1516)] = 87698, + [SMALL_STATE(1517)] = 87722, + [SMALL_STATE(1518)] = 87746, + [SMALL_STATE(1519)] = 87772, + [SMALL_STATE(1520)] = 87796, + [SMALL_STATE(1521)] = 87820, + [SMALL_STATE(1522)] = 87859, + [SMALL_STATE(1523)] = 87884, + [SMALL_STATE(1524)] = 87923, + [SMALL_STATE(1525)] = 87962, + [SMALL_STATE(1526)] = 87985, + [SMALL_STATE(1527)] = 88024, + [SMALL_STATE(1528)] = 88063, + [SMALL_STATE(1529)] = 88086, + [SMALL_STATE(1530)] = 88125, + [SMALL_STATE(1531)] = 88164, + [SMALL_STATE(1532)] = 88203, + [SMALL_STATE(1533)] = 88228, + [SMALL_STATE(1534)] = 88267, + [SMALL_STATE(1535)] = 88290, + [SMALL_STATE(1536)] = 88329, + [SMALL_STATE(1537)] = 88368, + [SMALL_STATE(1538)] = 88407, + [SMALL_STATE(1539)] = 88446, + [SMALL_STATE(1540)] = 88485, + [SMALL_STATE(1541)] = 88524, + [SMALL_STATE(1542)] = 88563, + [SMALL_STATE(1543)] = 88602, + [SMALL_STATE(1544)] = 88639, + [SMALL_STATE(1545)] = 88678, + [SMALL_STATE(1546)] = 88717, + [SMALL_STATE(1547)] = 88740, + [SMALL_STATE(1548)] = 88779, + [SMALL_STATE(1549)] = 88802, + [SMALL_STATE(1550)] = 88841, + [SMALL_STATE(1551)] = 88880, + [SMALL_STATE(1552)] = 88919, + [SMALL_STATE(1553)] = 88958, + [SMALL_STATE(1554)] = 88997, + [SMALL_STATE(1555)] = 89020, + [SMALL_STATE(1556)] = 89045, + [SMALL_STATE(1557)] = 89084, + [SMALL_STATE(1558)] = 89123, + [SMALL_STATE(1559)] = 89162, + [SMALL_STATE(1560)] = 89185, + [SMALL_STATE(1561)] = 89224, + [SMALL_STATE(1562)] = 89263, + [SMALL_STATE(1563)] = 89302, + [SMALL_STATE(1564)] = 89341, + [SMALL_STATE(1565)] = 89364, + [SMALL_STATE(1566)] = 89403, + [SMALL_STATE(1567)] = 89442, + [SMALL_STATE(1568)] = 89467, + [SMALL_STATE(1569)] = 89492, + [SMALL_STATE(1570)] = 89531, + [SMALL_STATE(1571)] = 89570, + [SMALL_STATE(1572)] = 89609, + [SMALL_STATE(1573)] = 89648, + [SMALL_STATE(1574)] = 89671, + [SMALL_STATE(1575)] = 89710, + [SMALL_STATE(1576)] = 89749, + [SMALL_STATE(1577)] = 89772, + [SMALL_STATE(1578)] = 89811, + [SMALL_STATE(1579)] = 89850, + [SMALL_STATE(1580)] = 89875, + [SMALL_STATE(1581)] = 89900, + [SMALL_STATE(1582)] = 89925, + [SMALL_STATE(1583)] = 89964, + [SMALL_STATE(1584)] = 89987, + [SMALL_STATE(1585)] = 90026, + [SMALL_STATE(1586)] = 90049, + [SMALL_STATE(1587)] = 90088, + [SMALL_STATE(1588)] = 90111, + [SMALL_STATE(1589)] = 90150, + [SMALL_STATE(1590)] = 90175, + [SMALL_STATE(1591)] = 90198, + [SMALL_STATE(1592)] = 90237, + [SMALL_STATE(1593)] = 90276, + [SMALL_STATE(1594)] = 90315, + [SMALL_STATE(1595)] = 90354, + [SMALL_STATE(1596)] = 90377, + [SMALL_STATE(1597)] = 90416, + [SMALL_STATE(1598)] = 90455, + [SMALL_STATE(1599)] = 90478, + [SMALL_STATE(1600)] = 90503, + [SMALL_STATE(1601)] = 90526, + [SMALL_STATE(1602)] = 90565, + [SMALL_STATE(1603)] = 90604, + [SMALL_STATE(1604)] = 90627, + [SMALL_STATE(1605)] = 90650, + [SMALL_STATE(1606)] = 90689, + [SMALL_STATE(1607)] = 90712, + [SMALL_STATE(1608)] = 90751, + [SMALL_STATE(1609)] = 90774, + [SMALL_STATE(1610)] = 90813, + [SMALL_STATE(1611)] = 90852, + [SMALL_STATE(1612)] = 90875, + [SMALL_STATE(1613)] = 90914, + [SMALL_STATE(1614)] = 90953, + [SMALL_STATE(1615)] = 90992, + [SMALL_STATE(1616)] = 91031, + [SMALL_STATE(1617)] = 91062, + [SMALL_STATE(1618)] = 91085, + [SMALL_STATE(1619)] = 91110, + [SMALL_STATE(1620)] = 91133, + [SMALL_STATE(1621)] = 91172, + [SMALL_STATE(1622)] = 91197, + [SMALL_STATE(1623)] = 91236, + [SMALL_STATE(1624)] = 91259, + [SMALL_STATE(1625)] = 91284, + [SMALL_STATE(1626)] = 91307, + [SMALL_STATE(1627)] = 91346, + [SMALL_STATE(1628)] = 91369, + [SMALL_STATE(1629)] = 91408, + [SMALL_STATE(1630)] = 91447, + [SMALL_STATE(1631)] = 91486, + [SMALL_STATE(1632)] = 91509, + [SMALL_STATE(1633)] = 91548, + [SMALL_STATE(1634)] = 91587, + [SMALL_STATE(1635)] = 91612, + [SMALL_STATE(1636)] = 91651, + [SMALL_STATE(1637)] = 91690, + [SMALL_STATE(1638)] = 91715, + [SMALL_STATE(1639)] = 91738, + [SMALL_STATE(1640)] = 91763, + [SMALL_STATE(1641)] = 91788, + [SMALL_STATE(1642)] = 91811, + [SMALL_STATE(1643)] = 91836, + [SMALL_STATE(1644)] = 91859, + [SMALL_STATE(1645)] = 91882, + [SMALL_STATE(1646)] = 91905, + [SMALL_STATE(1647)] = 91928, + [SMALL_STATE(1648)] = 91967, + [SMALL_STATE(1649)] = 92006, + [SMALL_STATE(1650)] = 92045, + [SMALL_STATE(1651)] = 92068, + [SMALL_STATE(1652)] = 92107, + [SMALL_STATE(1653)] = 92146, + [SMALL_STATE(1654)] = 92171, + [SMALL_STATE(1655)] = 92194, + [SMALL_STATE(1656)] = 92233, + [SMALL_STATE(1657)] = 92272, + [SMALL_STATE(1658)] = 92311, + [SMALL_STATE(1659)] = 92350, + [SMALL_STATE(1660)] = 92375, + [SMALL_STATE(1661)] = 92414, + [SMALL_STATE(1662)] = 92437, + [SMALL_STATE(1663)] = 92462, + [SMALL_STATE(1664)] = 92485, + [SMALL_STATE(1665)] = 92510, + [SMALL_STATE(1666)] = 92549, + [SMALL_STATE(1667)] = 92588, + [SMALL_STATE(1668)] = 92627, + [SMALL_STATE(1669)] = 92650, + [SMALL_STATE(1670)] = 92673, + [SMALL_STATE(1671)] = 92696, + [SMALL_STATE(1672)] = 92721, + [SMALL_STATE(1673)] = 92760, + [SMALL_STATE(1674)] = 92799, + [SMALL_STATE(1675)] = 92824, + [SMALL_STATE(1676)] = 92849, + [SMALL_STATE(1677)] = 92888, + [SMALL_STATE(1678)] = 92911, + [SMALL_STATE(1679)] = 92936, + [SMALL_STATE(1680)] = 92975, + [SMALL_STATE(1681)] = 93014, + [SMALL_STATE(1682)] = 93037, + [SMALL_STATE(1683)] = 93076, + [SMALL_STATE(1684)] = 93099, + [SMALL_STATE(1685)] = 93138, + [SMALL_STATE(1686)] = 93163, + [SMALL_STATE(1687)] = 93188, + [SMALL_STATE(1688)] = 93227, + [SMALL_STATE(1689)] = 93250, + [SMALL_STATE(1690)] = 93289, + [SMALL_STATE(1691)] = 93314, + [SMALL_STATE(1692)] = 93337, + [SMALL_STATE(1693)] = 93362, + [SMALL_STATE(1694)] = 93385, + [SMALL_STATE(1695)] = 93424, + [SMALL_STATE(1696)] = 93463, + [SMALL_STATE(1697)] = 93502, + [SMALL_STATE(1698)] = 93524, + [SMALL_STATE(1699)] = 93546, + [SMALL_STATE(1700)] = 93568, + [SMALL_STATE(1701)] = 93604, + [SMALL_STATE(1702)] = 93626, + [SMALL_STATE(1703)] = 93648, + [SMALL_STATE(1704)] = 93680, + [SMALL_STATE(1705)] = 93702, + [SMALL_STATE(1706)] = 93724, + [SMALL_STATE(1707)] = 93758, + [SMALL_STATE(1708)] = 93780, + [SMALL_STATE(1709)] = 93802, + [SMALL_STATE(1710)] = 93834, + [SMALL_STATE(1711)] = 93856, + [SMALL_STATE(1712)] = 93887, + [SMALL_STATE(1713)] = 93918, + [SMALL_STATE(1714)] = 93949, + [SMALL_STATE(1715)] = 93980, + [SMALL_STATE(1716)] = 94011, + [SMALL_STATE(1717)] = 94042, + [SMALL_STATE(1718)] = 94063, + [SMALL_STATE(1719)] = 94096, + [SMALL_STATE(1720)] = 94129, + [SMALL_STATE(1721)] = 94162, + [SMALL_STATE(1722)] = 94195, + [SMALL_STATE(1723)] = 94226, + [SMALL_STATE(1724)] = 94259, + [SMALL_STATE(1725)] = 94292, + [SMALL_STATE(1726)] = 94323, + [SMALL_STATE(1727)] = 94354, + [SMALL_STATE(1728)] = 94385, + [SMALL_STATE(1729)] = 94416, + [SMALL_STATE(1730)] = 94444, + [SMALL_STATE(1731)] = 94472, + [SMALL_STATE(1732)] = 94502, + [SMALL_STATE(1733)] = 94530, + [SMALL_STATE(1734)] = 94558, + [SMALL_STATE(1735)] = 94586, + [SMALL_STATE(1736)] = 94614, + [SMALL_STATE(1737)] = 94642, + [SMALL_STATE(1738)] = 94670, + [SMALL_STATE(1739)] = 94698, + [SMALL_STATE(1740)] = 94726, + [SMALL_STATE(1741)] = 94756, + [SMALL_STATE(1742)] = 94784, + [SMALL_STATE(1743)] = 94812, + [SMALL_STATE(1744)] = 94840, + [SMALL_STATE(1745)] = 94868, + [SMALL_STATE(1746)] = 94896, + [SMALL_STATE(1747)] = 94924, + [SMALL_STATE(1748)] = 94952, + [SMALL_STATE(1749)] = 94980, + [SMALL_STATE(1750)] = 95008, + [SMALL_STATE(1751)] = 95036, + [SMALL_STATE(1752)] = 95064, + [SMALL_STATE(1753)] = 95092, + [SMALL_STATE(1754)] = 95120, + [SMALL_STATE(1755)] = 95150, + [SMALL_STATE(1756)] = 95180, + [SMALL_STATE(1757)] = 95208, + [SMALL_STATE(1758)] = 95236, + [SMALL_STATE(1759)] = 95266, + [SMALL_STATE(1760)] = 95294, + [SMALL_STATE(1761)] = 95322, + [SMALL_STATE(1762)] = 95350, + [SMALL_STATE(1763)] = 95378, + [SMALL_STATE(1764)] = 95408, + [SMALL_STATE(1765)] = 95438, + [SMALL_STATE(1766)] = 95463, + [SMALL_STATE(1767)] = 95490, + [SMALL_STATE(1768)] = 95513, + [SMALL_STATE(1769)] = 95540, + [SMALL_STATE(1770)] = 95567, + [SMALL_STATE(1771)] = 95596, + [SMALL_STATE(1772)] = 95623, + [SMALL_STATE(1773)] = 95650, + [SMALL_STATE(1774)] = 95675, + [SMALL_STATE(1775)] = 95704, + [SMALL_STATE(1776)] = 95731, + [SMALL_STATE(1777)] = 95758, + [SMALL_STATE(1778)] = 95783, + [SMALL_STATE(1779)] = 95810, + [SMALL_STATE(1780)] = 95837, + [SMALL_STATE(1781)] = 95864, + [SMALL_STATE(1782)] = 95891, + [SMALL_STATE(1783)] = 95918, + [SMALL_STATE(1784)] = 95945, + [SMALL_STATE(1785)] = 95970, + [SMALL_STATE(1786)] = 95995, + [SMALL_STATE(1787)] = 96022, + [SMALL_STATE(1788)] = 96049, + [SMALL_STATE(1789)] = 96068, + [SMALL_STATE(1790)] = 96095, + [SMALL_STATE(1791)] = 96122, + [SMALL_STATE(1792)] = 96149, + [SMALL_STATE(1793)] = 96176, + [SMALL_STATE(1794)] = 96203, + [SMALL_STATE(1795)] = 96230, + [SMALL_STATE(1796)] = 96257, + [SMALL_STATE(1797)] = 96284, + [SMALL_STATE(1798)] = 96311, + [SMALL_STATE(1799)] = 96338, + [SMALL_STATE(1800)] = 96365, + [SMALL_STATE(1801)] = 96392, + [SMALL_STATE(1802)] = 96419, + [SMALL_STATE(1803)] = 96446, + [SMALL_STATE(1804)] = 96473, + [SMALL_STATE(1805)] = 96500, + [SMALL_STATE(1806)] = 96524, + [SMALL_STATE(1807)] = 96544, + [SMALL_STATE(1808)] = 96568, + [SMALL_STATE(1809)] = 96588, + [SMALL_STATE(1810)] = 96612, + [SMALL_STATE(1811)] = 96634, + [SMALL_STATE(1812)] = 96658, + [SMALL_STATE(1813)] = 96682, + [SMALL_STATE(1814)] = 96700, + [SMALL_STATE(1815)] = 96724, + [SMALL_STATE(1816)] = 96748, + [SMALL_STATE(1817)] = 96768, + [SMALL_STATE(1818)] = 96790, + [SMALL_STATE(1819)] = 96810, + [SMALL_STATE(1820)] = 96831, + [SMALL_STATE(1821)] = 96852, + [SMALL_STATE(1822)] = 96867, + [SMALL_STATE(1823)] = 96888, + [SMALL_STATE(1824)] = 96907, + [SMALL_STATE(1825)] = 96928, + [SMALL_STATE(1826)] = 96949, + [SMALL_STATE(1827)] = 96970, + [SMALL_STATE(1828)] = 96991, + [SMALL_STATE(1829)] = 97010, + [SMALL_STATE(1830)] = 97031, + [SMALL_STATE(1831)] = 97052, + [SMALL_STATE(1832)] = 97073, + [SMALL_STATE(1833)] = 97094, + [SMALL_STATE(1834)] = 97115, + [SMALL_STATE(1835)] = 97136, + [SMALL_STATE(1836)] = 97151, + [SMALL_STATE(1837)] = 97172, + [SMALL_STATE(1838)] = 97193, + [SMALL_STATE(1839)] = 97214, + [SMALL_STATE(1840)] = 97233, + [SMALL_STATE(1841)] = 97254, + [SMALL_STATE(1842)] = 97275, + [SMALL_STATE(1843)] = 97296, + [SMALL_STATE(1844)] = 97317, + [SMALL_STATE(1845)] = 97338, + [SMALL_STATE(1846)] = 97359, + [SMALL_STATE(1847)] = 97378, + [SMALL_STATE(1848)] = 97399, + [SMALL_STATE(1849)] = 97420, + [SMALL_STATE(1850)] = 97441, + [SMALL_STATE(1851)] = 97456, + [SMALL_STATE(1852)] = 97477, + [SMALL_STATE(1853)] = 97496, + [SMALL_STATE(1854)] = 97517, + [SMALL_STATE(1855)] = 97538, + [SMALL_STATE(1856)] = 97559, + [SMALL_STATE(1857)] = 97580, + [SMALL_STATE(1858)] = 97601, + [SMALL_STATE(1859)] = 97622, + [SMALL_STATE(1860)] = 97643, + [SMALL_STATE(1861)] = 97664, + [SMALL_STATE(1862)] = 97685, + [SMALL_STATE(1863)] = 97702, + [SMALL_STATE(1864)] = 97723, + [SMALL_STATE(1865)] = 97744, + [SMALL_STATE(1866)] = 97765, + [SMALL_STATE(1867)] = 97786, + [SMALL_STATE(1868)] = 97805, + [SMALL_STATE(1869)] = 97824, + [SMALL_STATE(1870)] = 97845, + [SMALL_STATE(1871)] = 97866, + [SMALL_STATE(1872)] = 97887, + [SMALL_STATE(1873)] = 97908, + [SMALL_STATE(1874)] = 97929, + [SMALL_STATE(1875)] = 97950, + [SMALL_STATE(1876)] = 97971, + [SMALL_STATE(1877)] = 97992, + [SMALL_STATE(1878)] = 98013, + [SMALL_STATE(1879)] = 98028, + [SMALL_STATE(1880)] = 98049, + [SMALL_STATE(1881)] = 98064, + [SMALL_STATE(1882)] = 98085, + [SMALL_STATE(1883)] = 98106, + [SMALL_STATE(1884)] = 98127, + [SMALL_STATE(1885)] = 98148, + [SMALL_STATE(1886)] = 98169, + [SMALL_STATE(1887)] = 98190, + [SMALL_STATE(1888)] = 98211, + [SMALL_STATE(1889)] = 98232, + [SMALL_STATE(1890)] = 98253, + [SMALL_STATE(1891)] = 98274, + [SMALL_STATE(1892)] = 98295, + [SMALL_STATE(1893)] = 98316, + [SMALL_STATE(1894)] = 98337, + [SMALL_STATE(1895)] = 98356, + [SMALL_STATE(1896)] = 98377, + [SMALL_STATE(1897)] = 98398, + [SMALL_STATE(1898)] = 98419, + [SMALL_STATE(1899)] = 98440, + [SMALL_STATE(1900)] = 98461, + [SMALL_STATE(1901)] = 98482, + [SMALL_STATE(1902)] = 98503, + [SMALL_STATE(1903)] = 98524, + [SMALL_STATE(1904)] = 98545, + [SMALL_STATE(1905)] = 98566, + [SMALL_STATE(1906)] = 98587, + [SMALL_STATE(1907)] = 98606, + [SMALL_STATE(1908)] = 98627, + [SMALL_STATE(1909)] = 98648, + [SMALL_STATE(1910)] = 98669, + [SMALL_STATE(1911)] = 98690, + [SMALL_STATE(1912)] = 98711, + [SMALL_STATE(1913)] = 98732, + [SMALL_STATE(1914)] = 98753, + [SMALL_STATE(1915)] = 98774, + [SMALL_STATE(1916)] = 98795, + [SMALL_STATE(1917)] = 98816, + [SMALL_STATE(1918)] = 98837, + [SMALL_STATE(1919)] = 98858, + [SMALL_STATE(1920)] = 98879, + [SMALL_STATE(1921)] = 98900, + [SMALL_STATE(1922)] = 98921, + [SMALL_STATE(1923)] = 98942, + [SMALL_STATE(1924)] = 98963, + [SMALL_STATE(1925)] = 98984, + [SMALL_STATE(1926)] = 99005, + [SMALL_STATE(1927)] = 99026, + [SMALL_STATE(1928)] = 99047, + [SMALL_STATE(1929)] = 99068, + [SMALL_STATE(1930)] = 99089, + [SMALL_STATE(1931)] = 99110, + [SMALL_STATE(1932)] = 99131, + [SMALL_STATE(1933)] = 99152, + [SMALL_STATE(1934)] = 99173, + [SMALL_STATE(1935)] = 99194, + [SMALL_STATE(1936)] = 99215, + [SMALL_STATE(1937)] = 99236, + [SMALL_STATE(1938)] = 99257, + [SMALL_STATE(1939)] = 99271, + [SMALL_STATE(1940)] = 99289, + [SMALL_STATE(1941)] = 99303, + [SMALL_STATE(1942)] = 99323, + [SMALL_STATE(1943)] = 99341, + [SMALL_STATE(1944)] = 99359, + [SMALL_STATE(1945)] = 99377, + [SMALL_STATE(1946)] = 99393, + [SMALL_STATE(1947)] = 99413, + [SMALL_STATE(1948)] = 99433, + [SMALL_STATE(1949)] = 99451, + [SMALL_STATE(1950)] = 99465, + [SMALL_STATE(1951)] = 99483, + [SMALL_STATE(1952)] = 99501, + [SMALL_STATE(1953)] = 99521, + [SMALL_STATE(1954)] = 99541, + [SMALL_STATE(1955)] = 99557, + [SMALL_STATE(1956)] = 99575, + [SMALL_STATE(1957)] = 99593, + [SMALL_STATE(1958)] = 99609, + [SMALL_STATE(1959)] = 99627, + [SMALL_STATE(1960)] = 99645, + [SMALL_STATE(1961)] = 99663, + [SMALL_STATE(1962)] = 99683, + [SMALL_STATE(1963)] = 99701, + [SMALL_STATE(1964)] = 99719, + [SMALL_STATE(1965)] = 99737, + [SMALL_STATE(1966)] = 99755, + [SMALL_STATE(1967)] = 99773, + [SMALL_STATE(1968)] = 99791, + [SMALL_STATE(1969)] = 99811, + [SMALL_STATE(1970)] = 99829, + [SMALL_STATE(1971)] = 99847, + [SMALL_STATE(1972)] = 99865, + [SMALL_STATE(1973)] = 99883, + [SMALL_STATE(1974)] = 99901, + [SMALL_STATE(1975)] = 99921, + [SMALL_STATE(1976)] = 99934, + [SMALL_STATE(1977)] = 99951, + [SMALL_STATE(1978)] = 99968, + [SMALL_STATE(1979)] = 99985, + [SMALL_STATE(1980)] = 100002, + [SMALL_STATE(1981)] = 100019, + [SMALL_STATE(1982)] = 100036, + [SMALL_STATE(1983)] = 100053, + [SMALL_STATE(1984)] = 100070, + [SMALL_STATE(1985)] = 100087, + [SMALL_STATE(1986)] = 100104, + [SMALL_STATE(1987)] = 100121, + [SMALL_STATE(1988)] = 100138, + [SMALL_STATE(1989)] = 100155, + [SMALL_STATE(1990)] = 100170, + [SMALL_STATE(1991)] = 100187, + [SMALL_STATE(1992)] = 100204, + [SMALL_STATE(1993)] = 100221, + [SMALL_STATE(1994)] = 100236, + [SMALL_STATE(1995)] = 100253, + [SMALL_STATE(1996)] = 100270, + [SMALL_STATE(1997)] = 100285, + [SMALL_STATE(1998)] = 100302, + [SMALL_STATE(1999)] = 100319, + [SMALL_STATE(2000)] = 100336, + [SMALL_STATE(2001)] = 100353, + [SMALL_STATE(2002)] = 100370, + [SMALL_STATE(2003)] = 100387, + [SMALL_STATE(2004)] = 100404, + [SMALL_STATE(2005)] = 100421, + [SMALL_STATE(2006)] = 100438, + [SMALL_STATE(2007)] = 100455, + [SMALL_STATE(2008)] = 100472, + [SMALL_STATE(2009)] = 100489, + [SMALL_STATE(2010)] = 100506, + [SMALL_STATE(2011)] = 100523, + [SMALL_STATE(2012)] = 100540, + [SMALL_STATE(2013)] = 100557, + [SMALL_STATE(2014)] = 100574, + [SMALL_STATE(2015)] = 100591, + [SMALL_STATE(2016)] = 100608, + [SMALL_STATE(2017)] = 100625, + [SMALL_STATE(2018)] = 100640, + [SMALL_STATE(2019)] = 100653, + [SMALL_STATE(2020)] = 100670, + [SMALL_STATE(2021)] = 100685, + [SMALL_STATE(2022)] = 100702, + [SMALL_STATE(2023)] = 100716, + [SMALL_STATE(2024)] = 100730, + [SMALL_STATE(2025)] = 100744, + [SMALL_STATE(2026)] = 100758, + [SMALL_STATE(2027)] = 100772, + [SMALL_STATE(2028)] = 100786, + [SMALL_STATE(2029)] = 100800, + [SMALL_STATE(2030)] = 100814, + [SMALL_STATE(2031)] = 100828, + [SMALL_STATE(2032)] = 100842, + [SMALL_STATE(2033)] = 100856, + [SMALL_STATE(2034)] = 100870, + [SMALL_STATE(2035)] = 100884, + [SMALL_STATE(2036)] = 100898, + [SMALL_STATE(2037)] = 100912, + [SMALL_STATE(2038)] = 100926, + [SMALL_STATE(2039)] = 100940, + [SMALL_STATE(2040)] = 100954, + [SMALL_STATE(2041)] = 100968, + [SMALL_STATE(2042)] = 100982, + [SMALL_STATE(2043)] = 100996, + [SMALL_STATE(2044)] = 101008, + [SMALL_STATE(2045)] = 101022, + [SMALL_STATE(2046)] = 101036, + [SMALL_STATE(2047)] = 101047, + [SMALL_STATE(2048)] = 101058, + [SMALL_STATE(2049)] = 101069, + [SMALL_STATE(2050)] = 101080, + [SMALL_STATE(2051)] = 101091, + [SMALL_STATE(2052)] = 101102, + [SMALL_STATE(2053)] = 101113, + [SMALL_STATE(2054)] = 101124, + [SMALL_STATE(2055)] = 101135, + [SMALL_STATE(2056)] = 101146, + [SMALL_STATE(2057)] = 101157, + [SMALL_STATE(2058)] = 101168, + [SMALL_STATE(2059)] = 101179, + [SMALL_STATE(2060)] = 101190, + [SMALL_STATE(2061)] = 101201, + [SMALL_STATE(2062)] = 101212, + [SMALL_STATE(2063)] = 101223, + [SMALL_STATE(2064)] = 101234, + [SMALL_STATE(2065)] = 101245, + [SMALL_STATE(2066)] = 101256, + [SMALL_STATE(2067)] = 101267, + [SMALL_STATE(2068)] = 101278, + [SMALL_STATE(2069)] = 101289, + [SMALL_STATE(2070)] = 101300, + [SMALL_STATE(2071)] = 101311, + [SMALL_STATE(2072)] = 101322, + [SMALL_STATE(2073)] = 101333, + [SMALL_STATE(2074)] = 101344, + [SMALL_STATE(2075)] = 101355, + [SMALL_STATE(2076)] = 101366, + [SMALL_STATE(2077)] = 101377, + [SMALL_STATE(2078)] = 101388, + [SMALL_STATE(2079)] = 101399, + [SMALL_STATE(2080)] = 101410, + [SMALL_STATE(2081)] = 101421, + [SMALL_STATE(2082)] = 101432, + [SMALL_STATE(2083)] = 101443, + [SMALL_STATE(2084)] = 101454, + [SMALL_STATE(2085)] = 101465, + [SMALL_STATE(2086)] = 101476, + [SMALL_STATE(2087)] = 101487, + [SMALL_STATE(2088)] = 101498, + [SMALL_STATE(2089)] = 101509, + [SMALL_STATE(2090)] = 101520, + [SMALL_STATE(2091)] = 101531, + [SMALL_STATE(2092)] = 101542, + [SMALL_STATE(2093)] = 101553, + [SMALL_STATE(2094)] = 101564, + [SMALL_STATE(2095)] = 101575, + [SMALL_STATE(2096)] = 101586, + [SMALL_STATE(2097)] = 101597, + [SMALL_STATE(2098)] = 101608, + [SMALL_STATE(2099)] = 101619, + [SMALL_STATE(2100)] = 101630, + [SMALL_STATE(2101)] = 101641, + [SMALL_STATE(2102)] = 101652, + [SMALL_STATE(2103)] = 101663, + [SMALL_STATE(2104)] = 101674, + [SMALL_STATE(2105)] = 101685, + [SMALL_STATE(2106)] = 101696, + [SMALL_STATE(2107)] = 101707, + [SMALL_STATE(2108)] = 101718, + [SMALL_STATE(2109)] = 101729, + [SMALL_STATE(2110)] = 101740, + [SMALL_STATE(2111)] = 101751, + [SMALL_STATE(2112)] = 101762, + [SMALL_STATE(2113)] = 101773, + [SMALL_STATE(2114)] = 101784, + [SMALL_STATE(2115)] = 101795, + [SMALL_STATE(2116)] = 101806, + [SMALL_STATE(2117)] = 101817, + [SMALL_STATE(2118)] = 101828, + [SMALL_STATE(2119)] = 101839, + [SMALL_STATE(2120)] = 101850, + [SMALL_STATE(2121)] = 101861, + [SMALL_STATE(2122)] = 101872, + [SMALL_STATE(2123)] = 101883, + [SMALL_STATE(2124)] = 101894, + [SMALL_STATE(2125)] = 101905, + [SMALL_STATE(2126)] = 101916, + [SMALL_STATE(2127)] = 101927, + [SMALL_STATE(2128)] = 101938, + [SMALL_STATE(2129)] = 101949, + [SMALL_STATE(2130)] = 101960, + [SMALL_STATE(2131)] = 101971, + [SMALL_STATE(2132)] = 101982, + [SMALL_STATE(2133)] = 101993, + [SMALL_STATE(2134)] = 102004, + [SMALL_STATE(2135)] = 102015, + [SMALL_STATE(2136)] = 102026, + [SMALL_STATE(2137)] = 102037, + [SMALL_STATE(2138)] = 102048, + [SMALL_STATE(2139)] = 102059, + [SMALL_STATE(2140)] = 102070, + [SMALL_STATE(2141)] = 102081, + [SMALL_STATE(2142)] = 102092, + [SMALL_STATE(2143)] = 102103, + [SMALL_STATE(2144)] = 102114, + [SMALL_STATE(2145)] = 102125, + [SMALL_STATE(2146)] = 102136, + [SMALL_STATE(2147)] = 102147, + [SMALL_STATE(2148)] = 102158, + [SMALL_STATE(2149)] = 102169, + [SMALL_STATE(2150)] = 102180, + [SMALL_STATE(2151)] = 102191, + [SMALL_STATE(2152)] = 102200, + [SMALL_STATE(2153)] = 102211, + [SMALL_STATE(2154)] = 102222, + [SMALL_STATE(2155)] = 102233, + [SMALL_STATE(2156)] = 102244, + [SMALL_STATE(2157)] = 102255, + [SMALL_STATE(2158)] = 102266, + [SMALL_STATE(2159)] = 102277, + [SMALL_STATE(2160)] = 102288, + [SMALL_STATE(2161)] = 102299, + [SMALL_STATE(2162)] = 102308, + [SMALL_STATE(2163)] = 102319, + [SMALL_STATE(2164)] = 102330, + [SMALL_STATE(2165)] = 102341, + [SMALL_STATE(2166)] = 102352, + [SMALL_STATE(2167)] = 102363, + [SMALL_STATE(2168)] = 102374, + [SMALL_STATE(2169)] = 102385, + [SMALL_STATE(2170)] = 102396, + [SMALL_STATE(2171)] = 102407, + [SMALL_STATE(2172)] = 102418, + [SMALL_STATE(2173)] = 102429, + [SMALL_STATE(2174)] = 102440, + [SMALL_STATE(2175)] = 102449, + [SMALL_STATE(2176)] = 102460, + [SMALL_STATE(2177)] = 102471, + [SMALL_STATE(2178)] = 102482, + [SMALL_STATE(2179)] = 102493, + [SMALL_STATE(2180)] = 102502, + [SMALL_STATE(2181)] = 102513, + [SMALL_STATE(2182)] = 102524, + [SMALL_STATE(2183)] = 102535, + [SMALL_STATE(2184)] = 102546, + [SMALL_STATE(2185)] = 102557, + [SMALL_STATE(2186)] = 102568, + [SMALL_STATE(2187)] = 102579, + [SMALL_STATE(2188)] = 102590, + [SMALL_STATE(2189)] = 102601, + [SMALL_STATE(2190)] = 102612, + [SMALL_STATE(2191)] = 102621, + [SMALL_STATE(2192)] = 102632, + [SMALL_STATE(2193)] = 102643, + [SMALL_STATE(2194)] = 102654, + [SMALL_STATE(2195)] = 102663, + [SMALL_STATE(2196)] = 102674, + [SMALL_STATE(2197)] = 102685, + [SMALL_STATE(2198)] = 102696, + [SMALL_STATE(2199)] = 102707, + [SMALL_STATE(2200)] = 102718, + [SMALL_STATE(2201)] = 102729, + [SMALL_STATE(2202)] = 102738, + [SMALL_STATE(2203)] = 102749, + [SMALL_STATE(2204)] = 102758, + [SMALL_STATE(2205)] = 102769, + [SMALL_STATE(2206)] = 102780, + [SMALL_STATE(2207)] = 102791, + [SMALL_STATE(2208)] = 102800, + [SMALL_STATE(2209)] = 102811, + [SMALL_STATE(2210)] = 102820, + [SMALL_STATE(2211)] = 102831, + [SMALL_STATE(2212)] = 102842, + [SMALL_STATE(2213)] = 102853, + [SMALL_STATE(2214)] = 102862, + [SMALL_STATE(2215)] = 102873, + [SMALL_STATE(2216)] = 102882, + [SMALL_STATE(2217)] = 102893, + [SMALL_STATE(2218)] = 102904, + [SMALL_STATE(2219)] = 102915, + [SMALL_STATE(2220)] = 102924, + [SMALL_STATE(2221)] = 102935, + [SMALL_STATE(2222)] = 102944, + [SMALL_STATE(2223)] = 102955, + [SMALL_STATE(2224)] = 102966, + [SMALL_STATE(2225)] = 102977, + [SMALL_STATE(2226)] = 102986, + [SMALL_STATE(2227)] = 102995, + [SMALL_STATE(2228)] = 103006, + [SMALL_STATE(2229)] = 103017, + [SMALL_STATE(2230)] = 103028, + [SMALL_STATE(2231)] = 103037, + [SMALL_STATE(2232)] = 103046, + [SMALL_STATE(2233)] = 103057, + [SMALL_STATE(2234)] = 103068, + [SMALL_STATE(2235)] = 103079, + [SMALL_STATE(2236)] = 103088, + [SMALL_STATE(2237)] = 103097, + [SMALL_STATE(2238)] = 103108, + [SMALL_STATE(2239)] = 103119, + [SMALL_STATE(2240)] = 103130, + [SMALL_STATE(2241)] = 103139, + [SMALL_STATE(2242)] = 103148, + [SMALL_STATE(2243)] = 103159, + [SMALL_STATE(2244)] = 103170, + [SMALL_STATE(2245)] = 103181, + [SMALL_STATE(2246)] = 103190, + [SMALL_STATE(2247)] = 103199, + [SMALL_STATE(2248)] = 103210, + [SMALL_STATE(2249)] = 103221, + [SMALL_STATE(2250)] = 103232, + [SMALL_STATE(2251)] = 103241, + [SMALL_STATE(2252)] = 103250, + [SMALL_STATE(2253)] = 103261, + [SMALL_STATE(2254)] = 103272, + [SMALL_STATE(2255)] = 103283, + [SMALL_STATE(2256)] = 103292, + [SMALL_STATE(2257)] = 103301, + [SMALL_STATE(2258)] = 103312, + [SMALL_STATE(2259)] = 103323, + [SMALL_STATE(2260)] = 103334, + [SMALL_STATE(2261)] = 103343, + [SMALL_STATE(2262)] = 103352, + [SMALL_STATE(2263)] = 103363, + [SMALL_STATE(2264)] = 103374, + [SMALL_STATE(2265)] = 103385, + [SMALL_STATE(2266)] = 103394, + [SMALL_STATE(2267)] = 103403, + [SMALL_STATE(2268)] = 103414, + [SMALL_STATE(2269)] = 103425, + [SMALL_STATE(2270)] = 103436, + [SMALL_STATE(2271)] = 103445, + [SMALL_STATE(2272)] = 103454, + [SMALL_STATE(2273)] = 103465, + [SMALL_STATE(2274)] = 103476, + [SMALL_STATE(2275)] = 103487, + [SMALL_STATE(2276)] = 103496, + [SMALL_STATE(2277)] = 103505, + [SMALL_STATE(2278)] = 103516, + [SMALL_STATE(2279)] = 103527, + [SMALL_STATE(2280)] = 103538, + [SMALL_STATE(2281)] = 103547, + [SMALL_STATE(2282)] = 103556, + [SMALL_STATE(2283)] = 103567, + [SMALL_STATE(2284)] = 103578, + [SMALL_STATE(2285)] = 103589, + [SMALL_STATE(2286)] = 103598, + [SMALL_STATE(2287)] = 103607, + [SMALL_STATE(2288)] = 103618, + [SMALL_STATE(2289)] = 103627, + [SMALL_STATE(2290)] = 103638, + [SMALL_STATE(2291)] = 103647, + [SMALL_STATE(2292)] = 103656, + [SMALL_STATE(2293)] = 103667, + [SMALL_STATE(2294)] = 103678, + [SMALL_STATE(2295)] = 103689, + [SMALL_STATE(2296)] = 103698, + [SMALL_STATE(2297)] = 103707, + [SMALL_STATE(2298)] = 103718, + [SMALL_STATE(2299)] = 103729, + [SMALL_STATE(2300)] = 103740, + [SMALL_STATE(2301)] = 103749, + [SMALL_STATE(2302)] = 103758, + [SMALL_STATE(2303)] = 103769, + [SMALL_STATE(2304)] = 103780, + [SMALL_STATE(2305)] = 103791, + [SMALL_STATE(2306)] = 103800, + [SMALL_STATE(2307)] = 103809, + [SMALL_STATE(2308)] = 103820, + [SMALL_STATE(2309)] = 103829, + [SMALL_STATE(2310)] = 103838, + [SMALL_STATE(2311)] = 103849, + [SMALL_STATE(2312)] = 103858, + [SMALL_STATE(2313)] = 103867, + [SMALL_STATE(2314)] = 103878, + [SMALL_STATE(2315)] = 103887, + [SMALL_STATE(2316)] = 103896, + [SMALL_STATE(2317)] = 103907, + [SMALL_STATE(2318)] = 103916, + [SMALL_STATE(2319)] = 103925, + [SMALL_STATE(2320)] = 103936, + [SMALL_STATE(2321)] = 103945, + [SMALL_STATE(2322)] = 103954, + [SMALL_STATE(2323)] = 103965, + [SMALL_STATE(2324)] = 103974, + [SMALL_STATE(2325)] = 103983, + [SMALL_STATE(2326)] = 103994, + [SMALL_STATE(2327)] = 104003, + [SMALL_STATE(2328)] = 104012, + [SMALL_STATE(2329)] = 104023, + [SMALL_STATE(2330)] = 104032, + [SMALL_STATE(2331)] = 104041, + [SMALL_STATE(2332)] = 104052, + [SMALL_STATE(2333)] = 104061, + [SMALL_STATE(2334)] = 104070, + [SMALL_STATE(2335)] = 104081, + [SMALL_STATE(2336)] = 104090, + [SMALL_STATE(2337)] = 104099, + [SMALL_STATE(2338)] = 104110, + [SMALL_STATE(2339)] = 104119, + [SMALL_STATE(2340)] = 104128, + [SMALL_STATE(2341)] = 104139, + [SMALL_STATE(2342)] = 104148, + [SMALL_STATE(2343)] = 104157, + [SMALL_STATE(2344)] = 104168, + [SMALL_STATE(2345)] = 104177, + [SMALL_STATE(2346)] = 104186, + [SMALL_STATE(2347)] = 104197, + [SMALL_STATE(2348)] = 104206, + [SMALL_STATE(2349)] = 104215, + [SMALL_STATE(2350)] = 104226, + [SMALL_STATE(2351)] = 104235, + [SMALL_STATE(2352)] = 104244, + [SMALL_STATE(2353)] = 104255, + [SMALL_STATE(2354)] = 104264, + [SMALL_STATE(2355)] = 104273, + [SMALL_STATE(2356)] = 104284, + [SMALL_STATE(2357)] = 104293, + [SMALL_STATE(2358)] = 104302, + [SMALL_STATE(2359)] = 104313, + [SMALL_STATE(2360)] = 104322, + [SMALL_STATE(2361)] = 104331, + [SMALL_STATE(2362)] = 104342, + [SMALL_STATE(2363)] = 104351, + [SMALL_STATE(2364)] = 104360, + [SMALL_STATE(2365)] = 104371, + [SMALL_STATE(2366)] = 104380, + [SMALL_STATE(2367)] = 104389, + [SMALL_STATE(2368)] = 104400, + [SMALL_STATE(2369)] = 104409, + [SMALL_STATE(2370)] = 104418, + [SMALL_STATE(2371)] = 104429, + [SMALL_STATE(2372)] = 104438, + [SMALL_STATE(2373)] = 104447, + [SMALL_STATE(2374)] = 104458, + [SMALL_STATE(2375)] = 104467, + [SMALL_STATE(2376)] = 104476, + [SMALL_STATE(2377)] = 104487, + [SMALL_STATE(2378)] = 104496, + [SMALL_STATE(2379)] = 104505, + [SMALL_STATE(2380)] = 104516, + [SMALL_STATE(2381)] = 104527, + [SMALL_STATE(2382)] = 104538, + [SMALL_STATE(2383)] = 104549, + [SMALL_STATE(2384)] = 104560, + [SMALL_STATE(2385)] = 104571, + [SMALL_STATE(2386)] = 104582, + [SMALL_STATE(2387)] = 104593, + [SMALL_STATE(2388)] = 104604, + [SMALL_STATE(2389)] = 104615, + [SMALL_STATE(2390)] = 104626, + [SMALL_STATE(2391)] = 104637, + [SMALL_STATE(2392)] = 104648, + [SMALL_STATE(2393)] = 104659, + [SMALL_STATE(2394)] = 104670, + [SMALL_STATE(2395)] = 104681, + [SMALL_STATE(2396)] = 104692, + [SMALL_STATE(2397)] = 104703, + [SMALL_STATE(2398)] = 104714, + [SMALL_STATE(2399)] = 104725, + [SMALL_STATE(2400)] = 104736, + [SMALL_STATE(2401)] = 104747, + [SMALL_STATE(2402)] = 104758, + [SMALL_STATE(2403)] = 104769, + [SMALL_STATE(2404)] = 104780, + [SMALL_STATE(2405)] = 104791, + [SMALL_STATE(2406)] = 104802, + [SMALL_STATE(2407)] = 104813, + [SMALL_STATE(2408)] = 104824, + [SMALL_STATE(2409)] = 104835, + [SMALL_STATE(2410)] = 104846, + [SMALL_STATE(2411)] = 104857, + [SMALL_STATE(2412)] = 104868, + [SMALL_STATE(2413)] = 104879, + [SMALL_STATE(2414)] = 104890, + [SMALL_STATE(2415)] = 104901, + [SMALL_STATE(2416)] = 104912, + [SMALL_STATE(2417)] = 104923, + [SMALL_STATE(2418)] = 104934, + [SMALL_STATE(2419)] = 104945, + [SMALL_STATE(2420)] = 104956, + [SMALL_STATE(2421)] = 104967, + [SMALL_STATE(2422)] = 104978, + [SMALL_STATE(2423)] = 104989, + [SMALL_STATE(2424)] = 105000, + [SMALL_STATE(2425)] = 105011, + [SMALL_STATE(2426)] = 105022, + [SMALL_STATE(2427)] = 105033, + [SMALL_STATE(2428)] = 105044, + [SMALL_STATE(2429)] = 105055, + [SMALL_STATE(2430)] = 105066, + [SMALL_STATE(2431)] = 105077, + [SMALL_STATE(2432)] = 105088, + [SMALL_STATE(2433)] = 105099, + [SMALL_STATE(2434)] = 105110, + [SMALL_STATE(2435)] = 105121, + [SMALL_STATE(2436)] = 105132, + [SMALL_STATE(2437)] = 105143, + [SMALL_STATE(2438)] = 105154, + [SMALL_STATE(2439)] = 105165, + [SMALL_STATE(2440)] = 105176, + [SMALL_STATE(2441)] = 105187, + [SMALL_STATE(2442)] = 105198, + [SMALL_STATE(2443)] = 105209, + [SMALL_STATE(2444)] = 105220, + [SMALL_STATE(2445)] = 105231, + [SMALL_STATE(2446)] = 105242, + [SMALL_STATE(2447)] = 105253, + [SMALL_STATE(2448)] = 105264, + [SMALL_STATE(2449)] = 105273, + [SMALL_STATE(2450)] = 105284, + [SMALL_STATE(2451)] = 105295, + [SMALL_STATE(2452)] = 105306, + [SMALL_STATE(2453)] = 105317, + [SMALL_STATE(2454)] = 105328, + [SMALL_STATE(2455)] = 105339, + [SMALL_STATE(2456)] = 105350, + [SMALL_STATE(2457)] = 105361, + [SMALL_STATE(2458)] = 105372, + [SMALL_STATE(2459)] = 105383, + [SMALL_STATE(2460)] = 105394, + [SMALL_STATE(2461)] = 105405, + [SMALL_STATE(2462)] = 105416, + [SMALL_STATE(2463)] = 105427, + [SMALL_STATE(2464)] = 105438, + [SMALL_STATE(2465)] = 105449, + [SMALL_STATE(2466)] = 105460, + [SMALL_STATE(2467)] = 105471, + [SMALL_STATE(2468)] = 105482, + [SMALL_STATE(2469)] = 105493, + [SMALL_STATE(2470)] = 105504, + [SMALL_STATE(2471)] = 105515, + [SMALL_STATE(2472)] = 105526, + [SMALL_STATE(2473)] = 105537, + [SMALL_STATE(2474)] = 105548, + [SMALL_STATE(2475)] = 105559, + [SMALL_STATE(2476)] = 105570, + [SMALL_STATE(2477)] = 105581, + [SMALL_STATE(2478)] = 105592, + [SMALL_STATE(2479)] = 105603, + [SMALL_STATE(2480)] = 105614, + [SMALL_STATE(2481)] = 105625, + [SMALL_STATE(2482)] = 105636, + [SMALL_STATE(2483)] = 105647, + [SMALL_STATE(2484)] = 105658, + [SMALL_STATE(2485)] = 105669, + [SMALL_STATE(2486)] = 105680, + [SMALL_STATE(2487)] = 105691, + [SMALL_STATE(2488)] = 105702, + [SMALL_STATE(2489)] = 105713, + [SMALL_STATE(2490)] = 105724, + [SMALL_STATE(2491)] = 105735, + [SMALL_STATE(2492)] = 105746, + [SMALL_STATE(2493)] = 105757, + [SMALL_STATE(2494)] = 105768, + [SMALL_STATE(2495)] = 105779, + [SMALL_STATE(2496)] = 105790, + [SMALL_STATE(2497)] = 105801, + [SMALL_STATE(2498)] = 105812, + [SMALL_STATE(2499)] = 105823, + [SMALL_STATE(2500)] = 105834, + [SMALL_STATE(2501)] = 105845, + [SMALL_STATE(2502)] = 105856, + [SMALL_STATE(2503)] = 105867, + [SMALL_STATE(2504)] = 105878, + [SMALL_STATE(2505)] = 105889, + [SMALL_STATE(2506)] = 105900, + [SMALL_STATE(2507)] = 105911, + [SMALL_STATE(2508)] = 105922, + [SMALL_STATE(2509)] = 105933, + [SMALL_STATE(2510)] = 105944, + [SMALL_STATE(2511)] = 105955, + [SMALL_STATE(2512)] = 105966, + [SMALL_STATE(2513)] = 105977, + [SMALL_STATE(2514)] = 105988, + [SMALL_STATE(2515)] = 105999, + [SMALL_STATE(2516)] = 106010, + [SMALL_STATE(2517)] = 106021, + [SMALL_STATE(2518)] = 106032, + [SMALL_STATE(2519)] = 106043, + [SMALL_STATE(2520)] = 106054, + [SMALL_STATE(2521)] = 106065, + [SMALL_STATE(2522)] = 106076, + [SMALL_STATE(2523)] = 106087, +}; + +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_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 1, .production_id = 2), + [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 1, .production_id = 2), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 2, .production_id = 2), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 2, .production_id = 2), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(157), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(119), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 3), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 3), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, .production_id = 8), + [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 2, .production_id = 8), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 1), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, .production_id = 1), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, .production_id = 1), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(25), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(485), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(480), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(478), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(478), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2344), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2345), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression_token, 1), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression_token, 1), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(54), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(505), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(508), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(520), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(520), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2290), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2291), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(11), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(524), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(507), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(504), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(504), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2365), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2366), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(26), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(533), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(513), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(511), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(511), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2341), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2342), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(29), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(516), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(546), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(539), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(539), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2335), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2336), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(56), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(586), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(647), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(634), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(634), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2265), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2266), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(47), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(646), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(569), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(565), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(565), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2275), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2276), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(24), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(607), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(574), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(585), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(585), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2359), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2360), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(34), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(580), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(581), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(591), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(591), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2323), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2324), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(19), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(649), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(615), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(592), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(592), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2356), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2357), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(13), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(578), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(605), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(610), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(610), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2362), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2363), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(3), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(619), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(652), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(650), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(650), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2329), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2330), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(16), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(673), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(779), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(736), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(736), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2377), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2378), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(22), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(771), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(782), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(772), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(772), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2350), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2351), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(55), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(781), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(756), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(752), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(752), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2280), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2281), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(28), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(753), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(733), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(729), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(729), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2285), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2286), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(32), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(775), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(712), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(701), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(701), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2353), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2354), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(35), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(760), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(728), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(722), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(722), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2320), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2321), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(51), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(660), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(684), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(687), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(687), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2250), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2251), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(41), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(662), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(675), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(679), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(679), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2308), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2309), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(7), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(885), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(865), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(855), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(855), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2374), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2375), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(57), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(857), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(874), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(877), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(877), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2300), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2301), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(8), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(879), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(856), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(848), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(848), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2332), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2333), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(44), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(832), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(840), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(833), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(833), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2230), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2226), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(14), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(804), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(816), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(805), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(805), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2201), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2194), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(21), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(786), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(800), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(788), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(788), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2190), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2179), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(53), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(948), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(931), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(929), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(929), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2260), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2261), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(33), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(898), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(911), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(899), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(899), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2151), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2288), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(52), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(941), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(951), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(947), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(947), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2255), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2256), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 1), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_control_expression, 1), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(49), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(971), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(983), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(959), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(959), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2245), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2246), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, .production_id = 16), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, .production_id = 16), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_statement, 3, .production_id = 15), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_statement, 3, .production_id = 15), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_subsuperexpression, 3), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 17), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 17), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 1), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 1), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 5, .production_id = 27), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 5, .production_id = 27), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 6, .production_id = 29), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 6, .production_id = 29), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 4, .production_id = 25), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 4, .production_id = 25), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 3, .production_id = 20), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 3, .production_id = 20), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression, 1), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression, 1), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1712), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(467), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1763), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(214), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(388), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(221), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(220), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1711), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(257), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(207), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(302), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(426), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_superexpression, 2), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_superexpression, 2), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_subsuperexpression, 3), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 3), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 1), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_subsuperexpression, 1), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_subsuperexpression, 1), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_superexpression, 3), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_superexpression, 3), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 4), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 4), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_superexpression, 1), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_superexpression, 1), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_argument, 1), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_argument, 1), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 6, .production_id = 32), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 6, .production_id = 32), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 30), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 30), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 24), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 4, .production_id = 24), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1726), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1788), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2045), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2496), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1763), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1974), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1953), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1764), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1754), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1718), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 4), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 4), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_loop, 4, .production_id = 23), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_loop, 4, .production_id = 23), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1778), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1126), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1096), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(535), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control, 1), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_control, 1), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superexpression, 1), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superexpression, 1), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 6), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 6), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 28), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 6, .production_id = 28), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_loop, 2, .production_id = 15), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_loop, 2, .production_id = 15), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 7), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 7), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1154), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1125), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1122), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_definition, 4, .production_id = 12), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_definition, 4, .production_id = 12), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 4, .production_id = 10), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 4, .production_id = 10), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(23), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1311), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1326), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1335), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1335), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2347), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2348), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 2, .production_id = 6), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_expression, 2, .production_id = 6), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sources, 1), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1381), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1370), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1364), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1364), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2338), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2339), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 1, .production_id = 7), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_typeclass, 1, .production_id = 7), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(50), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1342), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1341), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1379), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1379), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2295), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2296), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 1, .production_id = 5), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_expression, 1, .production_id = 5), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 2, .production_id = 7), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_typeclass, 2, .production_id = 7), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1706), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1722), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2024), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2471), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1763), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1974), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1941), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1764), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1754), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(1724), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(31), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1382), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1352), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1347), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1347), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2371), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2372), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(17), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1419), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1389), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1385), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1385), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2368), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2369), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(58), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1411), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1418), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1421), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1421), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2270), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2271), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(20), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1410), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1405), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1403), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1403), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2326), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2327), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(36), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1513), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1515), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1511), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1511), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2317), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2318), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(46), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1465), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1471), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1473), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1473), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2305), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2306), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(39), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1477), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1483), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1505), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1505), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2311), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2312), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(45), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1439), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1446), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1440), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1440), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2235), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2231), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(38), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1486), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1519), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1512), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1512), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2314), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2315), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(48), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1448), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1456), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1449), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1449), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2240), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2236), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(40), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1671), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1644), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1554), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1554), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2219), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2215), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(43), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1686), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1669), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1646), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1646), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2213), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2209), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(6), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1618), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1641), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1619), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1619), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2207), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2203), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(42), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1692), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1595), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1691), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1691), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2225), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2221), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(2409), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(1093), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(27), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1555), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1603), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1559), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1559), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2174), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2161), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier_definition, 1), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_typeclass, 1, .production_id = 5), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defined_typeclass, 1, .production_id = 5), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 4), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 4), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition_parameter, 1, .production_id = 1), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition_parameter, 1, .production_id = 1), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_typeclass, 1, .production_id = 7), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_typeclass, 1, .production_id = 7), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_typeclass, 2, .production_id = 5), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defined_typeclass, 2, .production_id = 5), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 1), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 1), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition_parameter, 5, .production_id = 8), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition_parameter, 5, .production_id = 8), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 3), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 3), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2435), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 3, .production_id = 8), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_typeclass, 4, .production_id = 18), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_typeclass, 4, .production_id = 18), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 2, .production_id = 8), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 2), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 2), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2456), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_symbol, 1), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_symbol, 1), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_defined_name_repeat1, 2), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_defined_name_repeat1, 2), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(2472), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(1196), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 2), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2432), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 3, .production_id = 8), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2426), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_typeclass, 3, .production_id = 5), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defined_typeclass, 3, .production_id = 5), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_typeclass, 4, .production_id = 5), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defined_typeclass, 4, .production_id = 5), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 2, .production_id = 8), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2450), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(396), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 2, .production_id = 22), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 5), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2447), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(2476), + [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(1219), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(366), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 4), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 4), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 3), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 3), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 4), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4, .production_id = 22), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2423), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier_definition, 2), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier_definition, 2), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2453), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1720), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier_definition, 1), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 1), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 1), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 5), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declartation_type, 1), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declartation_type, 1), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1027), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 1), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 1), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2468), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition, 4, .production_id = 6), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition, 4, .production_id = 6), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 3), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 3), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2441), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition_argument, 5, .production_id = 26), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition_argument, 5, .production_id = 26), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 2), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 2), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), SHIFT_REPEAT(1770), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1033), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition_argument, 1, .production_id = 3), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition_argument, 1, .production_id = 3), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2444), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_expression_repeat1, 2), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 31), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_repeat1, 2), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_typeclass_definition_repeat1, 2), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_repeat1, 2), SHIFT_REPEAT(1968), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2417), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_expression, 1), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 2), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(311), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 3), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 3), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declartation_type, 3), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declartation_type, 3), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(292), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 2, .production_id = 22), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 3), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 3), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 1), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 4), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4, .production_id = 22), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 31), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition, 2, .production_id = 6), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition, 2, .production_id = 6), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(378), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 1), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(238), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_expression, 1), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2465), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1062), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1065), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2072), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 6, .production_id = 19), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 6, .production_id = 19), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source_statement, 1), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 1), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1056), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1059), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 5, .production_id = 14), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 5, .production_id = 14), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 4), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, .production_id = 4), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_statement, 2), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_statement, 2), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2420), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_type, 1), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_any_type, 1), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 12), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 12), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type_definition, 4, .production_id = 12), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type_definition, 4, .production_id = 12), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 10), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 10), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_usage_definition, 4, .production_id = 11), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_usage_definition, 4, .production_id = 11), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition, 5, .production_id = 14), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_partition, 5, .production_id = 14), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(535), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2), SHIFT_REPEAT(1242), + [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2), SHIFT_REPEAT(863), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2), SHIFT_REPEAT(535), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(90), + [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(2400), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(2475), + [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(2475), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(2448), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), SHIFT_REPEAT(2241), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat1, 2), SHIFT_REPEAT(1778), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat1, 2), + [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat1, 2), SHIFT_REPEAT(2427), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_superexpression_repeat1, 2), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotations, 1), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotations, 2), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_parameter_repeat1, 2), SHIFT_REPEAT(1700), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_parameter_repeat1, 2), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_parameter_repeat1, 2), SHIFT_REPEAT(863), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_parameter_repeat1, 2), SHIFT_REPEAT(2427), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_argument_repeat1, 2), SHIFT_REPEAT(1779), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_argument_repeat1, 2), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_argument_repeat1, 2), SHIFT_REPEAT(535), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(2322), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_defined_name_repeat1, 2), SHIFT_REPEAT(1880), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_type, 2, .production_id = 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_type, 1, .production_id = 1), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_name, 2, .production_id = 3), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2438), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_type, 3, .production_id = 1), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_name, 1, .production_id = 3), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_superexpression_repeat2, 2), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_type, 4, .production_id = 1), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_parameter_repeat1, 3), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2462), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 1, .production_id = 2), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_name, 4, .production_id = 3), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2429), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_argument_repeat1, 3), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 4, .production_id = 13), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_name, 3, .production_id = 3), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 3, .production_id = 9), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_or_operator, 3), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(400), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat2, 2), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(346), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 1, .production_id = 3), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2459), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1721), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2406), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1081), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), SHIFT_REPEAT(1774), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2022), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_name, 1), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2411), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2414), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_name, 1), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2399), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_identifier_definition_repeat1, 2), SHIFT_REPEAT(2004), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_identifier_definition_repeat1, 2), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2037), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2389), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2026), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2025), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1084), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), SHIFT_REPEAT(2065), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_annotated_name, 1, .production_id = 3), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_name, 1), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defined_annotated_name, 3, .production_id = 3), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition_name, 1), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4891] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_LANG(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 diff --git a/src/print_visitor.cpp b/src/print_visitor.cpp index 1904a49..0ea7685 100644 --- a/src/print_visitor.cpp +++ b/src/print_visitor.cpp @@ -9,7 +9,7 @@ void PrintVisitor::Visit(Node* node) { // Sources ----------------- void PrintVisitor::Visit(SourceFile* node) { - out_ << "\n\n"; + out_ << "(SourceFile\n\n"; for (auto& statement : node->statements) { if (std::holds_alternative(statement)) { Visit(&std::get(statement)); @@ -19,21 +19,21 @@ void PrintVisitor::Visit(SourceFile* node) { // error } } - out_ << "\n"; + out_ << "\nSourceFile)\n"; } void PrintVisitor::Visit(Sources* node) { - out_ << "\n\n"; + out_ << "(Sources\n\n"; for (auto& statement : node->statements) { Visitor::Visit(statement); } - out_ << "\n"; + out_ << "\n)\n"; } // Namespaces, partittions ----------------- void PrintVisitor::Visit(Partition* node) { - out_ << " "; + out_ << "(Partition "; switch (node->type) { case Partition::Test: out_ << "TEST"; @@ -56,11 +56,11 @@ void PrintVisitor::Visit(Partition* node) { } out_ << " {\n"; Visit(node->scope.get()); - out_ << "} \n"; + out_ << "} )\n"; } void PrintVisitor::Visit(Namespace* node) { - out_ << " "; + out_ << "(Namespace "; if (std::holds_alternative>(node->name)) { if (node->is_const) { out_ << "const "; @@ -75,13 +75,13 @@ void PrintVisitor::Visit(Namespace* node) { } out_ << "{\n"; Visit(node->scope.get()); - out_ << "} \n"; + out_ << "} )\n"; } // Definitions ----------------- void PrintVisitor::Visit(ImportStatement* node) { - out_ << " \"" << node->module_name << "\" "; + out_ << "(Import \"" << node->module_name << "\" "; if (node->symbols.size() > 0) { out_ << '\n'; } @@ -89,35 +89,35 @@ void PrintVisitor::Visit(ImportStatement* node) { Visitor::Visit(symbol); out_ << '\n'; } - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(UsageDefinition* node) { - out_ << " "; + out_ << "(Usage "; Visit(&node->name); out_ << " = "; Visit(node->import_statement.get()); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(AliasDefinition* node) { - out_ << " "; + out_ << "(Alias "; Visit(node->type.get()); out_ << " = "; Visit(node->value.get()); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(VariableDefinition* node) { - out_ << " " << (node->is_const ? "const" : "var") << ' '; + out_ << "(Variable " << (node->is_const ? "const" : "var") << ' '; Visit(&node->name); out_ << " = "; Visitor::Visit(node->value); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(FunctionDeclaration* node) { - out_ << " "; + out_ << "(FunctionDeclaration "; Visit(&node->name); out_ << "\n"; for (auto& parameter : node->parameters) { @@ -127,35 +127,35 @@ void PrintVisitor::Visit(FunctionDeclaration* node) { for (auto& argument_type : node->argument_types) { Visitor::Visit(argument_type); } - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(FunctionDefinition* node) { - out_ << " "; + out_ << "(Function "; Visit(node->name.get()); out_ << " = "; Visitor::Visit(node->value); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(AliasTypeDefinition* node) { - out_ << " "; + out_ << "(AliasType "; Visit(node->type.get()); out_ << " = "; Visit(node->value.get()); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(TypeDefinition* node) { - out_ << " "; + out_ << "(Type "; Visit(node->type.get()); out_ << " = "; Visitor::Visit(node->value); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(TypeclassDefinition* node) { - out_ << " "; + out_ << "(Typeclass "; Visit(node->typeclass.get()); if (node->requirements.size() > 0) { out_ << " : \n"; @@ -164,13 +164,13 @@ void PrintVisitor::Visit(TypeclassDefinition* node) { out_ << "& "; Visit(requirement.get()); } - out_ << "\n"; + out_ << ")\n"; } // Definition parts void PrintVisitor::Visit(DefinedName* node) { - out_ << " "; + out_ << "(DefinedName "; Visit(&node->name); if (node->parameters.size() > 0) { out_ << "\n"; @@ -184,11 +184,11 @@ void PrintVisitor::Visit(DefinedName* node) { for (auto& argument : node->arguments) { Visit(argument.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(DefinedAnnotatedName* node) { - out_ << " "; + out_ << "(DefinedAnnotatedName "; Visit(&node->name); out_ << " : "; if (std::holds_alternative>(node->type)) { @@ -198,11 +198,11 @@ void PrintVisitor::Visit(DefinedAnnotatedName* node) { } else { // no annotation } - out_ << " "; + out_ << " )"; } void PrintVisitor::Visit(DefinedType* node) { - out_ << " "; + out_ << "(DefinedType "; Visit(node->type.get()); if (node->parameters.size() > 0) { out_ << "\n"; @@ -216,11 +216,11 @@ void PrintVisitor::Visit(DefinedType* node) { for (auto& argument : node->arguments) { Visit(argument.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(DefinedTypeclass* node) { - out_ << " "; + out_ << "(DefinedTypeclass "; Visit(node->typeclass.get()); if (node->parameters.size() > 0) { out_ << "\n"; @@ -234,33 +234,33 @@ void PrintVisitor::Visit(DefinedTypeclass* node) { for (auto& argument : node->arguments) { Visit(argument.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(DefinitionParameter* node) { - out_ << " " << (node->typeclasses.size() > 0 ? "(" : ""); + out_ << "(DefinitionParameter " << (node->typeclasses.size() > 0 ? "(" : ""); Visit(&node->type); out_ << ' '; for (auto& typeclass : node->typeclasses) { Visit(typeclass.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(DefinitionArgument* node) { - out_ << " " << (node->types.size() > 0 ? "(" : ""); + out_ << "(DefinitionArgument " << (node->types.size() > 0 ? "(" : ""); Visit(&node->name); out_ << ' '; for (auto& type : node->types) { Visit(type.get()); } - out_ << "\n"; + out_ << ")"; } // Flow control ----------------- void PrintVisitor::Visit(MatchCase* node) { - out_ << " | "; + out_ << "(MatchCase | "; Visitor::Visit(node->value); if (node->condition.has_value()) { out_ << " ? "; @@ -270,21 +270,21 @@ void PrintVisitor::Visit(MatchCase* node) { out_ << " -> "; Visitor::Visit(node->statement.value()); } - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(Match* node) { - out_ << " "; + out_ << "(Match "; Visitor::Visit(node->value); out_ << " with\n"; for (auto& match_case : node->matches) { Visit(&match_case); } - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(Condition* node) { - out_ << " "; + out_ << "(If "; Visitor::Visit(node->conditions[0]); out_ << " then\n"; Visitor::Visit(node->statements[0]); @@ -301,63 +301,63 @@ void PrintVisitor::Visit(Condition* node) { Visitor::Visit(node->statements[node->conditions.size()]); out_ << '\n'; } - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(DoWhileLoop* node) { - out_ << "\n"; + out_ << "(DoWhile\n"; Visitor::Visit(node->statement); out_ << "\nwhile\n"; Visitor::Visit(node->condition); - out_ << "\n\n"; + out_ << "\n)\n"; } void PrintVisitor::Visit(WhileLoop* node) { - out_ << "\n"; + out_ << "(While\n"; Visitor::Visit(node->statement); out_ << "\ndo\n"; Visitor::Visit(node->condition); - out_ << "\n\n"; + out_ << "\n)\n"; } void PrintVisitor::Visit(ForLoop* node) { - out_ << "\n"; + out_ << "(For\n"; Visitor::Visit(node->variable); out_ << "\nin\n"; Visitor::Visit(node->interval); out_ << "\ndo\n"; Visitor::Visit(node->statement); - out_ << "\n"; + out_ << ")\n"; } void PrintVisitor::Visit(LoopLoop* node) { - out_ << "\n"; + out_ << "(Loop\n"; Visitor::Visit(node->statement); - out_ << "<\n/Loop>\n"; + out_ << "\nLoop)\n"; } // Statements, expressions, blocks, etc. ----------------- void PrintVisitor::Visit(Block* node) { - out_ << " {\n"; + out_ << "(Block {\n"; for (auto& statement : node->statements) { Visitor::Visit(statement); } - out_ << "} \n"; + out_ << "} )\n"; } void PrintVisitor::Visit(ScopedStatement* node) { - out_ << " ( "; + out_ << "(Scoped ( "; Visitor::Visit(node->statement); - out_ << " ) "; + out_ << " ) )\n"; } void PrintVisitor::Visit(LoopControlExpression& node) { // enum switch (node) { case LoopControlExpression::Break: - out_ << "\n"; + out_ << "(Break/>\n"; break; case LoopControlExpression::Continue: - out_ << "\n"; + out_ << "(Continue/>\n"; break; } } @@ -365,66 +365,66 @@ void PrintVisitor::Visit(LoopControlExpression& node) { // enum // Operators void PrintVisitor::Visit(BinaryOperatorExpression* node) { - out_ << " "; + out_ << "(BinaryOperator "; Visitor::Visit(node->left_expression); out_ << ' '; Visit(&node->operator_name); out_ << ' '; Visitor::Visit(node->right_expression); - out_ << " "; + out_ << " )"; } void PrintVisitor::Visit(UnaryOperatorExpression* node) { - out_ << " "; + out_ << "(UnaryOperator "; Visit(&node->operator_name); out_ << ' '; Visitor::Visit(node->expression); - out_ << " "; + out_ << " )"; } // Simple Expressions void PrintVisitor::Visit(FunctionCallExpression* node) { - out_ << " "; + out_ << "(FunctionCall "; Visit(node->name.get()); out_ << ' '; for (auto& argument : node->arguments) { Visitor::Visit(argument); out_ << ' '; } - out_ << ""; + out_ << ")\n"; } void PrintVisitor::Visit(TupleExpression* node) { - out_ << " "; + out_ << "(TupleExpression "; out_ << ' '; for (auto& expression : node->expressions) { out_ << "& "; Visitor::Visit(expression); } - out_ << " "; + out_ << " )\n"; } void PrintVisitor::Visit(VariantExpression* node) { - out_ << " "; + out_ << "(VariantExpression "; out_ << ' '; for (auto& expression : node->expressions) { out_ << "& "; Visitor::Visit(expression); } - out_ << " "; + out_ << " )\n"; } void PrintVisitor::Visit(ReturnExpression* node) { - out_ << " "; + out_ << "(Return "; Visitor::Visit(node->expression); - out_ << " "; + out_ << " )\n"; } // Lambda void PrintVisitor::Visit(LambdaFunction* node) { - out_ << " \\ "; + out_ << "(LambdaFunction \\ "; for (auto& parameter : node->parameters) { Visit(parameter.get()); } @@ -436,73 +436,73 @@ void PrintVisitor::Visit(LambdaFunction* node) { } out_ << " -> "; Visitor::Visit(node->expression); - out_ << " "; + out_ << " )\n"; } // Name void PrintVisitor::Visit(NameSuperExpression* node) { - out_ << " "; + out_ << "(NameSuperExpression "; for (auto& variable_namespace : node->namespaces) { Visitor::Visit(variable_namespace); out_ << '.'; } - for (int i = 0; i < node->expressions.size(); ++i) { + for (size_t i = 0; i < node->expressions.size(); ++i) { Visitor::Visit(node->expressions[i]); if (i + 1 < node->expressions.size()) { out_ << '.'; } } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(NameExpression* node) { - out_ << " "; + out_ << "(NameExpression "; for (auto& variable_namespace : node->namespaces) { Visitor::Visit(variable_namespace); out_ << '.'; } - for (int i = 0; i < node->names.size(); ++i) { + for (size_t i = 0; i < node->names.size(); ++i) { Visit(&node->names[i]); if (i + 1 < node->names.size()) { out_ << '.'; } } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(TupleName* node) { - out_ << " "; + out_ << "(TupleName "; for (auto& name : node->names) { out_ << '&'; Visit(name.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(VariantName* node) { - out_ << " "; + out_ << "(VariantName "; for (auto& name : node->names) { out_ << '|'; Visit(name.get()); } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(AnnotatedName* node) { - out_ << " "; + out_ << "(AnnotatedName "; Visit(&node->name); if (node->type.has_value()) { out_ << " : "; Visit(node->type.value().get()); } - out_ << " "; + out_ << " )"; } // Type void PrintVisitor::Visit(TypeConstructor* node) { - out_ << " "; + out_ << "(TypeConstructor "; Visit(node->type.get()); out_ << '\n'; for (auto& parameter : node->parameters) { @@ -511,13 +511,13 @@ void PrintVisitor::Visit(TypeConstructor* node) { Visitor::Visit(parameter.second); out_ << '\n'; } - out_ << "\n"; + out_ << ")"; } void PrintVisitor::Visit(TupleType* node) { - out_ << " "; + out_ << "(TupleType "; if (node->type.has_value()) { - Visit(&node->type.value()); // optional + Visit(&node->type.value()); } out_ << ' '; for (auto& entity : node->entities) { @@ -528,11 +528,11 @@ void PrintVisitor::Visit(TupleType* node) { } Visitor::Visit(entity.second); } - out_ << ""; + out_ << ")"; } void PrintVisitor::Visit(VariantType* node) { - out_ << " "; + out_ << "(VariantType "; if (node->type.has_value()) { Visit(&node->type.value()); } @@ -540,18 +540,18 @@ void PrintVisitor::Visit(VariantType* node) { for (auto& constructor : node->constructors) { out_ << "| "; if (std::holds_alternative(constructor)) { - Visit(&std::get(constructor)); + Visit(&std::get(constructor)); } else if (std::holds_alternative>(constructor)) { Visit(std::get>(constructor).get()); } else { // error } } - out_ << ""; + out_ << ")"; } void PrintVisitor::Visit(AnnotatedType* node) { - out_ << " "; + out_ << "(AnnotatedType "; Visit(node->type_expression.get()); if (node->annotations.size() > 0) { out_ << " :"; @@ -560,33 +560,33 @@ void PrintVisitor::Visit(AnnotatedType* node) { out_ << " "; Visit(annotation.get()); } - out_ << ""; + out_ << ")"; } void PrintVisitor::Visit(ParametrizedType* node) { - out_ << " "; + out_ << "(ParametrizedType "; Visit(node->type_expression.get()); for (auto& paramater : node->parameters) { out_ << ' '; Visitor::Visit(paramater); } - out_ << " "; + out_ << " )"; } void PrintVisitor::Visit(TypeExpression* node) { - out_ << " "; + out_ << "(TypeExpression "; for (auto& type_namespace : node->namespaces) { Visitor::Visit(type_namespace); out_ << '.'; } Visit(&node->type); - out_ << " "; + out_ << " )"; } // Typeclass void PrintVisitor::Visit(AnnotatedTypeclass* node) { - out_ << " "; + out_ << "(AnnotatedTypeclass "; Visit(node->typeclass_expression.get()); if (node->annotations.size() > 0) { out_ << " :"; @@ -595,49 +595,49 @@ void PrintVisitor::Visit(AnnotatedTypeclass* node) { out_ << " "; Visit(annotation.get()); } - out_ << ""; + out_ << ")"; } void PrintVisitor::Visit(ParametrizedTypeclass* node) { - out_ << " "; + out_ << "(ParametrizedTypeclass "; Visit(node->typeclass_expression.get()); for (auto& paramater : node->parameters) { out_ << ' '; Visitor::Visit(paramater); } - out_ << " "; + out_ << " )"; } void PrintVisitor::Visit(TypeclassExpression* node) { - out_ << " "; + out_ << "(TypeclassExpression "; for (auto& typeclass_namespace : node->namespaces) { Visitor::Visit(typeclass_namespace); out_ << '.'; } Visit(&node->typeclass); - out_ << " "; + out_ << " )"; } // Identifiers, constants, etc. ----------------- void PrintVisitor::Visit(AnyIdentifier* node) { // std::string - out_ << ""; + out_ << "(Identifier " << *node << " )"; } void PrintVisitor::Visit(FloatNumberLiteral* node) { - out_ << "value << " />"; + out_ << "(FloatNumber " << node->value << " )"; } void PrintVisitor::Visit(NumberLiteral* node) { - out_ << "value << " />"; + out_ << "(Number " << node->value << " )"; } void PrintVisitor::Visit(StringLiteral* node) { - out_ << "value << " />"; + out_ << "(String " << node->value << " )"; } void PrintVisitor::Visit(CharLiteral* node) { - out_ << "value << " />"; + out_ << "(Char " << node->value << " )"; } } // namespace interpreter diff --git a/src/visitor.cpp b/src/visitor.cpp index 4b6d3b4..a1ba65c 100644 --- a/src/visitor.cpp +++ b/src/visitor.cpp @@ -265,7 +265,7 @@ void Visitor::Visit(AnyName& node) { // Type -void Visitor::Visit(AnyType& node) { +void Visitor::Visit(AnyType& node) { // Or ScopedAnyType switch (node.index()) { case 0: Visit(std::get>(node).get()); @@ -301,9 +301,12 @@ void Visitor::Visit(TypeSubExpression& node) { void Visitor::Visit(TypeParameter& node) { switch (node.index()) { case 0: - Visit(std::get>(node).get()); + Visit(std::get>(node).get()); break; case 1: + Visit(std::get>(node).get()); + break; + case 2: Visit(*std::get>(node).get()); break; default: diff --git a/tests/arrays.lang b/tests/arrays.lang new file mode 100644 index 0000000..c52e03b --- /dev/null +++ b/tests/arrays.lang @@ -0,0 +1,29 @@ +decl test_arrays : Unit -> Unit +def test_arrays = { + var arr1 = [1, 2, 3] + const arr2 = [] // empty array ?? + var arr3 = [] : Int.5 // TODO: decide ?? + const arr4= ['a'..'z'] + const n = 100; + var @arr5 = @[] : @Int.n // unique pointer (??) + + var @@arr6 = @@[] : @@Int.n // shared pointer (??) + var @@arr6_pointer = @@arr6 + + const elem1 = arr1.1 + var elem2 = arr1.1 + const *ref1 = *arr1.1 // reference <-> unmanaged pointer (??) + var *ref2 = *arr1.1 + ; *arr1.1 = 123 + + ; ref1 = arr1.2 // set value + ; *ref1 = *ref2 // set reference + + // ?? references, that can't change ?? + + // ?? array access, array mutable access, array get reference to elem ?? + // ?? arrays as basic type ?? + // ?? custom allocators ?? +} + +// ???????????????????? diff --git a/tests/classes.lang b/tests/classes.lang new file mode 100644 index 0000000..5899465 --- /dev/null +++ b/tests/classes.lang @@ -0,0 +1,69 @@ +// ?? value - parametric classes ?? + +// struct fields/etc. accessible from everywere +// class fields/etc. accessible only from namespace of class or class instance (from "methods") + +// points at the beginning of constructor name - amount of needed constructor prefixes ? + +// ?? how to make class compositons ?? + +struct Fruit = + | Apple + | Orange + | Banana + +struct Optional 'A = + | Some & 'A + | None + +struct (Result : #Move) 'A 'B = + | & 'A + | Error & 'B + +// struct (Complex : #Value) = +// & Float(0.0) +// & Float(0.0) +// +// struct Task = +// & name("Task") : String +// & duration(0.0) : Float + +class Employee = + & name : String + & role : + ( | Director + & importance : Float + & share : Float + | Manager + & productivity : + ( Productivity + | .Low + | .Average + | .High + & duration : Float + & sleep_on_work : + (SleepOnWork + | ..Yes + | ..No + )) + & salary : Int + | Programmer + & skills : Float + & current_task : Optional Task + & salary : Int) + + +class Bag = + & + ( | Apple + | Orange + | Banana) + & bag_type : + ( | Small + | Medium + & weight_kg : Int + & weight_g : Int + & weight_g : Int + | Big) + & other_things : Array Something + diff --git a/tests/default_constructors.lang b/tests/default_constructors.lang new file mode 100644 index 0000000..2774c2a --- /dev/null +++ b/tests/default_constructors.lang @@ -0,0 +1,43 @@ +namespace Employee { + decl gen_employee : Unit -> Employee + def gen_employee = { + ; a = b + c + return + $Employee + & name = "John" + & role = + ($Manager + & name = "John" + & productivity = + ($Productivity.High + & duration = 10.3 + & sleep_on_work = ($Productivity.SleepOnWork.No)) + & salary = 123) + } +} + +/* +class Employee = + & name : String + & role : + ( | Director + & importance : Float + & share : Float + | Manager + & productivity : + ( Productivity + | .Low + | .Average + | .High + & duration : Float + & sleep_on_work : + (SleepOnWork + | ..Yes + | ..No + )) + & salary : Int + | Programmer + & skills : Float + & current_task : Optional Task + & salary : Int) +*/ diff --git a/tests/flow_control.lang b/tests/flow_control.lang new file mode 100644 index 0000000..dcb9083 --- /dev/null +++ b/tests/flow_control.lang @@ -0,0 +1,44 @@ +decl flow_control_test : Unit -> Unit +def flow_control_test = { +// if && || a < b +// || a == b +// && b < c +// && c > 10 + + if ((a < b) || (a == b)) && (b < c) + then IO.print x + elif x < 0 + then { + ; ++x + ; IO.print y + } else { + return {} + } + + while (a > 0) && (!array.is_empty) + do { + ; --a + ; array.pop + } + + while x < 10 do + x += x + 3 + + for i in 0..y do { + ; IO.print i + } + + for & i & j + in (& 0..y & 0..k) + do { // TODO: decide ??? does it work (like auto zip) ??? + ; IO.print 1 + ; IO.print 2 + ; IO.print 128 + } + + loop { + ; ++y + if y > 100 then + break + } +} diff --git a/tests/functions.lang b/tests/functions.lang new file mode 100644 index 0000000..ad3aa71 --- /dev/null +++ b/tests/functions.lang @@ -0,0 +1,70 @@ +// "decl" is not required, but useful in module interface + +decl sum ('A : #Add) : 'A -> 'A -> 'A +def sum : a b = a + b + +decl fib : Int -> Int +def fib : n = + match n with + | 0 | 1 -> 1 + | _ -> fib (n - 1) + fib n + +decl fact : Int -> Int +def fact : n = + match n with + | 0 -> 1 + | n -> n * fact (n - 1) + +decl find_prefix_hashes ('H : (#AccHash Char)) : String -> Array 'H +def find_prefix_hashes ('H : (#AccHash Char)) : str = { + var hashes = (Array 'H).new (str.size + 1) + + ; hashes.0 = 'H.of str.0 + for i in 1..hashes.size do { + ; hashes.i = hashes.(i - 1).clone + ; hashes.i.append str.i + } + + return hashes +} + +// ?? other default constructor symbol (instead of placeholder _), etc. ?? + +// seporate first and last iteration of loop ? +// previous and next iterations ? + +decl find_substring : String -> String -> Array Index +def find_substring : str substr = { + alias Hash = AccHash Char + + var result = (Array Index).empty + + const str_hashes = find_prefix_hashes Hash str + const substr_hash = Hash.of substr + + for i in 0..(str_hashes.size - substr.size) do { + const part_hash = Hash.diff str_hashes.(i + substr.size) str_hashes.i + + if part_hash == substr_hash then { + ; result.push i + } + } + + return result +} + +decl is_empty : Unit -> Bool +def is_empty = + return 0 + +decl do_something : Unit -> Unit +def do_something = + IO.print "Hello World!" + +decl mul : Int -> Int -> Int +def mul : x y = x * y + +decl mul_10 : Int -> Int +def mul_10 = mul 10 // or argument can be used + +// ?? is partial application feature needed ?? diff --git a/tests/import.lang b/tests/import.lang new file mode 100644 index 0000000..940d6c4 --- /dev/null +++ b/tests/import.lang @@ -0,0 +1,18 @@ +import "module" +import "module" : func +import "module" : + func1 + func2 + func3 + func4 + func5 + +use ModuleNamespace = import "module" + +use PartOfModuleNamespace = + import "module" : + func1 + func2 + func3 + +// ?? use ":" once again ?? diff --git a/tests/lambdas.lang b/tests/lambdas.lang new file mode 100644 index 0000000..ad9a193 --- /dev/null +++ b/tests/lambdas.lang @@ -0,0 +1,15 @@ +decl test_lambdas : Unit -> Unit +def test_lambdas = { + const lambda1 = \x -> x * x + // const lambda2 = \(x : #Hash) -> x.hash // ?? + const lambda3 = \x y -> x + y + + // TODO: type LambdaType = Int -> Int // ?? type keyword ?? + // const typed_lambda = \x -> x + 1 + + const lambda4 = \x -> { + ; IO.print x + const y = x + x + return y + } +} diff --git a/tests/match.lang b/tests/match.lang new file mode 100644 index 0000000..288a678 --- /dev/null +++ b/tests/match.lang @@ -0,0 +1,15 @@ +def fruit_cost : fruit = { + return (match fruit with + | $Banana -> 11 + | $Apple | $Orange -> 7) +} + +def amount_to_string : x is_zero_separated = { + const ans = match x with + | 0 ? is_zero_separated -> "Zero" + | 0 | 1 | 2 | 3 | 4 -> "Few" + | x ? (5..9).contains x -> "Several" + | x ? (10..19).contains x -> "Pack" + | _ -> "Lots" + return ans +} diff --git a/tests/memory.lang b/tests/memory.lang new file mode 100644 index 0000000..b7c701c --- /dev/null +++ b/tests/memory.lang @@ -0,0 +1,9 @@ +struct StructWithRef = + & @Int._ // unique pointer to any-sized array (default size is zero ??) + +decl test_memory : Unit -> Unit +def test_memory = { + const @unique_ref1 <- @5 // move unique reference + var @unique_ref2 <- @(Array.of 1 2 3) + // ?? reference to constant value ?? +} diff --git a/tests/namespaces.lang b/tests/namespaces.lang new file mode 100644 index 0000000..0b93076 --- /dev/null +++ b/tests/namespaces.lang @@ -0,0 +1,20 @@ +namespace Namespace { + decl something : Unit +} + +namespace Array 'A { + decl something : Unit + // "static methods" of Array 'a class +} + +namespace Array ('A : #Copy) { + decl something : Unit + // "static methods" of Array 'a with "copyable" 'a +} + +namespace var a : Array ('A : #Copy) { + decl something : Unit + // "methods" of Array 'a (a as array instance) with "copyable" 'a +} + +// ?? what to do with const/public/... methods ?? diff --git a/tests/parametric_types.lang b/tests/parametric_types.lang new file mode 100644 index 0000000..e835fb8 --- /dev/null +++ b/tests/parametric_types.lang @@ -0,0 +1,5 @@ +class (FixedArray : #Ord) 'A : (a : Int) = + & size(a) : Int // ?? const ?? + & @[] : @'A.a + + // ?? not shure about array definition ?? diff --git a/tests/partitions.lang b/tests/partitions.lang new file mode 100644 index 0000000..35b6811 --- /dev/null +++ b/tests/partitions.lang @@ -0,0 +1,38 @@ +// partition DOC { // or .doc.lang filename +// // ... +// } + +// ?? separated doc ?? + +partition TEST { // or .test.lang filename + decl something : Unit +} + +partition INTERFACE { // or .interface.lang filename + decl something : Unit +} + +partition CORE { // or .core.lang filename + decl something : Unit +} + +partition LIB { // or .lib.lang filename + decl something : Unit +} + +partition MODULE { // or .module.lang filename + decl something : Unit +} + +// maybe another name for partition + +partition EXE { // or .exe.lang filename + decl something : Unit +} + +// partition CONFIG { // or .config.lang filename +// decl something : Unit +// } + +// ?? config is one of the partitions ?? +// ?? maybe more ?? diff --git a/tests/tuples.lang b/tests/tuples.lang new file mode 100644 index 0000000..dadd491 --- /dev/null +++ b/tests/tuples.lang @@ -0,0 +1,12 @@ +decl test_tuples : Unit -> Unit +def test_tuples = { + var tuple1 = & "a" & 2 & "hello" + const & t1 & t2 & t3 = f x + + ; tuple1.0 = "b" + +} + +// ?????????????????????????? + + diff --git a/tests/type_casting.lang b/tests/type_casting.lang new file mode 100644 index 0000000..ce5b07b --- /dev/null +++ b/tests/type_casting.lang @@ -0,0 +1,7 @@ +decl test_type_casting : Unit -> Unit +def test_type_casting = { + var x = y.as Int + var k = (f y x).as Float +} + +// type casting is can be done by generic method "as" diff --git a/tests/typeclasses.lang b/tests/typeclasses.lang new file mode 100644 index 0000000..4af90de --- /dev/null +++ b/tests/typeclasses.lang @@ -0,0 +1,36 @@ +typeclass #Copy = + & copy : #Copy -> #Copy + +typeclass (#Ord : #Eq) = + & ( < ) : #Ord -> #Ord -> Bool + & ( > ) : #Ord -> #Ord -> Bool + & ( <= ) : #Ord -> #Ord -> Bool + & ( >= ) : #Ord -> #Ord -> Bool + +typeclass (#D : #A #B #C) 'A 'B = + & do_something : Unit -> (& 'A & 'B) + +typeclass #E 'A = + & do_something : Unit -> 'A + +namespace const ord : #Ord { + def ( <= ) : a b = (a < b) || (a == b) + def ( > ) : a b = !(a <= b) + def ( >= ) : a b = !(a < b) +} + +// === ?? dependent types ?? === +// +// typeclass #F : (a : Int) (b : Int) = +// & do_something Int -> Int +// +// namespace (f : #F a b c) { +// require do_sometihng a = b +// } +// +// === + +// ?? operators over functions (without arguments, like "def <= = < || ==;") ?? +// ?? define operators like OCaml ?? +// ?? denote moved type ?? +// ?? "trait" VS "typeclass" ?? diff --git a/tests/types.lang b/tests/types.lang new file mode 100644 index 0000000..0402268 --- /dev/null +++ b/tests/types.lang @@ -0,0 +1,14 @@ +alias T1 = Int; + +type (T2 : #A #B #C); + +// Define file level abstract type + +T2 = + | Int + | Float + | Complex; + +// Compile module (functions, types, ...) for T2 = Int, Float, Complex + +// ?? file level <-> module level ?? diff --git a/tests/variants.lang b/tests/variants.lang new file mode 100644 index 0000000..43603d5 --- /dev/null +++ b/tests/variants.lang @@ -0,0 +1,22 @@ +decl test_variants : Unit -> Unit +def test_variants = { + var variant1 = | 'a' | 2 | "hello" + var | val | err = f x // optional types for each + + ; val -> "something" // open variant as value in expr + + ; val -!> "nothing" // open variant as None in expr + + ; ?err // open variant as value, or return None (if possible), operator + + match variant1 with + | 'a' -> "something" + | 2 -> "something" + | "hello" -> "something" + | a -> "Something" + | String.of str -> "something" + | Int.of i -> "someting" + | 11 -> "nothing" +} + +// ??????????????????????? diff --git a/tree-sitter b/tree-sitter new file mode 160000 index 0000000..1b1c397 --- /dev/null +++ b/tree-sitter @@ -0,0 +1 @@ +Subproject commit 1b1c3974f789a9bfaa31f493e6eaa212f13bdfb9 diff --git a/tree_sitter/api.h b/tree_sitter/api.h deleted file mode 100644 index 65b6bea..0000000 --- a/tree_sitter/api.h +++ /dev/null @@ -1,983 +0,0 @@ -#ifndef TREE_SITTER_API_H_ -#define TREE_SITTER_API_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include -#include - -/****************************/ -/* Section - ABI Versioning */ -/****************************/ - -/** - * The latest ABI version that is supported by the current version of the - * library. When Languages are generated by the Tree-sitter CLI, they are - * assigned an ABI version number that corresponds to the current CLI version. - * The Tree-sitter library is generally backwards-compatible with languages - * generated using older CLI versions, but is not forwards-compatible. - */ -#define TREE_SITTER_LANGUAGE_VERSION 14 - -/** - * The earliest ABI version that is supported by the current version of the - * library. - */ -#define TREE_SITTER_MIN_COMPATIBLE_LANGUAGE_VERSION 13 - -/*******************/ -/* Section - Types */ -/*******************/ - -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -typedef struct TSParser TSParser; -typedef struct TSTree TSTree; -typedef struct TSQuery TSQuery; -typedef struct TSQueryCursor TSQueryCursor; - -typedef enum { - TSInputEncodingUTF8, - TSInputEncodingUTF16, -} TSInputEncoding; - -typedef enum { - TSSymbolTypeRegular, - TSSymbolTypeAnonymous, - TSSymbolTypeAuxiliary, -} TSSymbolType; - -typedef struct { - uint32_t row; - uint32_t column; -} TSPoint; - -typedef struct { - TSPoint start_point; - TSPoint end_point; - uint32_t start_byte; - uint32_t end_byte; -} TSRange; - -typedef struct { - void *payload; - const char *(*read)(void *payload, uint32_t byte_index, TSPoint position, uint32_t *bytes_read); - TSInputEncoding encoding; -} TSInput; - -typedef enum { - TSLogTypeParse, - TSLogTypeLex, -} TSLogType; - -typedef struct { - void *payload; - void (*log)(void *payload, TSLogType, const char *); -} TSLogger; - -typedef struct { - uint32_t start_byte; - uint32_t old_end_byte; - uint32_t new_end_byte; - TSPoint start_point; - TSPoint old_end_point; - TSPoint new_end_point; -} TSInputEdit; - -typedef struct { - uint32_t context[4]; - const void *id; - const TSTree *tree; -} TSNode; - -typedef struct { - const void *tree; - const void *id; - uint32_t context[2]; -} TSTreeCursor; - -typedef struct { - TSNode node; - uint32_t index; -} TSQueryCapture; - -typedef enum { - TSQuantifierZero = 0, // must match the array initialization value - TSQuantifierZeroOrOne, - TSQuantifierZeroOrMore, - TSQuantifierOne, - TSQuantifierOneOrMore, -} TSQuantifier; - -typedef struct { - uint32_t id; - uint16_t pattern_index; - uint16_t capture_count; - const TSQueryCapture *captures; -} TSQueryMatch; - -typedef enum { - TSQueryPredicateStepTypeDone, - TSQueryPredicateStepTypeCapture, - TSQueryPredicateStepTypeString, -} TSQueryPredicateStepType; - -typedef struct { - TSQueryPredicateStepType type; - uint32_t value_id; -} TSQueryPredicateStep; - -typedef enum { - TSQueryErrorNone = 0, - TSQueryErrorSyntax, - TSQueryErrorNodeType, - TSQueryErrorField, - TSQueryErrorCapture, - TSQueryErrorStructure, - TSQueryErrorLanguage, -} TSQueryError; - -/********************/ -/* Section - Parser */ -/********************/ - -/** - * Create a new parser. - */ -TSParser *ts_parser_new(void); - -/** - * Delete the parser, freeing all of the memory that it used. - */ -void ts_parser_delete(TSParser *parser); - -/** - * Set the language that the parser should use for parsing. - * - * Returns a boolean indicating whether or not the language was successfully - * assigned. True means assignment succeeded. False means there was a version - * mismatch: the language was generated with an incompatible version of the - * Tree-sitter CLI. Check the language's version using `ts_language_version` - * and compare it to this library's `TREE_SITTER_LANGUAGE_VERSION` and - * `TREE_SITTER_MIN_COMPATIBLE_LANGUAGE_VERSION` constants. - */ -bool ts_parser_set_language(TSParser *self, const TSLanguage *language); - -/** - * Get the parser's current language. - */ -const TSLanguage *ts_parser_language(const TSParser *self); - -/** - * Set the ranges of text that the parser should include when parsing. - * - * By default, the parser will always include entire documents. This function - * allows you to parse only a *portion* of a document but still return a syntax - * tree whose ranges match up with the document as a whole. You can also pass - * multiple disjoint ranges. - * - * The second and third parameters specify the location and length of an array - * of ranges. The parser does *not* take ownership of these ranges; it copies - * the data, so it doesn't matter how these ranges are allocated. - * - * If `length` is zero, then the entire document will be parsed. Otherwise, - * the given ranges must be ordered from earliest to latest in the document, - * and they must not overlap. That is, the following must hold for all - * `i` < `length - 1`: ranges[i].end_byte <= ranges[i + 1].start_byte - * - * If this requirement is not satisfied, the operation will fail, the ranges - * will not be assigned, and this function will return `false`. On success, - * this function returns `true` - */ -bool ts_parser_set_included_ranges( - TSParser *self, - const TSRange *ranges, - uint32_t length -); - -/** - * Get the ranges of text that the parser will include when parsing. - * - * The returned pointer is owned by the parser. The caller should not free it - * or write to it. The length of the array will be written to the given - * `length` pointer. - */ -const TSRange *ts_parser_included_ranges( - const TSParser *self, - uint32_t *length -); - -/** - * Use the parser to parse some source code and create a syntax tree. - * - * If you are parsing this document for the first time, pass `NULL` for the - * `old_tree` parameter. Otherwise, if you have already parsed an earlier - * version of this document and the document has since been edited, pass the - * previous syntax tree so that the unchanged parts of it can be reused. - * This will save time and memory. For this to work correctly, you must have - * already edited the old syntax tree using the `ts_tree_edit` function in a - * way that exactly matches the source code changes. - * - * The `TSInput` parameter lets you specify how to read the text. It has the - * following three fields: - * 1. `read`: A function to retrieve a chunk of text at a given byte offset - * and (row, column) position. The function should return a pointer to the - * text and write its length to the `bytes_read` pointer. The parser does - * not take ownership of this buffer; it just borrows it until it has - * finished reading it. The function should write a zero value to the - * `bytes_read` pointer to indicate the end of the document. - * 2. `payload`: An arbitrary pointer that will be passed to each invocation - * of the `read` function. - * 3. `encoding`: An indication of how the text is encoded. Either - * `TSInputEncodingUTF8` or `TSInputEncodingUTF16`. - * - * This function returns a syntax tree on success, and `NULL` on failure. There - * are three possible reasons for failure: - * 1. The parser does not have a language assigned. Check for this using the - `ts_parser_language` function. - * 2. Parsing was cancelled due to a timeout that was set by an earlier call to - * the `ts_parser_set_timeout_micros` function. You can resume parsing from - * where the parser left out by calling `ts_parser_parse` again with the - * same arguments. Or you can start parsing from scratch by first calling - * `ts_parser_reset`. - * 3. Parsing was cancelled using a cancellation flag that was set by an - * earlier call to `ts_parser_set_cancellation_flag`. You can resume parsing - * from where the parser left out by calling `ts_parser_parse` again with - * the same arguments. - */ -TSTree *ts_parser_parse( - TSParser *self, - const TSTree *old_tree, - TSInput input -); - -/** - * Use the parser to parse some source code stored in one contiguous buffer. - * The first two parameters are the same as in the `ts_parser_parse` function - * above. The second two parameters indicate the location of the buffer and its - * length in bytes. - */ -TSTree *ts_parser_parse_string( - TSParser *self, - const TSTree *old_tree, - const char *string, - uint32_t length -); - -/** - * Use the parser to parse some source code stored in one contiguous buffer with - * a given encoding. The first four parameters work the same as in the - * `ts_parser_parse_string` method above. The final parameter indicates whether - * the text is encoded as UTF8 or UTF16. - */ -TSTree *ts_parser_parse_string_encoding( - TSParser *self, - const TSTree *old_tree, - const char *string, - uint32_t length, - TSInputEncoding encoding -); - -/** - * Instruct the parser to start the next parse from the beginning. - * - * If the parser previously failed because of a timeout or a cancellation, then - * by default, it will resume where it left off on the next call to - * `ts_parser_parse` or other parsing functions. If you don't want to resume, - * and instead intend to use this parser to parse some other document, you must - * call `ts_parser_reset` first. - */ -void ts_parser_reset(TSParser *self); - -/** - * Set the maximum duration in microseconds that parsing should be allowed to - * take before halting. - * - * If parsing takes longer than this, it will halt early, returning NULL. - * See `ts_parser_parse` for more information. - */ -void ts_parser_set_timeout_micros(TSParser *self, uint64_t timeout); - -/** - * Get the duration in microseconds that parsing is allowed to take. - */ -uint64_t ts_parser_timeout_micros(const TSParser *self); - -/** - * Set the parser's current cancellation flag pointer. - * - * If a non-null pointer is assigned, then the parser will periodically read - * from this pointer during parsing. If it reads a non-zero value, it will - * halt early, returning NULL. See `ts_parser_parse` for more information. - */ -void ts_parser_set_cancellation_flag(TSParser *self, const size_t *flag); - -/** - * Get the parser's current cancellation flag pointer. - */ -const size_t *ts_parser_cancellation_flag(const TSParser *self); - -/** - * Set the logger that a parser should use during parsing. - * - * The parser does not take ownership over the logger payload. If a logger was - * previously assigned, the caller is responsible for releasing any memory - * owned by the previous logger. - */ -void ts_parser_set_logger(TSParser *self, TSLogger logger); - -/** - * Get the parser's current logger. - */ -TSLogger ts_parser_logger(const TSParser *self); - -/** - * Set the file descriptor to which the parser should write debugging graphs - * during parsing. The graphs are formatted in the DOT language. You may want - * to pipe these graphs directly to a `dot(1)` process in order to generate - * SVG output. You can turn off this logging by passing a negative number. - */ -void ts_parser_print_dot_graphs(TSParser *self, int file); - -/******************/ -/* Section - Tree */ -/******************/ - -/** - * Create a shallow copy of the syntax tree. This is very fast. - * - * You need to copy a syntax tree in order to use it on more than one thread at - * a time, as syntax trees are not thread safe. - */ -TSTree *ts_tree_copy(const TSTree *self); - -/** - * Delete the syntax tree, freeing all of the memory that it used. - */ -void ts_tree_delete(TSTree *self); - -/** - * Get the root node of the syntax tree. - */ -TSNode ts_tree_root_node(const TSTree *self); - -/** - * Get the root node of the syntax tree, but with its position - * shifted forward by the given offset. - */ -TSNode ts_tree_root_node_with_offset( - const TSTree *self, - uint32_t offset_bytes, - TSPoint offset_point -); - -/** - * Get the language that was used to parse the syntax tree. - */ -const TSLanguage *ts_tree_language(const TSTree *); - -/** - * Get the array of included ranges that was used to parse the syntax tree. - * - * The returned pointer must be freed by the caller. - */ -TSRange *ts_tree_included_ranges(const TSTree *, uint32_t *length); - -/** - * Edit the syntax tree to keep it in sync with source code that has been - * edited. - * - * You must describe the edit both in terms of byte offsets and in terms of - * (row, column) coordinates. - */ -void ts_tree_edit(TSTree *self, const TSInputEdit *edit); - -/** - * Compare an old edited syntax tree to a new syntax tree representing the same - * document, returning an array of ranges whose syntactic structure has changed. - * - * For this to work correctly, the old syntax tree must have been edited such - * that its ranges match up to the new tree. Generally, you'll want to call - * this function right after calling one of the `ts_parser_parse` functions. - * You need to pass the old tree that was passed to parse, as well as the new - * tree that was returned from that function. - * - * The returned array is allocated using `malloc` and the caller is responsible - * for freeing it using `free`. The length of the array will be written to the - * given `length` pointer. - */ -TSRange *ts_tree_get_changed_ranges( - const TSTree *old_tree, - const TSTree *new_tree, - uint32_t *length -); - -/** - * Write a DOT graph describing the syntax tree to the given file. - */ -void ts_tree_print_dot_graph(const TSTree *, int file_descriptor); - -/******************/ -/* Section - Node */ -/******************/ - -/** - * Get the node's type as a null-terminated string. - */ -const char *ts_node_type(TSNode); - -/** - * Get the node's type as a numerical id. - */ -TSSymbol ts_node_symbol(TSNode); - -/** - * Get the node's start byte. - */ -uint32_t ts_node_start_byte(TSNode); - -/** - * Get the node's start position in terms of rows and columns. - */ -TSPoint ts_node_start_point(TSNode); - -/** - * Get the node's end byte. - */ -uint32_t ts_node_end_byte(TSNode); - -/** - * Get the node's end position in terms of rows and columns. - */ -TSPoint ts_node_end_point(TSNode); - -/** - * Get an S-expression representing the node as a string. - * - * This string is allocated with `malloc` and the caller is responsible for - * freeing it using `free`. - */ -char *ts_node_string(TSNode); - -/** - * Check if the node is null. Functions like `ts_node_child` and - * `ts_node_next_sibling` will return a null node to indicate that no such node - * was found. - */ -bool ts_node_is_null(TSNode); - -/** - * Check if the node is *named*. Named nodes correspond to named rules in the - * grammar, whereas *anonymous* nodes correspond to string literals in the - * grammar. - */ -bool ts_node_is_named(TSNode); - -/** - * Check if the node is *missing*. Missing nodes are inserted by the parser in - * order to recover from certain kinds of syntax errors. - */ -bool ts_node_is_missing(TSNode); - -/** - * Check if the node is *extra*. Extra nodes represent things like comments, - * which are not required the grammar, but can appear anywhere. - */ -bool ts_node_is_extra(TSNode); - -/** - * Check if a syntax node has been edited. - */ -bool ts_node_has_changes(TSNode); - -/** - * Check if the node is a syntax error or contains any syntax errors. - */ -bool ts_node_has_error(TSNode); - -/** - * Get the node's immediate parent. - */ -TSNode ts_node_parent(TSNode); - -/** - * Get the node's child at the given index, where zero represents the first - * child. - */ -TSNode ts_node_child(TSNode, uint32_t); - -/** - * Get the field name for node's child at the given index, where zero represents - * the first child. Returns NULL, if no field is found. - */ -const char *ts_node_field_name_for_child(TSNode, uint32_t); - -/** - * Get the node's number of children. - */ -uint32_t ts_node_child_count(TSNode); - -/** - * Get the node's *named* child at the given index. - * - * See also `ts_node_is_named`. - */ -TSNode ts_node_named_child(TSNode, uint32_t); - -/** - * Get the node's number of *named* children. - * - * See also `ts_node_is_named`. - */ -uint32_t ts_node_named_child_count(TSNode); - -/** - * Get the node's child with the given field name. - */ -TSNode ts_node_child_by_field_name( - TSNode self, - const char *field_name, - uint32_t field_name_length -); - -/** - * Get the node's child with the given numerical field id. - * - * You can convert a field name to an id using the - * `ts_language_field_id_for_name` function. - */ -TSNode ts_node_child_by_field_id(TSNode, TSFieldId); - -/** - * Get the node's next / previous sibling. - */ -TSNode ts_node_next_sibling(TSNode); -TSNode ts_node_prev_sibling(TSNode); - -/** - * Get the node's next / previous *named* sibling. - */ -TSNode ts_node_next_named_sibling(TSNode); -TSNode ts_node_prev_named_sibling(TSNode); - -/** - * Get the node's first child that extends beyond the given byte offset. - */ -TSNode ts_node_first_child_for_byte(TSNode, uint32_t); - -/** - * Get the node's first named child that extends beyond the given byte offset. - */ -TSNode ts_node_first_named_child_for_byte(TSNode, uint32_t); - -/** - * Get the smallest node within this node that spans the given range of bytes - * or (row, column) positions. - */ -TSNode ts_node_descendant_for_byte_range(TSNode, uint32_t, uint32_t); -TSNode ts_node_descendant_for_point_range(TSNode, TSPoint, TSPoint); - -/** - * Get the smallest named node within this node that spans the given range of - * bytes or (row, column) positions. - */ -TSNode ts_node_named_descendant_for_byte_range(TSNode, uint32_t, uint32_t); -TSNode ts_node_named_descendant_for_point_range(TSNode, TSPoint, TSPoint); - -/** - * Edit the node to keep it in-sync with source code that has been edited. - * - * This function is only rarely needed. When you edit a syntax tree with the - * `ts_tree_edit` function, all of the nodes that you retrieve from the tree - * afterward will already reflect the edit. You only need to use `ts_node_edit` - * when you have a `TSNode` instance that you want to keep and continue to use - * after an edit. - */ -void ts_node_edit(TSNode *, const TSInputEdit *); - -/** - * Check if two nodes are identical. - */ -bool ts_node_eq(TSNode, TSNode); - -/************************/ -/* Section - TreeCursor */ -/************************/ - -/** - * Create a new tree cursor starting from the given node. - * - * A tree cursor allows you to walk a syntax tree more efficiently than is - * possible using the `TSNode` functions. It is a mutable object that is always - * on a certain syntax node, and can be moved imperatively to different nodes. - */ -TSTreeCursor ts_tree_cursor_new(TSNode); - -/** - * Delete a tree cursor, freeing all of the memory that it used. - */ -void ts_tree_cursor_delete(TSTreeCursor *); - -/** - * Re-initialize a tree cursor to start at a different node. - */ -void ts_tree_cursor_reset(TSTreeCursor *, TSNode); - -/** - * Get the tree cursor's current node. - */ -TSNode ts_tree_cursor_current_node(const TSTreeCursor *); - -/** - * Get the field name of the tree cursor's current node. - * - * This returns `NULL` if the current node doesn't have a field. - * See also `ts_node_child_by_field_name`. - */ -const char *ts_tree_cursor_current_field_name(const TSTreeCursor *); - -/** - * Get the field id of the tree cursor's current node. - * - * This returns zero if the current node doesn't have a field. - * See also `ts_node_child_by_field_id`, `ts_language_field_id_for_name`. - */ -TSFieldId ts_tree_cursor_current_field_id(const TSTreeCursor *); - -/** - * Move the cursor to the parent of its current node. - * - * This returns `true` if the cursor successfully moved, and returns `false` - * if there was no parent node (the cursor was already on the root node). - */ -bool ts_tree_cursor_goto_parent(TSTreeCursor *); - -/** - * Move the cursor to the next sibling of its current node. - * - * This returns `true` if the cursor successfully moved, and returns `false` - * if there was no next sibling node. - */ -bool ts_tree_cursor_goto_next_sibling(TSTreeCursor *); - -/** - * Move the cursor to the first child of its current node. - * - * This returns `true` if the cursor successfully moved, and returns `false` - * if there were no children. - */ -bool ts_tree_cursor_goto_first_child(TSTreeCursor *); - -/** - * Move the cursor to the first child of its current node that extends beyond - * the given byte offset or point. - * - * This returns the index of the child node if one was found, and returns -1 - * if no such child was found. - */ -int64_t ts_tree_cursor_goto_first_child_for_byte(TSTreeCursor *, uint32_t); -int64_t ts_tree_cursor_goto_first_child_for_point(TSTreeCursor *, TSPoint); - -TSTreeCursor ts_tree_cursor_copy(const TSTreeCursor *); - -/*******************/ -/* Section - Query */ -/*******************/ - -/** - * Create a new query from a string containing one or more S-expression - * patterns. The query is associated with a particular language, and can - * only be run on syntax nodes parsed with that language. - * - * If all of the given patterns are valid, this returns a `TSQuery`. - * If a pattern is invalid, this returns `NULL`, and provides two pieces - * of information about the problem: - * 1. The byte offset of the error is written to the `error_offset` parameter. - * 2. The type of error is written to the `error_type` parameter. - */ -TSQuery *ts_query_new( - const TSLanguage *language, - const char *source, - uint32_t source_len, - uint32_t *error_offset, - TSQueryError *error_type -); - -/** - * Delete a query, freeing all of the memory that it used. - */ -void ts_query_delete(TSQuery *); - -/** - * Get the number of patterns, captures, or string literals in the query. - */ -uint32_t ts_query_pattern_count(const TSQuery *); -uint32_t ts_query_capture_count(const TSQuery *); -uint32_t ts_query_string_count(const TSQuery *); - -/** - * Get the byte offset where the given pattern starts in the query's source. - * - * This can be useful when combining queries by concatenating their source - * code strings. - */ -uint32_t ts_query_start_byte_for_pattern(const TSQuery *, uint32_t); - -/** - * Get all of the predicates for the given pattern in the query. - * - * The predicates are represented as a single array of steps. There are three - * types of steps in this array, which correspond to the three legal values for - * the `type` field: - * - `TSQueryPredicateStepTypeCapture` - Steps with this type represent names - * of captures. Their `value_id` can be used with the - * `ts_query_capture_name_for_id` function to obtain the name of the capture. - * - `TSQueryPredicateStepTypeString` - Steps with this type represent literal - * strings. Their `value_id` can be used with the - * `ts_query_string_value_for_id` function to obtain their string value. - * - `TSQueryPredicateStepTypeDone` - Steps with this type are *sentinels* - * that represent the end of an individual predicate. If a pattern has two - * predicates, then there will be two steps with this `type` in the array. - */ -const TSQueryPredicateStep *ts_query_predicates_for_pattern( - const TSQuery *self, - uint32_t pattern_index, - uint32_t *length -); - -/* - * Check if the given pattern in the query has a single root node. - */ -bool ts_query_is_pattern_rooted(const TSQuery *self, uint32_t pattern_index); - -/* - * Check if the given pattern in the query is 'non local'. - * - * A non-local pattern has multiple root nodes and can match within a - * repeating sequence of nodes, as specified by the grammar. Non-local - * patterns disable certain optimizations that would otherwise be possible - * when executing a query on a specific range of a syntax tree. - */ -bool ts_query_is_pattern_non_local(const TSQuery *self, uint32_t pattern_index); - -/* - * Check if a given pattern is guaranteed to match once a given step is reached. - * The step is specified by its byte offset in the query's source code. - */ -bool ts_query_is_pattern_guaranteed_at_step(const TSQuery *self, uint32_t byte_offset); - -/** - * Get the name and length of one of the query's captures, or one of the - * query's string literals. Each capture and string is associated with a - * numeric id based on the order that it appeared in the query's source. - */ -const char *ts_query_capture_name_for_id( - const TSQuery *, - uint32_t id, - uint32_t *length -); - -/** - * Get the quantifier of the query's captures. Each capture is * associated - * with a numeric id based on the order that it appeared in the query's source. - */ -TSQuantifier ts_query_capture_quantifier_for_id( - const TSQuery *, - uint32_t pattern_id, - uint32_t capture_id -); - -const char *ts_query_string_value_for_id( - const TSQuery *, - uint32_t id, - uint32_t *length -); - -/** - * Disable a certain capture within a query. - * - * This prevents the capture from being returned in matches, and also avoids - * any resource usage associated with recording the capture. Currently, there - * is no way to undo this. - */ -void ts_query_disable_capture(TSQuery *, const char *, uint32_t); - -/** - * Disable a certain pattern within a query. - * - * This prevents the pattern from matching and removes most of the overhead - * associated with the pattern. Currently, there is no way to undo this. - */ -void ts_query_disable_pattern(TSQuery *, uint32_t); - -/** - * Create a new cursor for executing a given query. - * - * The cursor stores the state that is needed to iteratively search - * for matches. To use the query cursor, first call `ts_query_cursor_exec` - * to start running a given query on a given syntax node. Then, there are - * two options for consuming the results of the query: - * 1. Repeatedly call `ts_query_cursor_next_match` to iterate over all of the - * *matches* in the order that they were found. Each match contains the - * index of the pattern that matched, and an array of captures. Because - * multiple patterns can match the same set of nodes, one match may contain - * captures that appear *before* some of the captures from a previous match. - * 2. Repeatedly call `ts_query_cursor_next_capture` to iterate over all of the - * individual *captures* in the order that they appear. This is useful if - * don't care about which pattern matched, and just want a single ordered - * sequence of captures. - * - * If you don't care about consuming all of the results, you can stop calling - * `ts_query_cursor_next_match` or `ts_query_cursor_next_capture` at any point. - * You can then start executing another query on another node by calling - * `ts_query_cursor_exec` again. - */ -TSQueryCursor *ts_query_cursor_new(void); - -/** - * Delete a query cursor, freeing all of the memory that it used. - */ -void ts_query_cursor_delete(TSQueryCursor *); - -/** - * Start running a given query on a given node. - */ -void ts_query_cursor_exec(TSQueryCursor *, const TSQuery *, TSNode); - -/** - * Manage the maximum number of in-progress matches allowed by this query - * cursor. - * - * Query cursors have an optional maximum capacity for storing lists of - * in-progress captures. If this capacity is exceeded, then the - * earliest-starting match will silently be dropped to make room for further - * matches. This maximum capacity is optional — by default, query cursors allow - * any number of pending matches, dynamically allocating new space for them as - * needed as the query is executed. - */ -bool ts_query_cursor_did_exceed_match_limit(const TSQueryCursor *); -uint32_t ts_query_cursor_match_limit(const TSQueryCursor *); -void ts_query_cursor_set_match_limit(TSQueryCursor *, uint32_t); - -/** - * Set the range of bytes or (row, column) positions in which the query - * will be executed. - */ -void ts_query_cursor_set_byte_range(TSQueryCursor *, uint32_t, uint32_t); -void ts_query_cursor_set_point_range(TSQueryCursor *, TSPoint, TSPoint); - -/** - * Advance to the next match of the currently running query. - * - * If there is a match, write it to `*match` and return `true`. - * Otherwise, return `false`. - */ -bool ts_query_cursor_next_match(TSQueryCursor *, TSQueryMatch *match); -void ts_query_cursor_remove_match(TSQueryCursor *, uint32_t id); - -/** - * Advance to the next capture of the currently running query. - * - * If there is a capture, write its match to `*match` and its index within - * the matche's capture list to `*capture_index`. Otherwise, return `false`. - */ -bool ts_query_cursor_next_capture( - TSQueryCursor *, - TSQueryMatch *match, - uint32_t *capture_index -); - -/**********************/ -/* Section - Language */ -/**********************/ - -/** - * Get the number of distinct node types in the language. - */ -uint32_t ts_language_symbol_count(const TSLanguage *); - -/** - * Get a node type string for the given numerical id. - */ -const char *ts_language_symbol_name(const TSLanguage *, TSSymbol); - -/** - * Get the numerical id for the given node type string. - */ -TSSymbol ts_language_symbol_for_name( - const TSLanguage *self, - const char *string, - uint32_t length, - bool is_named -); - -/** - * Get the number of distinct field names in the language. - */ -uint32_t ts_language_field_count(const TSLanguage *); - -/** - * Get the field name string for the given numerical id. - */ -const char *ts_language_field_name_for_id(const TSLanguage *, TSFieldId); - -/** - * Get the numerical id for the given field name string. - */ -TSFieldId ts_language_field_id_for_name(const TSLanguage *, const char *, uint32_t); - -/** - * Check whether the given node type id belongs to named nodes, anonymous nodes, - * or a hidden nodes. - * - * See also `ts_node_is_named`. Hidden nodes are never returned from the API. - */ -TSSymbolType ts_language_symbol_type(const TSLanguage *, TSSymbol); - -/** - * Get the ABI version number for this language. This version number is used - * to ensure that languages were generated by a compatible version of - * Tree-sitter. - * - * See also `ts_parser_set_language`. - */ -uint32_t ts_language_version(const TSLanguage *); - -/**********************************/ -/* Section - Global Configuration */ -/**********************************/ - -/** - * Set the allocation functions used by the library. - * - * By default, Tree-sitter uses the standard libc allocation functions, - * but aborts the process when an allocation fails. This function lets - * you supply alternative allocation functions at runtime. - * - * If you pass `NULL` for any parameter, Tree-sitter will switch back to - * its default implementation of that function. - * - * If you call this function after the library has already been used, then - * you must ensure that either: - * 1. All the existing objects have been freed. - * 2. The new allocator shares its state with the old one, so it is capable - * of freeing memory that was allocated by the old allocator. - */ -void ts_set_allocator( - void *(*new_malloc)(size_t), - void *(*new_calloc)(size_t, size_t), - void *(*new_realloc)(void *, size_t), - void (*new_free)(void *) -); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_API_H_ -