From 7399069d597b1e1c99056f0c088c5290d1b86b23 Mon Sep 17 00:00:00 2001 From: Andrew Elliot Date: Tue, 8 Oct 2024 02:15:11 +0800 Subject: [PATCH] (treesitter) Add effect syntax highlighting --- utils/tree-sitter-yolang/grammar.js | 54 +- .../tree-sitter-yolang/queries/highlights.scm | 36 +- utils/tree-sitter-yolang/src/grammar.json | 1647 +- utils/tree-sitter-yolang/src/node-types.json | 213 +- utils/tree-sitter-yolang/src/parser.c | 189166 ++++++++------- 5 files changed, 100544 insertions(+), 90572 deletions(-) diff --git a/utils/tree-sitter-yolang/grammar.js b/utils/tree-sitter-yolang/grammar.js index 050d7a6..f56a1ce 100644 --- a/utils/tree-sitter-yolang/grammar.js +++ b/utils/tree-sitter-yolang/grammar.js @@ -72,7 +72,8 @@ module.exports = grammar({ declaration: $ => choice( $.data, $.let_binding, - $.fixity + $.fixity, + $.effect, ), // type declaration @@ -90,28 +91,33 @@ module.exports = grammar({ ))), // type expression - type: $ => prec.right(1, seq( + type: $ => prec.left(1, seq( choice( seq("forall", repeat1(choice( alias($.id, $.type_var_id), // TODO: refine semantic of ":", after it should be kind expression instead of type wrap("(", ")", seq(alias($.id, $.type_var_id), choice("=", "~", ":"), $.type)) )),".", $.type), - alias("->", $.type_reserved_function), + alias(choice("->", "=>"), $.type_reserved_operator), $.operator, $.type_var, $.type_unit, $.type_tuple, wrap("(", ")", $.type), + $.handler_type, + $.record_type, $.primitive_type ), repeat(choice($.type, $.type_effect_suffix)), )), + handler_type: $ => wrap("{", "}", seq(sep1(",", seq(optional(".."), $.type)), ";;", $.type)), + record_type: $ => wrapsep("{", "}", ",", seq(alias($.identifier, $.record_field), "=", $.type)), + // type effect suffix type_effect_suffix: $ => choice( alias(seq("!", token.immediate(/'?[A-Za-z_]\w*/)), $.type_eff_name), - wrapsep("!{", "}", ",", choice($.identifier, $.type_implicit_var)) + wrapsep("!{", "}", ",", choice($.type, seq("..", choice($.identifier, $.type_implicit_var)))) ), type_unit: _$ => /\(\s*\)/, type_tuple: $ => wrap("(", ")", sep1(",", $.type)), @@ -149,8 +155,8 @@ module.exports = grammar({ // let binding includes effect block, value definition and function definition let_binding: $ => statement("let", choice($.id, $.force_id, $.operator_id), optional(seq(":", $.type)), choice( seq("=", $.expression), - repeat1(seq("|", sep1(",", $.pattern), "=", $.expression)), - seq("do", wrapsep("{", "}", ";;", $.id)) + repeat1(seq("|", sep1(",", $.or_pattern), "=", $.expression)), + seq("do", choice($.do_block, $.expression)) )), // expression @@ -158,19 +164,33 @@ module.exports = grammar({ choice( $.macro_id, $.identifier, $.number, $.string, $.string_cons, $.operator, + $.handler, seq("forall", repeat1($.id), ".", $.expression), - seq("let", sep1(",", seq($.pattern, optional(seq("or", $.expression)), "=", $.expression)), "in", $.expression), - seq(wrapsep1("|", "|", ",", $.pattern), $.expression), - seq(optional(seq("with", sep1(",", $.identifier))), "do", wrapsep("{", "}", ";;", choice( - seq("let", $.pattern, "<-", $.expression), - seq("const", sep1(",", seq($.pattern, optional(seq("or", $.expression)), "=", $.expression))), - $.expression - ))), - wrapsep1("[", "]", "|", seq(sep1(",", $.pattern), "=", $.expression)), + seq("let", sep1(",", seq($.or_pattern, "=", $.expression)), "in", $.expression), + seq(wrapsep1("|", "|", ",", $.or_pattern), $.expression), + seq(optional(seq("with", sep1(",", $.expression))), "do", choice($.do_block, $.expression)), + wrapsep1("[", "]", "|", seq(sep1(",", $.or_pattern), "=", $.expression)), wrapsep("(", ")", ",", $.expression), ), optional(choice(seq(":", $.type), repeat1($.expression))) )), + or_pattern: $ => seq($.pattern, optional(seq("or", $.expression))), + + do_block: $ => wrapsep("{", "}", ";;", choice( + seq("let", $.or_pattern, "<-", $.expression), + seq("const", sep1(",", seq($.or_pattern, "=", $.expression))), + $.expression + )), + + handler: $ => prec(1, seq("handler", choice( + seq(sep1(",", alias($.id, $.method)), alias($.id, $.handler_resume), "=", $.expression), + seq(optional(seq("forall", repeat(choice($.id, $.force_id)))), wrapsep1("|", "|", ",", $.type), wrapsep("{", "}", ",", + seq(alias($.id, $.method), alias($.id, $.handler_resume), choice( + seq("=", $.expression), + repeat1(seq("|", sep1(",", $.or_pattern), "=", $.expression))) + ))) + ))), + // definition of pattern pattern: $ => prec.left(1, seq( choice( @@ -192,6 +212,12 @@ module.exports = grammar({ pattern_unit: _$ => /\(\s*\)/, + // effect + effect: $ => statement("effect", choice( + seq(optional(seq(repeat($.id), ".")), sep1(",", alias($.id, $.method)), ":", $.type), + seq(repeat1($.id), wrapsep("{", "}", ",", seq(alias($.id, $.method), ":", $.type))) + )), + // definition of terminal symbol hex_integer: _$ => /0[xX][_A-Za-z0-9]+/, octet_integer: _$ => /0[oO][_0-7]+/, diff --git a/utils/tree-sitter-yolang/queries/highlights.scm b/utils/tree-sitter-yolang/queries/highlights.scm index f0054a0..ceae13d 100644 --- a/utils/tree-sitter-yolang/queries/highlights.scm +++ b/utils/tree-sitter-yolang/queries/highlights.scm @@ -29,17 +29,23 @@ "#!(" @type.builtin ")" @type.builtin) -(type "forall" @keyword) +(record_field) @variable.member + +(type ["forall" ":" "."] @keyword) (type "=" @type.builtin) (type "~" @type.builtin) -(type ":" @keyword.operator) (type_unit) @type.builtin (type_tuple "(" @type.builtin "," ")" @type.builtin) (type_effect_suffix "!{" @keyword.operator "}" @keyword.operator) (type_eff_name) @type.builtin -(type_reserved_function) @type.builtin +(type_reserved_operator) @type.builtin (type (operator) @operator) (primitive_compound (operator) @operator) +(type_effect_suffix ".." @keyword) +(handler_type [";;" ".."] @keyword) +(handler_type "{" @type.builtin "}" @type.builtin) +(record_type "=" @keyword) +(record_type "{" @type.builtin "}" @type.builtin) (primitive_reverse_atom_prim) @type.builtin (primitive_reverse_atom) @keyword.operator @@ -54,17 +60,16 @@ (data "{" @keyword.operator "," @keyword.operator "}" @keyword.operator) ;; binding -(let_binding "let" @keyword) -(let_binding "=" @keyword.operator) -(let_binding "|" @keyword.operator) +(let_binding ["let" "do" "=" "|"] @keyword) ;; expression (expression (number) @number) -(expression ":" @keyword.operator) -(expression "forall" @keyword "." @keyword.operator) -(expression ["<-" "|" "="] @keyword.operator) -(expression ["let" "do" "with" "in" "or" "const"] @keyword) +(expression "forall" @keyword "." @keyword) +(expression [":" "|" "[" "]"] @keyword) +(do_block ["let" "const" "<-" "|" "="] @keyword) +(expression ["let" "do" "with" "in" "or"] @keyword) (string_cons (string_cons_var) @attribute) +(handler ["forall" "|"] @keyword) ;; operator fixity (fixity "_" @keyword.operator) @@ -81,6 +86,17 @@ (pattern "@" "(" @keyword.operator "," ")" @keyword.operator) (pattern (number) @number) (pattern "!" @keyword.operator "->" @keyword.operator) +(or_pattern "or" @keyword) + +;; effects +(effect "effect" @keyword) +(effect ["." ":"] @keyword.operator) +(effect "{" @keyword "}" @keyword) +(effect (method) @variable.member) +(handler "handler" @keyword) +(handler (handler_resume) @variable.builtin) +(handler "=" @keyword) +(handler (method) @variable.member) ;; macro (macro_id) @variable.parameter.builtin diff --git a/utils/tree-sitter-yolang/src/grammar.json b/utils/tree-sitter-yolang/src/grammar.json index 848c29f..27b7583 100644 --- a/utils/tree-sitter-yolang/src/grammar.json +++ b/utils/tree-sitter-yolang/src/grammar.json @@ -1100,6 +1100,10 @@ { "type": "SYMBOL", "name": "fixity" + }, + { + "type": "SYMBOL", + "name": "effect" } ] }, @@ -1321,7 +1325,7 @@ ] }, "type": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 1, "content": { "type": "SEQ", @@ -1414,11 +1418,20 @@ { "type": "ALIAS", "content": { - "type": "STRING", - "value": "->" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "=>" + } + ] }, "named": true, - "value": "type_reserved_function" + "value": "type_reserved_operator" }, { "type": "SYMBOL", @@ -1453,6 +1466,14 @@ } ] }, + { + "type": "SYMBOL", + "name": "handler_type" + }, + { + "type": "SYMBOL", + "name": "record_type" + }, { "type": "SYMBOL", "name": "primitive_type" @@ -1478,6 +1499,173 @@ ] } }, + "handler_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";;" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "record_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "record_field" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "record_field" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, "type_effect_suffix": { "type": "CHOICE", "members": [ @@ -1520,11 +1708,29 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "type" }, { - "type": "SYMBOL", - "name": "type_implicit_var" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "type_implicit_var" + } + ] + } + ] } ] }, @@ -1542,11 +1748,29 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "type" }, { - "type": "SYMBOL", - "name": "type_implicit_var" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "type_implicit_var" + } + ] + } + ] } ] } @@ -2018,7 +2242,7 @@ "members": [ { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" }, { "type": "REPEAT", @@ -2031,7 +2255,7 @@ }, { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" } ] } @@ -2057,48 +2281,15 @@ "value": "do" }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "id" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";;" - }, - { - "type": "SYMBOL", - "name": "id" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "do_block" }, { - "type": "STRING", - "value": "}" + "type": "SYMBOL", + "name": "expression" } ] } @@ -2145,6 +2336,10 @@ "type": "SYMBOL", "name": "operator" }, + { + "type": "SYMBOL", + "name": "handler" + }, { "type": "SEQ", "members": [ @@ -2184,28 +2379,7 @@ "members": [ { "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] + "name": "or_pattern" }, { "type": "STRING", @@ -2231,28 +2405,7 @@ "members": [ { "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] + "name": "or_pattern" }, { "type": "STRING", @@ -2294,7 +2447,7 @@ "members": [ { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" }, { "type": "REPEAT", @@ -2307,7 +2460,7 @@ }, { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" } ] } @@ -2344,7 +2497,7 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "expression" }, { "type": "REPEAT", @@ -2357,7 +2510,7 @@ }, { "type": "SYMBOL", - "name": "identifier" + "name": "expression" } ] } @@ -2376,149 +2529,39 @@ "value": "do" }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{" + "type": "SYMBOL", + "name": "do_block" }, { - "type": "CHOICE", + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", "members": [ { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "const" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - ] - } - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "or_pattern" }, { "type": "REPEAT", @@ -2527,190 +2570,11 @@ "members": [ { "type": "STRING", - "value": ";;" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "const" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - ] - } - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," + "value": "," }, { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" } ] } @@ -2744,7 +2608,7 @@ "members": [ { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" }, { "type": "REPEAT", @@ -2757,7 +2621,7 @@ }, { "type": "SYMBOL", - "name": "pattern" + "name": "or_pattern" } ] } @@ -2772,97 +2636,706 @@ "type": "SYMBOL", "name": "expression" } - ] - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" + ] + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "or_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "or" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "do_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "<-" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";;" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "<-" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "handler": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "handler" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + } + ] + } + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "handler_resume" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "forall" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "id" + }, + { + "type": "SYMBOL", + "name": "force_id" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "handler_resume" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "or_pattern" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "handler_resume" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "or_pattern" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + ] + } + ] + } + } + ] }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } + "type": "BLANK" } ] }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ { "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "type" + "value": "}" } ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "expression" - } } ] - }, - { - "type": "BLANK" } ] } @@ -3121,6 +3594,190 @@ "type": "PATTERN", "value": "\\(\\s*\\)" }, + "effect": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "effect" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "id" + } + }, + { + "type": "STRING", + "value": "." + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "id" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "id" + }, + "named": true, + "value": "method" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": ";;" + } + ] + }, "hex_integer": { "type": "PATTERN", "value": "0[xX][_A-Za-z0-9]+" diff --git a/utils/tree-sitter-yolang/src/node-types.json b/utils/tree-sitter-yolang/src/node-types.json index dd95ff6..f2d7dba 100644 --- a/utils/tree-sitter-yolang/src/node-types.json +++ b/utils/tree-sitter-yolang/src/node-types.json @@ -58,6 +58,10 @@ "type": "data", "named": true }, + { + "type": "effect", + "named": true + }, { "type": "fixity", "named": true @@ -69,6 +73,48 @@ ] } }, + { + "type": "do_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "or_pattern", + "named": true + } + ] + } + }, + { + "type": "effect", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "id", + "named": true + }, + { + "type": "method", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, { "type": "expression", "named": true, @@ -77,10 +123,18 @@ "multiple": true, "required": false, "types": [ + { + "type": "do_block", + "named": true + }, { "type": "expression", "named": true }, + { + "type": "handler", + "named": true + }, { "type": "id", "named": true @@ -102,7 +156,7 @@ "named": true }, { - "type": "pattern", + "type": "or_pattern", "named": true }, { @@ -135,6 +189,60 @@ ] } }, + { + "type": "handler", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "force_id", + "named": true + }, + { + "type": "handler_resume", + "named": true + }, + { + "type": "id", + "named": true + }, + { + "type": "method", + "named": true + }, + { + "type": "or_pattern", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "handler_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, { "type": "identifier", "named": true, @@ -185,6 +293,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "do_block", + "named": true + }, { "type": "expression", "named": true @@ -202,7 +314,7 @@ "named": true }, { - "type": "pattern", + "type": "or_pattern", "named": true }, { @@ -308,6 +420,25 @@ ] } }, + { + "type": "or_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + }, { "type": "pattern", "named": true, @@ -482,6 +613,48 @@ ] } }, + { + "type": "record_field", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "force_id", + "named": true + }, + { + "type": "id", + "named": true + }, + { + "type": "qualified_id", + "named": true + } + ] + } + }, + { + "type": "record_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "record_field", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, { "type": "source_file", "named": true, @@ -547,6 +720,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "handler_type", + "named": true + }, { "type": "operator", "named": true @@ -555,6 +732,10 @@ "type": "primitive_type", "named": true }, + { + "type": "record_type", + "named": true + }, { "type": "type", "named": true @@ -564,7 +745,7 @@ "named": true }, { - "type": "type_reserved_function", + "type": "type_reserved_operator", "named": true }, { @@ -598,6 +779,10 @@ "type": "identifier", "named": true }, + { + "type": "type", + "named": true + }, { "type": "type_eff_name", "named": true @@ -766,6 +951,10 @@ "type": ".", "named": false }, + { + "type": "..", + "named": false + }, { "type": ":", "named": false @@ -826,6 +1015,10 @@ "type": "do", "named": false }, + { + "type": "effect", + "named": false + }, { "type": "exclude", "named": false @@ -846,6 +1039,14 @@ "type": "force_id", "named": true }, + { + "type": "handler", + "named": false + }, + { + "type": "handler_resume", + "named": true + }, { "type": "hex_integer", "named": true @@ -870,6 +1071,10 @@ "type": "macro_id", "named": true }, + { + "type": "method", + "named": true + }, { "type": "module", "named": false @@ -955,7 +1160,7 @@ "named": true }, { - "type": "type_reserved_function", + "type": "type_reserved_operator", "named": true }, { diff --git a/utils/tree-sitter-yolang/src/parser.c b/utils/tree-sitter-yolang/src/parser.c index e308cd2..84e2f68 100644 --- a/utils/tree-sitter-yolang/src/parser.c +++ b/utils/tree-sitter-yolang/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4843 +#define STATE_COUNT 5120 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 129 -#define ALIAS_COUNT 14 -#define TOKEN_COUNT 67 +#define SYMBOL_COUNT 145 +#define ALIAS_COUNT 16 +#define TOKEN_COUNT 71 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 16 -#define PRODUCTION_ID_COUNT 23 +#define MAX_ALIAS_SEQUENCE_LENGTH 14 +#define PRODUCTION_ID_COUNT 33 enum ts_symbol_identifiers { anon_sym_module = 1, @@ -50,122 +50,140 @@ enum ts_symbol_identifiers { anon_sym_TILDE = 24, anon_sym_DOT = 25, anon_sym_DASH_GT = 26, - anon_sym_BANG = 27, - aux_sym_type_effect_suffix_token1 = 28, - anon_sym_BANG_LBRACE = 29, - aux_sym_type_unit_token1 = 30, - sym_type_implicit_var = 31, - anon_sym_POUND_BANG_LPAREN = 32, - anon_sym_POUND_BANG = 33, - aux_sym_primitive_reverse_atom_token1 = 34, - anon_sym_LBRACK = 35, - anon_sym_SEMI = 36, - anon_sym_RBRACK = 37, - anon_sym_fixity = 38, - aux_sym_fixity_token1 = 39, - anon_sym__ = 40, - anon_sym_infix = 41, - anon_sym_postfix = 42, - anon_sym_prefix = 43, - anon_sym_let = 44, - anon_sym_do = 45, - anon_sym_or = 46, - anon_sym_in = 47, - anon_sym_with = 48, - anon_sym_LT_DASH = 49, - anon_sym_const = 50, - anon_sym_AT = 51, - anon_sym_QMARK = 52, - sym_hex_integer = 53, - sym_octet_integer = 54, - aux_sym_integer_token1 = 55, - sym_floating = 56, - aux_sym_number_token1 = 57, - anon_sym_DQUOTE = 58, - aux_sym_string_token1 = 59, - sym__escape_sequence = 60, - sym_operator = 61, - sym_operator_id = 62, - sym_macro_id = 63, - sym_id = 64, - sym_qualified_id = 65, - sym_force_id = 66, - sym_source_file = 67, - sym__top = 68, - sym_module = 69, - sym_module_attr = 70, - sym_module_export = 71, - sym_use = 72, - sym_use_piece = 73, - sym_declaration = 74, - sym_data = 75, - sym_type = 76, - sym_type_effect_suffix = 77, - sym_type_unit = 78, - sym_type_tuple = 79, - sym_type_var = 80, - sym_primitive_type = 81, - sym_primitive_reverse_atom = 82, - sym_primitive_reverse_prim = 83, - sym_primitive_compound = 84, - sym_fixity = 85, - sym_let_binding = 86, - sym_expression = 87, - sym_pattern = 88, - sym_pattern_var = 89, - sym_pattern_cons = 90, - sym_pattern_unit = 91, - sym_integer = 92, - sym_number = 93, - sym_string = 94, - sym_string_cons = 95, - sym_identifier = 96, - aux_sym_source_file_repeat1 = 97, - aux_sym_module_repeat1 = 98, - aux_sym_module_repeat2 = 99, - aux_sym_module_repeat3 = 100, - aux_sym_module_export_repeat1 = 101, - aux_sym_module_export_repeat2 = 102, - aux_sym_use_piece_repeat1 = 103, - aux_sym_use_piece_repeat2 = 104, - aux_sym_data_repeat1 = 105, - aux_sym_data_repeat2 = 106, - aux_sym_data_repeat3 = 107, - aux_sym_data_repeat4 = 108, - aux_sym_type_repeat1 = 109, - aux_sym_type_repeat2 = 110, - aux_sym_type_effect_suffix_repeat1 = 111, - aux_sym_type_tuple_repeat1 = 112, - aux_sym_primitive_type_repeat1 = 113, - aux_sym_primitive_type_repeat2 = 114, - aux_sym_primitive_compound_repeat1 = 115, - aux_sym_fixity_repeat1 = 116, - aux_sym_fixity_repeat2 = 117, - aux_sym_let_binding_repeat1 = 118, - aux_sym_let_binding_repeat2 = 119, - aux_sym_let_binding_repeat3 = 120, - aux_sym_expression_repeat1 = 121, - aux_sym_expression_repeat2 = 122, - aux_sym_expression_repeat3 = 123, - aux_sym_expression_repeat4 = 124, - aux_sym_expression_repeat5 = 125, - aux_sym_expression_repeat6 = 126, - aux_sym_pattern_repeat1 = 127, - aux_sym_string_repeat1 = 128, - alias_sym_data_constructor = 129, - alias_sym_newtype_evidence = 130, - alias_sym_newtype_reverse_evidence = 131, - alias_sym_pattern_wildcard = 132, - alias_sym_primitive_cons = 133, - alias_sym_primitive_reverse_atom_prim = 134, - alias_sym_string_cons_var = 135, - alias_sym_type_constructor = 136, - alias_sym_type_param = 137, - alias_sym_type_reserved_function = 138, - alias_sym_type_var_id = 139, - alias_sym_use_keyword_exclude = 140, - alias_sym_use_keyword_star = 141, - alias_sym_use_path = 142, + anon_sym_EQ_GT = 27, + anon_sym_DOT_DOT = 28, + anon_sym_BANG = 29, + aux_sym_type_effect_suffix_token1 = 30, + anon_sym_BANG_LBRACE = 31, + aux_sym_type_unit_token1 = 32, + sym_type_implicit_var = 33, + anon_sym_POUND_BANG_LPAREN = 34, + anon_sym_POUND_BANG = 35, + aux_sym_primitive_reverse_atom_token1 = 36, + anon_sym_LBRACK = 37, + anon_sym_SEMI = 38, + anon_sym_RBRACK = 39, + anon_sym_fixity = 40, + aux_sym_fixity_token1 = 41, + anon_sym__ = 42, + anon_sym_infix = 43, + anon_sym_postfix = 44, + anon_sym_prefix = 45, + anon_sym_let = 46, + anon_sym_do = 47, + anon_sym_in = 48, + anon_sym_with = 49, + anon_sym_or = 50, + anon_sym_LT_DASH = 51, + anon_sym_const = 52, + anon_sym_handler = 53, + anon_sym_AT = 54, + anon_sym_QMARK = 55, + anon_sym_effect = 56, + sym_hex_integer = 57, + sym_octet_integer = 58, + aux_sym_integer_token1 = 59, + sym_floating = 60, + aux_sym_number_token1 = 61, + anon_sym_DQUOTE = 62, + aux_sym_string_token1 = 63, + sym__escape_sequence = 64, + sym_operator = 65, + sym_operator_id = 66, + sym_macro_id = 67, + sym_id = 68, + sym_qualified_id = 69, + sym_force_id = 70, + sym_source_file = 71, + sym__top = 72, + sym_module = 73, + sym_module_attr = 74, + sym_module_export = 75, + sym_use = 76, + sym_use_piece = 77, + sym_declaration = 78, + sym_data = 79, + sym_type = 80, + sym_handler_type = 81, + sym_record_type = 82, + sym_type_effect_suffix = 83, + sym_type_unit = 84, + sym_type_tuple = 85, + sym_type_var = 86, + sym_primitive_type = 87, + sym_primitive_reverse_atom = 88, + sym_primitive_reverse_prim = 89, + sym_primitive_compound = 90, + sym_fixity = 91, + sym_let_binding = 92, + sym_expression = 93, + sym_or_pattern = 94, + sym_do_block = 95, + sym_handler = 96, + sym_pattern = 97, + sym_pattern_var = 98, + sym_pattern_cons = 99, + sym_pattern_unit = 100, + sym_effect = 101, + sym_integer = 102, + sym_number = 103, + sym_string = 104, + sym_string_cons = 105, + sym_identifier = 106, + aux_sym_source_file_repeat1 = 107, + aux_sym_module_repeat1 = 108, + aux_sym_module_repeat2 = 109, + aux_sym_module_repeat3 = 110, + aux_sym_module_export_repeat1 = 111, + aux_sym_module_export_repeat2 = 112, + aux_sym_use_piece_repeat1 = 113, + aux_sym_use_piece_repeat2 = 114, + aux_sym_data_repeat1 = 115, + aux_sym_data_repeat2 = 116, + aux_sym_data_repeat3 = 117, + aux_sym_data_repeat4 = 118, + aux_sym_type_repeat1 = 119, + aux_sym_type_repeat2 = 120, + aux_sym_handler_type_repeat1 = 121, + aux_sym_record_type_repeat1 = 122, + aux_sym_type_effect_suffix_repeat1 = 123, + aux_sym_type_tuple_repeat1 = 124, + aux_sym_primitive_type_repeat1 = 125, + aux_sym_primitive_type_repeat2 = 126, + aux_sym_primitive_compound_repeat1 = 127, + aux_sym_fixity_repeat1 = 128, + aux_sym_fixity_repeat2 = 129, + aux_sym_let_binding_repeat1 = 130, + aux_sym_let_binding_repeat2 = 131, + aux_sym_expression_repeat1 = 132, + aux_sym_expression_repeat2 = 133, + aux_sym_expression_repeat3 = 134, + aux_sym_expression_repeat4 = 135, + aux_sym_expression_repeat5 = 136, + aux_sym_do_block_repeat1 = 137, + aux_sym_handler_repeat1 = 138, + aux_sym_handler_repeat2 = 139, + aux_sym_handler_repeat3 = 140, + aux_sym_pattern_repeat1 = 141, + aux_sym_pattern_repeat2 = 142, + aux_sym_effect_repeat1 = 143, + aux_sym_string_repeat1 = 144, + alias_sym_data_constructor = 145, + alias_sym_handler_resume = 146, + alias_sym_method = 147, + alias_sym_newtype_evidence = 148, + alias_sym_newtype_reverse_evidence = 149, + alias_sym_pattern_wildcard = 150, + alias_sym_primitive_cons = 151, + alias_sym_primitive_reverse_atom_prim = 152, + alias_sym_record_field = 153, + alias_sym_string_cons_var = 154, + alias_sym_type_constructor = 155, + alias_sym_type_param = 156, + alias_sym_type_var_id = 157, + alias_sym_use_keyword_exclude = 158, + alias_sym_use_keyword_star = 159, + alias_sym_use_path = 160, }; static const char * const ts_symbol_names[] = { @@ -196,6 +214,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_TILDE] = "~", [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", + [anon_sym_EQ_GT] = "type_reserved_operator", + [anon_sym_DOT_DOT] = "..", [anon_sym_BANG] = "!", [aux_sym_type_effect_suffix_token1] = "type_eff_name", [anon_sym_BANG_LBRACE] = "!{", @@ -215,13 +235,15 @@ static const char * const ts_symbol_names[] = { [anon_sym_prefix] = "prefix", [anon_sym_let] = "let", [anon_sym_do] = "do", - [anon_sym_or] = "or", [anon_sym_in] = "in", [anon_sym_with] = "with", + [anon_sym_or] = "or", [anon_sym_LT_DASH] = "<-", [anon_sym_const] = "const", + [anon_sym_handler] = "handler", [anon_sym_AT] = "@", [anon_sym_QMARK] = "\?", + [anon_sym_effect] = "effect", [sym_hex_integer] = "hex_integer", [sym_octet_integer] = "octet_integer", [aux_sym_integer_token1] = "integer_token1", @@ -246,6 +268,8 @@ static const char * const ts_symbol_names[] = { [sym_declaration] = "declaration", [sym_data] = "data", [sym_type] = "type", + [sym_handler_type] = "handler_type", + [sym_record_type] = "record_type", [sym_type_effect_suffix] = "type_effect_suffix", [sym_type_unit] = "type_unit", [sym_type_tuple] = "type_tuple", @@ -257,10 +281,14 @@ static const char * const ts_symbol_names[] = { [sym_fixity] = "fixity", [sym_let_binding] = "let_binding", [sym_expression] = "expression", + [sym_or_pattern] = "or_pattern", + [sym_do_block] = "do_block", + [sym_handler] = "handler", [sym_pattern] = "pattern", [sym_pattern_var] = "pattern_var", [sym_pattern_cons] = "pattern_cons", [sym_pattern_unit] = "pattern_unit", + [sym_effect] = "effect", [sym_integer] = "integer", [sym_number] = "number", [sym_string] = "string", @@ -280,6 +308,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_data_repeat4] = "data_repeat4", [aux_sym_type_repeat1] = "type_repeat1", [aux_sym_type_repeat2] = "type_repeat2", + [aux_sym_handler_type_repeat1] = "handler_type_repeat1", + [aux_sym_record_type_repeat1] = "record_type_repeat1", [aux_sym_type_effect_suffix_repeat1] = "type_effect_suffix_repeat1", [aux_sym_type_tuple_repeat1] = "type_tuple_repeat1", [aux_sym_primitive_type_repeat1] = "primitive_type_repeat1", @@ -289,25 +319,31 @@ static const char * const ts_symbol_names[] = { [aux_sym_fixity_repeat2] = "fixity_repeat2", [aux_sym_let_binding_repeat1] = "let_binding_repeat1", [aux_sym_let_binding_repeat2] = "let_binding_repeat2", - [aux_sym_let_binding_repeat3] = "let_binding_repeat3", [aux_sym_expression_repeat1] = "expression_repeat1", [aux_sym_expression_repeat2] = "expression_repeat2", [aux_sym_expression_repeat3] = "expression_repeat3", [aux_sym_expression_repeat4] = "expression_repeat4", [aux_sym_expression_repeat5] = "expression_repeat5", - [aux_sym_expression_repeat6] = "expression_repeat6", + [aux_sym_do_block_repeat1] = "do_block_repeat1", + [aux_sym_handler_repeat1] = "handler_repeat1", + [aux_sym_handler_repeat2] = "handler_repeat2", + [aux_sym_handler_repeat3] = "handler_repeat3", [aux_sym_pattern_repeat1] = "pattern_repeat1", + [aux_sym_pattern_repeat2] = "pattern_repeat2", + [aux_sym_effect_repeat1] = "effect_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [alias_sym_data_constructor] = "data_constructor", + [alias_sym_handler_resume] = "handler_resume", + [alias_sym_method] = "method", [alias_sym_newtype_evidence] = "newtype_evidence", [alias_sym_newtype_reverse_evidence] = "newtype_reverse_evidence", [alias_sym_pattern_wildcard] = "pattern_wildcard", [alias_sym_primitive_cons] = "primitive_cons", [alias_sym_primitive_reverse_atom_prim] = "primitive_reverse_atom_prim", + [alias_sym_record_field] = "record_field", [alias_sym_string_cons_var] = "string_cons_var", [alias_sym_type_constructor] = "type_constructor", [alias_sym_type_param] = "type_param", - [alias_sym_type_reserved_function] = "type_reserved_function", [alias_sym_type_var_id] = "type_var_id", [alias_sym_use_keyword_exclude] = "use_keyword_exclude", [alias_sym_use_keyword_star] = "use_keyword_star", @@ -342,6 +378,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_BANG] = anon_sym_BANG, [aux_sym_type_effect_suffix_token1] = aux_sym_type_effect_suffix_token1, [anon_sym_BANG_LBRACE] = anon_sym_BANG_LBRACE, @@ -361,13 +399,15 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_prefix] = anon_sym_prefix, [anon_sym_let] = anon_sym_let, [anon_sym_do] = anon_sym_do, - [anon_sym_or] = anon_sym_or, [anon_sym_in] = anon_sym_in, [anon_sym_with] = anon_sym_with, + [anon_sym_or] = anon_sym_or, [anon_sym_LT_DASH] = anon_sym_LT_DASH, [anon_sym_const] = anon_sym_const, + [anon_sym_handler] = anon_sym_handler, [anon_sym_AT] = anon_sym_AT, [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_effect] = anon_sym_effect, [sym_hex_integer] = sym_hex_integer, [sym_octet_integer] = sym_octet_integer, [aux_sym_integer_token1] = aux_sym_integer_token1, @@ -392,6 +432,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_declaration] = sym_declaration, [sym_data] = sym_data, [sym_type] = sym_type, + [sym_handler_type] = sym_handler_type, + [sym_record_type] = sym_record_type, [sym_type_effect_suffix] = sym_type_effect_suffix, [sym_type_unit] = sym_type_unit, [sym_type_tuple] = sym_type_tuple, @@ -403,10 +445,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_fixity] = sym_fixity, [sym_let_binding] = sym_let_binding, [sym_expression] = sym_expression, + [sym_or_pattern] = sym_or_pattern, + [sym_do_block] = sym_do_block, + [sym_handler] = sym_handler, [sym_pattern] = sym_pattern, [sym_pattern_var] = sym_pattern_var, [sym_pattern_cons] = sym_pattern_cons, [sym_pattern_unit] = sym_pattern_unit, + [sym_effect] = sym_effect, [sym_integer] = sym_integer, [sym_number] = sym_number, [sym_string] = sym_string, @@ -426,6 +472,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_data_repeat4] = aux_sym_data_repeat4, [aux_sym_type_repeat1] = aux_sym_type_repeat1, [aux_sym_type_repeat2] = aux_sym_type_repeat2, + [aux_sym_handler_type_repeat1] = aux_sym_handler_type_repeat1, + [aux_sym_record_type_repeat1] = aux_sym_record_type_repeat1, [aux_sym_type_effect_suffix_repeat1] = aux_sym_type_effect_suffix_repeat1, [aux_sym_type_tuple_repeat1] = aux_sym_type_tuple_repeat1, [aux_sym_primitive_type_repeat1] = aux_sym_primitive_type_repeat1, @@ -435,25 +483,31 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_fixity_repeat2] = aux_sym_fixity_repeat2, [aux_sym_let_binding_repeat1] = aux_sym_let_binding_repeat1, [aux_sym_let_binding_repeat2] = aux_sym_let_binding_repeat2, - [aux_sym_let_binding_repeat3] = aux_sym_let_binding_repeat3, [aux_sym_expression_repeat1] = aux_sym_expression_repeat1, [aux_sym_expression_repeat2] = aux_sym_expression_repeat2, [aux_sym_expression_repeat3] = aux_sym_expression_repeat3, [aux_sym_expression_repeat4] = aux_sym_expression_repeat4, [aux_sym_expression_repeat5] = aux_sym_expression_repeat5, - [aux_sym_expression_repeat6] = aux_sym_expression_repeat6, + [aux_sym_do_block_repeat1] = aux_sym_do_block_repeat1, + [aux_sym_handler_repeat1] = aux_sym_handler_repeat1, + [aux_sym_handler_repeat2] = aux_sym_handler_repeat2, + [aux_sym_handler_repeat3] = aux_sym_handler_repeat3, [aux_sym_pattern_repeat1] = aux_sym_pattern_repeat1, + [aux_sym_pattern_repeat2] = aux_sym_pattern_repeat2, + [aux_sym_effect_repeat1] = aux_sym_effect_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [alias_sym_data_constructor] = alias_sym_data_constructor, + [alias_sym_handler_resume] = alias_sym_handler_resume, + [alias_sym_method] = alias_sym_method, [alias_sym_newtype_evidence] = alias_sym_newtype_evidence, [alias_sym_newtype_reverse_evidence] = alias_sym_newtype_reverse_evidence, [alias_sym_pattern_wildcard] = alias_sym_pattern_wildcard, [alias_sym_primitive_cons] = alias_sym_primitive_cons, [alias_sym_primitive_reverse_atom_prim] = alias_sym_primitive_reverse_atom_prim, + [alias_sym_record_field] = alias_sym_record_field, [alias_sym_string_cons_var] = alias_sym_string_cons_var, [alias_sym_type_constructor] = alias_sym_type_constructor, [alias_sym_type_param] = alias_sym_type_param, - [alias_sym_type_reserved_function] = alias_sym_type_reserved_function, [alias_sym_type_var_id] = alias_sym_type_var_id, [alias_sym_use_keyword_exclude] = alias_sym_use_keyword_exclude, [alias_sym_use_keyword_star] = alias_sym_use_keyword_star, @@ -569,6 +623,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, [anon_sym_BANG] = { .visible = true, .named = false, @@ -645,15 +707,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_or] = { + [anon_sym_in] = { .visible = true, .named = false, }, - [anon_sym_in] = { + [anon_sym_with] = { .visible = true, .named = false, }, - [anon_sym_with] = { + [anon_sym_or] = { .visible = true, .named = false, }, @@ -665,6 +727,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_handler] = { + .visible = true, + .named = false, + }, [anon_sym_AT] = { .visible = true, .named = false, @@ -673,6 +739,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_effect] = { + .visible = true, + .named = false, + }, [sym_hex_integer] = { .visible = true, .named = true, @@ -769,6 +839,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_handler_type] = { + .visible = true, + .named = true, + }, + [sym_record_type] = { + .visible = true, + .named = true, + }, [sym_type_effect_suffix] = { .visible = true, .named = true, @@ -813,6 +891,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_or_pattern] = { + .visible = true, + .named = true, + }, + [sym_do_block] = { + .visible = true, + .named = true, + }, + [sym_handler] = { + .visible = true, + .named = true, + }, [sym_pattern] = { .visible = true, .named = true, @@ -829,6 +919,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_effect] = { + .visible = true, + .named = true, + }, [sym_integer] = { .visible = true, .named = true, @@ -905,6 +999,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_handler_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_type_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_type_effect_suffix_repeat1] = { .visible = false, .named = false, @@ -941,10 +1043,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_let_binding_repeat3] = { - .visible = false, - .named = false, - }, [aux_sym_expression_repeat1] = { .visible = false, .named = false, @@ -965,7 +1063,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_expression_repeat6] = { + [aux_sym_do_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_handler_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_handler_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_handler_repeat3] = { .visible = false, .named = false, }, @@ -973,6 +1083,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_pattern_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_effect_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -981,6 +1099,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_handler_resume] = { + .visible = true, + .named = true, + }, + [alias_sym_method] = { + .visible = true, + .named = true, + }, [alias_sym_newtype_evidence] = { .visible = true, .named = true, @@ -1001,19 +1127,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_string_cons_var] = { + [alias_sym_record_field] = { .visible = true, .named = true, }, - [alias_sym_type_constructor] = { + [alias_sym_string_cons_var] = { .visible = true, .named = true, }, - [alias_sym_type_param] = { + [alias_sym_type_constructor] = { .visible = true, .named = true, }, - [alias_sym_type_reserved_function] = { + [alias_sym_type_param] = { .visible = true, .named = true, }, @@ -1055,7 +1181,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_use_keyword_star, }, [6] = { - [0] = alias_sym_type_reserved_function, + [0] = anon_sym_EQ_GT, }, [7] = { [0] = alias_sym_type_var_id, @@ -1070,54 +1196,90 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_pattern_wildcard, }, [11] = { + [1] = alias_sym_method, + }, + [12] = { [0] = alias_sym_use_path, [3] = alias_sym_use_keyword_star, }, - [12] = { + [13] = { [0] = alias_sym_primitive_cons, }, - [13] = { + [14] = { [1] = alias_sym_string_cons_var, }, - [14] = { + [15] = { [0] = alias_sym_use_path, [1] = alias_sym_use_keyword_star, [2] = alias_sym_use_keyword_exclude, }, - [15] = { + [16] = { [0] = aux_sym_type_effect_suffix_token1, }, - [16] = { + [17] = { + [2] = alias_sym_method, + }, + [18] = { [0] = alias_sym_use_path, [2] = alias_sym_use_keyword_star, [3] = alias_sym_use_keyword_exclude, }, - [17] = { + [19] = { [1] = alias_sym_type_constructor, [3] = alias_sym_newtype_evidence, }, - [18] = { + [20] = { + [3] = alias_sym_method, + }, + [21] = { [0] = alias_sym_use_path, [3] = alias_sym_use_keyword_star, [4] = alias_sym_use_keyword_exclude, }, - [19] = { + [22] = { + [1] = alias_sym_record_field, + }, + [23] = { [1] = alias_sym_type_constructor, [4] = alias_sym_newtype_evidence, }, - [20] = { + [24] = { + [1] = alias_sym_method, + [2] = alias_sym_handler_resume, + }, + [25] = { [1] = alias_sym_type_var_id, }, - [21] = { + [26] = { [1] = alias_sym_type_constructor, [3] = alias_sym_newtype_evidence, [5] = alias_sym_newtype_reverse_evidence, }, - [22] = { + [27] = { + [1] = alias_sym_method, + [3] = alias_sym_handler_resume, + }, + [28] = { [1] = alias_sym_type_constructor, [4] = alias_sym_newtype_evidence, [6] = alias_sym_newtype_reverse_evidence, }, + [29] = { + [5] = alias_sym_method, + [6] = alias_sym_handler_resume, + }, + [30] = { + [6] = alias_sym_method, + [7] = alias_sym_handler_resume, + }, + [31] = { + [7] = alias_sym_method, + [8] = alias_sym_handler_resume, + }, + [32] = { + [8] = alias_sym_method, + [9] = alias_sym_handler_resume, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -1127,6 +1289,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_primitive_reverse_atom, 2, sym_primitive_reverse_atom, alias_sym_primitive_reverse_atom_prim, + sym_identifier, 2, + sym_identifier, + alias_sym_record_field, 0, }; @@ -1137,3416 +1302,3416 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 3, - [7] = 2, + [6] = 6, + [7] = 7, [8] = 8, [9] = 9, - [10] = 4, - [11] = 5, - [12] = 5, - [13] = 2, - [14] = 4, + [10] = 9, + [11] = 8, + [12] = 7, + [13] = 13, + [14] = 6, [15] = 5, - [16] = 3, - [17] = 2, - [18] = 18, + [16] = 4, + [17] = 3, + [18] = 2, [19] = 9, - [20] = 3, - [21] = 4, - [22] = 18, - [23] = 23, - [24] = 9, - [25] = 25, - [26] = 8, - [27] = 18, - [28] = 25, - [29] = 8, - [30] = 18, - [31] = 8, - [32] = 25, - [33] = 23, - [34] = 25, - [35] = 9, - [36] = 9, - [37] = 3, - [38] = 9, - [39] = 25, - [40] = 8, + [20] = 13, + [21] = 8, + [22] = 6, + [23] = 7, + [24] = 8, + [25] = 6, + [26] = 5, + [27] = 7, + [28] = 7, + [29] = 4, + [30] = 8, + [31] = 6, + [32] = 5, + [33] = 3, + [34] = 4, + [35] = 3, + [36] = 2, + [37] = 2, + [38] = 5, + [39] = 2, + [40] = 3, [41] = 4, [42] = 5, - [43] = 3, - [44] = 2, - [45] = 2, - [46] = 2, - [47] = 3, - [48] = 5, - [49] = 3, - [50] = 4, - [51] = 8, - [52] = 8, - [53] = 25, - [54] = 9, - [55] = 18, - [56] = 8, - [57] = 5, - [58] = 25, - [59] = 23, - [60] = 4, - [61] = 18, - [62] = 25, - [63] = 9, - [64] = 23, - [65] = 18, - [66] = 18, - [67] = 2, - [68] = 3, - [69] = 4, - [70] = 5, - [71] = 3, - [72] = 2, + [43] = 4, + [44] = 9, + [45] = 7, + [46] = 6, + [47] = 9, + [48] = 8, + [49] = 13, + [50] = 3, + [51] = 9, + [52] = 2, + [53] = 8, + [54] = 13, + [55] = 9, + [56] = 7, + [57] = 6, + [58] = 4, + [59] = 4, + [60] = 7, + [61] = 3, + [62] = 2, + [63] = 2, + [64] = 2, + [65] = 3, + [66] = 5, + [67] = 13, + [68] = 4, + [69] = 3, + [70] = 2, + [71] = 4, + [72] = 13, [73] = 5, - [74] = 4, - [75] = 2, - [76] = 18, - [77] = 4, - [78] = 18, - [79] = 23, - [80] = 9, - [81] = 9, - [82] = 25, - [83] = 25, - [84] = 8, - [85] = 8, - [86] = 5, - [87] = 5, - [88] = 8, - [89] = 18, - [90] = 23, - [91] = 9, - [92] = 25, - [93] = 4, - [94] = 5, - [95] = 3, - [96] = 2, - [97] = 8, - [98] = 4, - [99] = 18, - [100] = 9, - [101] = 25, - [102] = 4, - [103] = 8, - [104] = 5, + [74] = 6, + [75] = 13, + [76] = 3, + [77] = 8, + [78] = 4, + [79] = 7, + [80] = 8, + [81] = 8, + [82] = 2, + [83] = 9, + [84] = 5, + [85] = 9, + [86] = 2, + [87] = 2, + [88] = 3, + [89] = 6, + [90] = 3, + [91] = 4, + [92] = 5, + [93] = 7, + [94] = 6, + [95] = 9, + [96] = 6, + [97] = 6, + [98] = 7, + [99] = 5, + [100] = 8, + [101] = 4, + [102] = 8, + [103] = 9, + [104] = 4, [105] = 3, [106] = 2, - [107] = 2, - [108] = 3, - [109] = 3, - [110] = 5, - [111] = 4, - [112] = 2, - [113] = 9, - [114] = 18, - [115] = 25, - [116] = 23, - [117] = 9, - [118] = 8, - [119] = 18, - [120] = 25, - [121] = 23, - [122] = 5, + [107] = 5, + [108] = 6, + [109] = 7, + [110] = 8, + [111] = 9, + [112] = 9, + [113] = 5, + [114] = 7, + [115] = 3, + [116] = 5, + [117] = 8, + [118] = 9, + [119] = 6, + [120] = 7, + [121] = 6, + [122] = 8, [123] = 4, - [124] = 25, - [125] = 8, - [126] = 25, - [127] = 9, - [128] = 5, - [129] = 18, - [130] = 3, - [131] = 8, - [132] = 2, + [124] = 3, + [125] = 3, + [126] = 5, + [127] = 4, + [128] = 6, + [129] = 7, + [130] = 2, + [131] = 5, + [132] = 6, [133] = 3, - [134] = 5, - [135] = 3, - [136] = 2, - [137] = 4, - [138] = 2, - [139] = 18, - [140] = 9, - [141] = 25, - [142] = 8, - [143] = 4, - [144] = 9, - [145] = 18, - [146] = 2, - [147] = 3, - [148] = 4, - [149] = 5, - [150] = 8, - [151] = 18, - [152] = 25, - [153] = 9, + [134] = 7, + [135] = 8, + [136] = 8, + [137] = 6, + [138] = 5, + [139] = 4, + [140] = 5, + [141] = 2, + [142] = 3, + [143] = 2, + [144] = 13, + [145] = 9, + [146] = 4, + [147] = 5, + [148] = 7, + [149] = 8, + [150] = 13, + [151] = 13, + [152] = 3, + [153] = 2, [154] = 9, - [155] = 5, - [156] = 4, - [157] = 23, - [158] = 18, - [159] = 3, - [160] = 2, - [161] = 3, - [162] = 2, - [163] = 5, - [164] = 25, - [165] = 8, - [166] = 8, - [167] = 4, - [168] = 18, - [169] = 9, - [170] = 25, - [171] = 5, - [172] = 3, - [173] = 5, - [174] = 2, - [175] = 18, - [176] = 25, - [177] = 8, - [178] = 25, - [179] = 18, - [180] = 3, - [181] = 2, - [182] = 9, - [183] = 9, - [184] = 23, - [185] = 8, - [186] = 18, + [155] = 9, + [156] = 7, + [157] = 7, + [158] = 6, + [159] = 8, + [160] = 5, + [161] = 9, + [162] = 9, + [163] = 9, + [164] = 4, + [165] = 2, + [166] = 4, + [167] = 6, + [168] = 8, + [169] = 7, + [170] = 3, + [171] = 2, + [172] = 9, + [173] = 8, + [174] = 7, + [175] = 6, + [176] = 5, + [177] = 4, + [178] = 3, + [179] = 2, + [180] = 2, + [181] = 3, + [182] = 4, + [183] = 5, + [184] = 6, + [185] = 7, + [186] = 8, [187] = 9, - [188] = 4, - [189] = 5, - [190] = 23, - [191] = 3, - [192] = 2, - [193] = 4, - [194] = 5, - [195] = 3, + [188] = 6, + [189] = 4, + [190] = 4, + [191] = 13, + [192] = 9, + [193] = 8, + [194] = 7, + [195] = 6, [196] = 2, - [197] = 4, - [198] = 25, - [199] = 4, - [200] = 2, + [197] = 5, + [198] = 5, + [199] = 6, + [200] = 7, [201] = 3, [202] = 8, - [203] = 25, - [204] = 9, - [205] = 23, - [206] = 18, - [207] = 8, - [208] = 25, - [209] = 209, - [210] = 9, - [211] = 5, - [212] = 9, - [213] = 23, - [214] = 4, - [215] = 18, - [216] = 25, + [203] = 9, + [204] = 13, + [205] = 5, + [206] = 9, + [207] = 4, + [208] = 3, + [209] = 2, + [210] = 3, + [211] = 4, + [212] = 3, + [213] = 2, + [214] = 5, + [215] = 2, + [216] = 3, [217] = 8, - [218] = 18, - [219] = 18, - [220] = 23, - [221] = 9, - [222] = 2, - [223] = 3, - [224] = 209, - [225] = 5, - [226] = 25, - [227] = 4, - [228] = 2, - [229] = 3, - [230] = 209, - [231] = 8, - [232] = 5, - [233] = 4, - [234] = 209, - [235] = 8, - [236] = 2, - [237] = 3, - [238] = 5, - [239] = 4, - [240] = 25, - [241] = 9, - [242] = 18, - [243] = 8, - [244] = 2, + [218] = 4, + [219] = 5, + [220] = 6, + [221] = 7, + [222] = 6, + [223] = 9, + [224] = 8, + [225] = 13, + [226] = 8, + [227] = 9, + [228] = 7, + [229] = 7, + [230] = 6, + [231] = 5, + [232] = 4, + [233] = 8, + [234] = 9, + [235] = 2, + [236] = 3, + [237] = 7, + [238] = 2, + [239] = 7, + [240] = 3, + [241] = 5, + [242] = 2, + [243] = 2, + [244] = 6, [245] = 3, - [246] = 5, - [247] = 4, - [248] = 25, - [249] = 9, - [250] = 18, - [251] = 8, - [252] = 2, - [253] = 3, - [254] = 5, - [255] = 4, - [256] = 25, - [257] = 9, - [258] = 18, - [259] = 209, - [260] = 8, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 5, - [267] = 264, - [268] = 5, - [269] = 269, - [270] = 4, - [271] = 2, - [272] = 272, - [273] = 3, + [246] = 8, + [247] = 7, + [248] = 4, + [249] = 5, + [250] = 4, + [251] = 6, + [252] = 5, + [253] = 4, + [254] = 6, + [255] = 13, + [256] = 7, + [257] = 8, + [258] = 13, + [259] = 3, + [260] = 3, + [261] = 2, + [262] = 9, + [263] = 8, + [264] = 9, + [265] = 8, + [266] = 2, + [267] = 7, + [268] = 9, + [269] = 13, + [270] = 9, + [271] = 8, + [272] = 7, + [273] = 6, [274] = 5, - [275] = 275, - [276] = 4, - [277] = 277, - [278] = 4, - [279] = 279, - [280] = 280, - [281] = 4, + [275] = 4, + [276] = 9, + [277] = 4, + [278] = 3, + [279] = 5, + [280] = 6, + [281] = 8, [282] = 2, - [283] = 3, - [284] = 284, - [285] = 2, - [286] = 3, - [287] = 287, - [288] = 288, - [289] = 5, - [290] = 290, - [291] = 3, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 2, - [296] = 294, - [297] = 287, - [298] = 280, - [299] = 275, - [300] = 272, - [301] = 269, - [302] = 293, - [303] = 265, - [304] = 262, - [305] = 284, - [306] = 263, - [307] = 307, - [308] = 261, - [309] = 4, - [310] = 290, - [311] = 5, - [312] = 3, - [313] = 2, - [314] = 314, - [315] = 315, + [283] = 7, + [284] = 2, + [285] = 8, + [286] = 2, + [287] = 9, + [288] = 3, + [289] = 6, + [290] = 3, + [291] = 4, + [292] = 4, + [293] = 9, + [294] = 5, + [295] = 5, + [296] = 5, + [297] = 6, + [298] = 7, + [299] = 8, + [300] = 9, + [301] = 13, + [302] = 6, + [303] = 7, + [304] = 2, + [305] = 3, + [306] = 4, + [307] = 4, + [308] = 308, + [309] = 2, + [310] = 3, + [311] = 4, + [312] = 5, + [313] = 6, + [314] = 7, + [315] = 8, [316] = 316, - [317] = 4, - [318] = 318, + [317] = 9, + [318] = 13, [319] = 319, - [320] = 5, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 264, - [325] = 3, - [326] = 292, - [327] = 2, - [328] = 279, - [329] = 4, - [330] = 8, - [331] = 25, - [332] = 277, - [333] = 307, - [334] = 263, + [320] = 9, + [321] = 8, + [322] = 308, + [323] = 7, + [324] = 6, + [325] = 5, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, [335] = 335, - [336] = 9, - [337] = 277, - [338] = 263, - [339] = 23, - [340] = 340, - [341] = 264, - [342] = 18, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 2, + [341] = 341, + [342] = 3, [343] = 343, - [344] = 290, - [345] = 345, - [346] = 293, - [347] = 277, - [348] = 348, - [349] = 294, - [350] = 350, - [351] = 287, - [352] = 352, - [353] = 280, + [344] = 344, + [345] = 327, + [346] = 346, + [347] = 331, + [348] = 330, + [349] = 332, + [350] = 333, + [351] = 328, + [352] = 334, + [353] = 335, [354] = 354, - [355] = 275, - [356] = 356, - [357] = 272, + [355] = 319, + [356] = 336, + [357] = 357, [358] = 358, - [359] = 269, - [360] = 290, - [361] = 361, - [362] = 265, - [363] = 363, - [364] = 262, - [365] = 365, - [366] = 284, - [367] = 367, - [368] = 4, - [369] = 5, - [370] = 8, - [371] = 25, - [372] = 9, - [373] = 18, - [374] = 3, - [375] = 2, - [376] = 209, - [377] = 8, - [378] = 8, - [379] = 25, - [380] = 9, - [381] = 18, - [382] = 8, - [383] = 25, - [384] = 9, - [385] = 209, - [386] = 18, - [387] = 8, - [388] = 25, - [389] = 9, - [390] = 18, - [391] = 25, - [392] = 209, - [393] = 9, - [394] = 23, - [395] = 18, - [396] = 314, - [397] = 315, - [398] = 8, - [399] = 25, - [400] = 284, - [401] = 9, - [402] = 23, - [403] = 18, - [404] = 262, + [359] = 337, + [360] = 338, + [361] = 339, + [362] = 362, + [363] = 341, + [364] = 343, + [365] = 308, + [366] = 332, + [367] = 333, + [368] = 368, + [369] = 344, + [370] = 330, + [371] = 371, + [372] = 354, + [373] = 334, + [374] = 335, + [375] = 336, + [376] = 308, + [377] = 319, + [378] = 378, + [379] = 308, + [380] = 357, + [381] = 316, + [382] = 326, + [383] = 337, + [384] = 327, + [385] = 338, + [386] = 386, + [387] = 339, + [388] = 331, + [389] = 389, + [390] = 326, + [391] = 362, + [392] = 344, + [393] = 358, + [394] = 341, + [395] = 368, + [396] = 329, + [397] = 308, + [398] = 343, + [399] = 308, + [400] = 400, + [401] = 328, + [402] = 402, + [403] = 403, + [404] = 404, [405] = 316, - [406] = 318, - [407] = 319, - [408] = 321, - [409] = 265, - [410] = 322, - [411] = 8, - [412] = 323, - [413] = 25, - [414] = 277, - [415] = 263, - [416] = 269, - [417] = 335, - [418] = 9, - [419] = 23, - [420] = 288, - [421] = 340, - [422] = 264, - [423] = 272, - [424] = 18, - [425] = 343, - [426] = 290, - [427] = 293, - [428] = 345, - [429] = 293, - [430] = 348, - [431] = 294, - [432] = 350, - [433] = 287, - [434] = 275, - [435] = 352, - [436] = 280, - [437] = 354, - [438] = 275, - [439] = 356, - [440] = 272, - [441] = 358, - [442] = 269, - [443] = 361, - [444] = 265, - [445] = 363, - [446] = 280, - [447] = 262, - [448] = 287, - [449] = 365, - [450] = 284, - [451] = 367, - [452] = 209, - [453] = 2, - [454] = 294, - [455] = 3, - [456] = 5, - [457] = 323, - [458] = 262, - [459] = 265, - [460] = 348, - [461] = 269, - [462] = 350, - [463] = 272, - [464] = 279, - [465] = 275, - [466] = 352, - [467] = 280, - [468] = 354, - [469] = 287, - [470] = 356, - [471] = 294, - [472] = 358, - [473] = 293, - [474] = 361, - [475] = 290, - [476] = 340, - [477] = 264, - [478] = 363, - [479] = 343, - [480] = 348, - [481] = 263, - [482] = 292, - [483] = 277, - [484] = 262, - [485] = 365, - [486] = 284, - [487] = 367, - [488] = 292, - [489] = 209, - [490] = 209, - [491] = 307, - [492] = 261, - [493] = 307, - [494] = 261, - [495] = 340, - [496] = 314, - [497] = 315, - [498] = 316, - [499] = 318, - [500] = 335, - [501] = 319, - [502] = 321, - [503] = 322, - [504] = 323, - [505] = 288, - [506] = 335, - [507] = 340, - [508] = 343, - [509] = 345, - [510] = 348, - [511] = 343, - [512] = 350, - [513] = 284, - [514] = 352, - [515] = 209, - [516] = 335, - [517] = 262, - [518] = 354, - [519] = 265, - [520] = 356, - [521] = 350, - [522] = 284, - [523] = 269, - [524] = 262, - [525] = 358, - [526] = 265, - [527] = 361, - [528] = 272, - [529] = 269, - [530] = 363, - [531] = 209, - [532] = 272, - [533] = 275, - [534] = 365, - [535] = 275, - [536] = 367, - [537] = 280, - [538] = 280, - [539] = 209, - [540] = 287, - [541] = 287, - [542] = 288, - [543] = 294, - [544] = 294, - [545] = 209, - [546] = 293, - [547] = 293, - [548] = 322, - [549] = 321, - [550] = 352, - [551] = 290, - [552] = 319, - [553] = 290, - [554] = 318, - [555] = 316, - [556] = 314, - [557] = 279, - [558] = 264, - [559] = 264, - [560] = 315, - [561] = 209, - [562] = 367, - [563] = 284, - [564] = 365, - [565] = 263, - [566] = 263, - [567] = 292, - [568] = 307, - [569] = 277, - [570] = 345, - [571] = 261, - [572] = 354, - [573] = 315, - [574] = 314, - [575] = 363, - [576] = 265, - [577] = 361, - [578] = 269, - [579] = 358, - [580] = 272, - [581] = 356, - [582] = 275, - [583] = 345, - [584] = 354, - [585] = 356, - [586] = 280, - [587] = 352, - [588] = 277, - [589] = 287, - [590] = 350, - [591] = 294, - [592] = 348, - [593] = 293, - [594] = 358, - [595] = 345, - [596] = 290, - [597] = 288, - [598] = 209, - [599] = 316, - [600] = 277, - [601] = 343, - [602] = 361, - [603] = 318, - [604] = 319, - [605] = 279, - [606] = 263, - [607] = 367, - [608] = 363, - [609] = 321, - [610] = 322, - [611] = 323, - [612] = 335, - [613] = 365, - [614] = 264, - [615] = 340, - [616] = 263, - [617] = 264, - [618] = 290, - [619] = 367, - [620] = 277, - [621] = 293, - [622] = 284, - [623] = 294, - [624] = 365, - [625] = 287, - [626] = 262, - [627] = 280, - [628] = 363, - [629] = 275, - [630] = 265, - [631] = 272, - [632] = 361, - [633] = 269, - [634] = 269, - [635] = 265, - [636] = 358, - [637] = 262, - [638] = 272, - [639] = 284, - [640] = 356, - [641] = 275, - [642] = 354, - [643] = 279, - [644] = 335, - [645] = 280, - [646] = 352, - [647] = 335, - [648] = 287, - [649] = 277, - [650] = 350, - [651] = 263, - [652] = 335, - [653] = 340, - [654] = 340, - [655] = 264, - [656] = 284, - [657] = 262, - [658] = 343, - [659] = 265, - [660] = 290, - [661] = 269, - [662] = 340, - [663] = 294, - [664] = 345, - [665] = 272, - [666] = 279, - [667] = 293, - [668] = 275, - [669] = 348, - [670] = 280, - [671] = 294, - [672] = 287, - [673] = 350, - [674] = 294, - [675] = 287, - [676] = 293, - [677] = 352, - [678] = 348, - [679] = 280, - [680] = 290, - [681] = 354, - [682] = 293, - [683] = 343, - [684] = 345, - [685] = 343, - [686] = 275, - [687] = 356, - [688] = 272, - [689] = 264, - [690] = 290, - [691] = 343, - [692] = 363, - [693] = 358, - [694] = 269, - [695] = 345, - [696] = 345, - [697] = 361, - [698] = 263, - [699] = 265, - [700] = 363, - [701] = 262, - [702] = 365, - [703] = 348, - [704] = 277, - [705] = 284, - [706] = 367, - [707] = 348, - [708] = 264, - [709] = 350, - [710] = 284, - [711] = 262, - [712] = 265, - [713] = 269, - [714] = 272, - [715] = 275, - [716] = 280, - [717] = 287, - [718] = 350, - [719] = 340, - [720] = 294, - [721] = 293, - [722] = 290, - [723] = 264, - [724] = 263, - [725] = 352, - [726] = 277, - [727] = 288, - [728] = 352, - [729] = 335, - [730] = 323, - [731] = 322, - [732] = 321, - [733] = 354, - [734] = 263, - [735] = 319, - [736] = 354, - [737] = 356, - [738] = 358, - [739] = 318, - [740] = 356, - [741] = 277, - [742] = 361, - [743] = 363, + [406] = 406, + [407] = 386, + [408] = 329, + [409] = 402, + [410] = 327, + [411] = 344, + [412] = 337, + [413] = 338, + [414] = 339, + [415] = 403, + [416] = 316, + [417] = 341, + [418] = 386, + [419] = 358, + [420] = 403, + [421] = 358, + [422] = 343, + [423] = 368, + [424] = 308, + [425] = 402, + [426] = 362, + [427] = 404, + [428] = 344, + [429] = 402, + [430] = 308, + [431] = 343, + [432] = 329, + [433] = 354, + [434] = 330, + [435] = 404, + [436] = 331, + [437] = 341, + [438] = 357, + [439] = 344, + [440] = 332, + [441] = 362, + [442] = 333, + [443] = 308, + [444] = 334, + [445] = 335, + [446] = 354, + [447] = 336, + [448] = 339, + [449] = 338, + [450] = 368, + [451] = 378, + [452] = 354, + [453] = 337, + [454] = 326, + [455] = 336, + [456] = 338, + [457] = 337, + [458] = 335, + [459] = 308, + [460] = 339, + [461] = 334, + [462] = 333, + [463] = 341, + [464] = 332, + [465] = 402, + [466] = 354, + [467] = 343, + [468] = 335, + [469] = 331, + [470] = 330, + [471] = 386, + [472] = 329, + [473] = 316, + [474] = 319, + [475] = 386, + [476] = 328, + [477] = 346, + [478] = 329, + [479] = 330, + [480] = 386, + [481] = 336, + [482] = 331, + [483] = 344, + [484] = 308, + [485] = 316, + [486] = 308, + [487] = 368, + [488] = 371, + [489] = 332, + [490] = 368, + [491] = 328, + [492] = 362, + [493] = 333, + [494] = 328, + [495] = 357, + [496] = 357, + [497] = 343, + [498] = 334, + [499] = 354, + [500] = 319, + [501] = 335, + [502] = 406, + [503] = 402, + [504] = 358, + [505] = 319, + [506] = 319, + [507] = 308, + [508] = 336, + [509] = 400, + [510] = 402, + [511] = 328, + [512] = 357, + [513] = 337, + [514] = 338, + [515] = 358, + [516] = 386, + [517] = 358, + [518] = 326, + [519] = 339, + [520] = 329, + [521] = 330, + [522] = 331, + [523] = 326, + [524] = 332, + [525] = 333, + [526] = 327, + [527] = 389, + [528] = 406, + [529] = 327, + [530] = 327, + [531] = 346, + [532] = 378, + [533] = 308, + [534] = 362, + [535] = 326, + [536] = 368, + [537] = 400, + [538] = 371, + [539] = 316, + [540] = 362, + [541] = 389, + [542] = 308, + [543] = 334, + [544] = 357, + [545] = 341, + [546] = 354, + [547] = 402, + [548] = 403, + [549] = 346, + [550] = 358, + [551] = 404, + [552] = 316, + [553] = 326, + [554] = 327, + [555] = 371, + [556] = 344, + [557] = 343, + [558] = 341, + [559] = 378, + [560] = 339, + [561] = 338, + [562] = 337, + [563] = 336, + [564] = 402, + [565] = 335, + [566] = 334, + [567] = 333, + [568] = 332, + [569] = 389, + [570] = 389, + [571] = 331, + [572] = 330, + [573] = 329, + [574] = 386, + [575] = 316, + [576] = 328, + [577] = 319, + [578] = 400, + [579] = 308, + [580] = 406, + [581] = 308, + [582] = 327, + [583] = 326, + [584] = 357, + [585] = 343, + [586] = 368, + [587] = 341, + [588] = 362, + [589] = 362, + [590] = 339, + [591] = 338, + [592] = 368, + [593] = 400, + [594] = 378, + [595] = 337, + [596] = 357, + [597] = 404, + [598] = 336, + [599] = 335, + [600] = 334, + [601] = 354, + [602] = 403, + [603] = 371, + [604] = 333, + [605] = 378, + [606] = 332, + [607] = 358, + [608] = 389, + [609] = 331, + [610] = 330, + [611] = 400, + [612] = 308, + [613] = 329, + [614] = 400, + [615] = 406, + [616] = 386, + [617] = 402, + [618] = 402, + [619] = 319, + [620] = 328, + [621] = 328, + [622] = 386, + [623] = 319, + [624] = 406, + [625] = 368, + [626] = 400, + [627] = 404, + [628] = 362, + [629] = 389, + [630] = 357, + [631] = 358, + [632] = 378, + [633] = 354, + [634] = 346, + [635] = 354, + [636] = 371, + [637] = 358, + [638] = 357, + [639] = 403, + [640] = 406, + [641] = 404, + [642] = 402, + [643] = 362, + [644] = 386, + [645] = 368, + [646] = 308, + [647] = 344, + [648] = 368, + [649] = 362, + [650] = 357, + [651] = 354, + [652] = 406, + [653] = 329, + [654] = 358, + [655] = 400, + [656] = 402, + [657] = 330, + [658] = 386, + [659] = 331, + [660] = 386, + [661] = 389, + [662] = 368, + [663] = 362, + [664] = 332, + [665] = 333, + [666] = 357, + [667] = 334, + [668] = 402, + [669] = 335, + [670] = 404, + [671] = 378, + [672] = 403, + [673] = 358, + [674] = 403, + [675] = 354, + [676] = 336, + [677] = 337, + [678] = 371, + [679] = 338, + [680] = 354, + [681] = 358, + [682] = 378, + [683] = 339, + [684] = 357, + [685] = 371, + [686] = 389, + [687] = 362, + [688] = 341, + [689] = 346, + [690] = 346, + [691] = 368, + [692] = 406, + [693] = 316, + [694] = 371, + [695] = 386, + [696] = 402, + [697] = 358, + [698] = 354, + [699] = 326, + [700] = 357, + [701] = 327, + [702] = 362, + [703] = 368, + [704] = 404, + [705] = 386, + [706] = 308, + [707] = 402, + [708] = 404, + [709] = 403, + [710] = 403, + [711] = 358, + [712] = 371, + [713] = 354, + [714] = 378, + [715] = 357, + [716] = 344, + [717] = 389, + [718] = 362, + [719] = 400, + [720] = 368, + [721] = 406, + [722] = 386, + [723] = 343, + [724] = 406, + [725] = 378, + [726] = 403, + [727] = 368, + [728] = 362, + [729] = 403, + [730] = 357, + [731] = 354, + [732] = 404, + [733] = 386, + [734] = 406, + [735] = 358, + [736] = 371, + [737] = 402, + [738] = 378, + [739] = 371, + [740] = 386, + [741] = 386, + [742] = 368, + [743] = 404, [744] = 358, - [745] = 365, - [746] = 316, - [747] = 284, - [748] = 361, - [749] = 367, - [750] = 262, - [751] = 315, - [752] = 363, - [753] = 265, - [754] = 277, - [755] = 269, - [756] = 365, - [757] = 272, - [758] = 263, - [759] = 275, - [760] = 367, - [761] = 280, - [762] = 264, - [763] = 287, - [764] = 314, - [765] = 279, - [766] = 294, - [767] = 293, - [768] = 261, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 307, - [773] = 290, - [774] = 284, - [775] = 262, - [776] = 265, - [777] = 292, - [778] = 269, - [779] = 272, - [780] = 275, - [781] = 293, - [782] = 280, - [783] = 290, - [784] = 294, - [785] = 287, - [786] = 287, - [787] = 280, - [788] = 294, - [789] = 275, - [790] = 272, - [791] = 293, - [792] = 269, - [793] = 288, - [794] = 290, - [795] = 323, - [796] = 322, - [797] = 321, - [798] = 264, - [799] = 265, - [800] = 319, - [801] = 264, - [802] = 318, - [803] = 316, - [804] = 315, - [805] = 263, - [806] = 314, - [807] = 262, - [808] = 284, - [809] = 261, - [810] = 263, - [811] = 307, - [812] = 277, - [813] = 277, - [814] = 292, - [815] = 367, - [816] = 365, - [817] = 335, - [818] = 340, - [819] = 343, - [820] = 345, - [821] = 348, - [822] = 350, - [823] = 352, - [824] = 354, - [825] = 356, - [826] = 358, - [827] = 361, - [828] = 318, - [829] = 321, - [830] = 830, - [831] = 831, - [832] = 830, - [833] = 833, - [834] = 831, - [835] = 833, - [836] = 833, - [837] = 830, - [838] = 831, - [839] = 830, - [840] = 833, - [841] = 830, - [842] = 831, - [843] = 335, - [844] = 830, - [845] = 833, - [846] = 367, - [847] = 365, - [848] = 363, - [849] = 340, - [850] = 361, - [851] = 358, - [852] = 356, - [853] = 354, - [854] = 352, - [855] = 350, - [856] = 343, - [857] = 348, - [858] = 830, - [859] = 345, - [860] = 345, - [861] = 343, - [862] = 348, - [863] = 350, - [864] = 352, - [865] = 340, - [866] = 831, - [867] = 354, - [868] = 356, - [869] = 335, - [870] = 833, - [871] = 358, - [872] = 361, - [873] = 833, - [874] = 363, - [875] = 365, - [876] = 367, - [877] = 831, - [878] = 830, - [879] = 831, - [880] = 771, - [881] = 367, - [882] = 365, - [883] = 363, - [884] = 361, - [885] = 358, - [886] = 356, - [887] = 354, - [888] = 352, - [889] = 350, - [890] = 833, - [891] = 348, - [892] = 345, - [893] = 343, - [894] = 831, - [895] = 830, - [896] = 770, - [897] = 769, - [898] = 831, - [899] = 340, - [900] = 335, - [901] = 830, - [902] = 833, - [903] = 831, - [904] = 830, - [905] = 771, - [906] = 833, - [907] = 770, - [908] = 769, - [909] = 833, - [910] = 831, - [911] = 367, - [912] = 365, - [913] = 335, - [914] = 833, - [915] = 830, - [916] = 363, - [917] = 361, - [918] = 358, - [919] = 356, - [920] = 354, - [921] = 352, - [922] = 922, - [923] = 350, - [924] = 340, - [925] = 279, - [926] = 926, - [927] = 927, - [928] = 348, - [929] = 929, - [930] = 930, - [931] = 345, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 343, - [937] = 937, - [938] = 343, - [939] = 340, - [940] = 335, - [941] = 367, - [942] = 365, - [943] = 292, - [944] = 363, - [945] = 945, - [946] = 831, - [947] = 361, - [948] = 345, - [949] = 358, - [950] = 356, - [951] = 354, - [952] = 352, - [953] = 350, - [954] = 348, - [955] = 345, - [956] = 348, - [957] = 343, - [958] = 279, - [959] = 340, - [960] = 830, - [961] = 833, - [962] = 831, - [963] = 350, - [964] = 335, - [965] = 830, - [966] = 833, - [967] = 769, - [968] = 352, - [969] = 770, - [970] = 771, - [971] = 354, - [972] = 831, - [973] = 830, - [974] = 356, - [975] = 830, - [976] = 831, - [977] = 358, - [978] = 833, - [979] = 831, - [980] = 361, - [981] = 831, - [982] = 288, - [983] = 363, - [984] = 984, - [985] = 307, - [986] = 365, - [987] = 987, - [988] = 319, - [989] = 367, - [990] = 990, - [991] = 261, - [992] = 322, - [993] = 323, - [994] = 314, - [995] = 995, + [745] = 402, + [746] = 402, + [747] = 389, + [748] = 378, + [749] = 403, + [750] = 358, + [751] = 400, + [752] = 346, + [753] = 400, + [754] = 389, + [755] = 406, + [756] = 357, + [757] = 400, + [758] = 354, + [759] = 389, + [760] = 354, + [761] = 404, + [762] = 378, + [763] = 404, + [764] = 357, + [765] = 346, + [766] = 362, + [767] = 358, + [768] = 403, + [769] = 368, + [770] = 371, + [771] = 402, + [772] = 403, + [773] = 346, + [774] = 386, + [775] = 404, + [776] = 371, + [777] = 354, + [778] = 368, + [779] = 371, + [780] = 362, + [781] = 357, + [782] = 404, + [783] = 354, + [784] = 403, + [785] = 378, + [786] = 378, + [787] = 371, + [788] = 357, + [789] = 358, + [790] = 400, + [791] = 404, + [792] = 402, + [793] = 389, + [794] = 378, + [795] = 400, + [796] = 403, + [797] = 406, + [798] = 368, + [799] = 389, + [800] = 389, + [801] = 346, + [802] = 400, + [803] = 362, + [804] = 362, + [805] = 406, + [806] = 406, + [807] = 371, + [808] = 406, + [809] = 400, + [810] = 386, + [811] = 389, + [812] = 403, + [813] = 813, + [814] = 813, + [815] = 815, + [816] = 816, + [817] = 813, + [818] = 815, + [819] = 815, + [820] = 820, + [821] = 820, + [822] = 822, + [823] = 820, + [824] = 824, + [825] = 825, + [826] = 815, + [827] = 813, + [828] = 820, + [829] = 815, + [830] = 406, + [831] = 400, + [832] = 389, + [833] = 813, + [834] = 813, + [835] = 815, + [836] = 813, + [837] = 820, + [838] = 816, + [839] = 820, + [840] = 813, + [841] = 815, + [842] = 9, + [843] = 816, + [844] = 820, + [845] = 8, + [846] = 378, + [847] = 7, + [848] = 815, + [849] = 404, + [850] = 820, + [851] = 6, + [852] = 852, + [853] = 403, + [854] = 815, + [855] = 813, + [856] = 856, + [857] = 820, + [858] = 371, + [859] = 820, + [860] = 6, + [861] = 813, + [862] = 371, + [863] = 815, + [864] = 816, + [865] = 5, + [866] = 816, + [867] = 346, + [868] = 4, + [869] = 403, + [870] = 378, + [871] = 815, + [872] = 5, + [873] = 389, + [874] = 4, + [875] = 13, + [876] = 813, + [877] = 400, + [878] = 820, + [879] = 813, + [880] = 815, + [881] = 813, + [882] = 813, + [883] = 404, + [884] = 815, + [885] = 813, + [886] = 406, + [887] = 820, + [888] = 815, + [889] = 9, + [890] = 820, + [891] = 820, + [892] = 815, + [893] = 3, + [894] = 816, + [895] = 3, + [896] = 404, + [897] = 820, + [898] = 2, + [899] = 406, + [900] = 2, + [901] = 815, + [902] = 820, + [903] = 400, + [904] = 815, + [905] = 815, + [906] = 389, + [907] = 813, + [908] = 813, + [909] = 406, + [910] = 813, + [911] = 820, + [912] = 815, + [913] = 815, + [914] = 820, + [915] = 378, + [916] = 820, + [917] = 400, + [918] = 820, + [919] = 820, + [920] = 815, + [921] = 404, + [922] = 371, + [923] = 816, + [924] = 378, + [925] = 813, + [926] = 7, + [927] = 389, + [928] = 8, + [929] = 371, + [930] = 403, + [931] = 813, + [932] = 813, + [933] = 4, + [934] = 3, + [935] = 7, + [936] = 7, + [937] = 4, + [938] = 938, + [939] = 9, + [940] = 940, + [941] = 3, + [942] = 8, + [943] = 8, + [944] = 940, + [945] = 3, + [946] = 4, + [947] = 13, + [948] = 940, + [949] = 5, + [950] = 7, + [951] = 940, + [952] = 940, + [953] = 6, + [954] = 7, + [955] = 6, + [956] = 5, + [957] = 9, + [958] = 5, + [959] = 4, + [960] = 8, + [961] = 2, + [962] = 7, + [963] = 8, + [964] = 940, + [965] = 3, + [966] = 4, + [967] = 940, + [968] = 2, + [969] = 9, + [970] = 2, + [971] = 3, + [972] = 2, + [973] = 3, + [974] = 940, + [975] = 8, + [976] = 3, + [977] = 13, + [978] = 8, + [979] = 9, + [980] = 2, + [981] = 7, + [982] = 982, + [983] = 983, + [984] = 2, + [985] = 8, + [986] = 4, + [987] = 7, + [988] = 4, + [989] = 9, + [990] = 5, + [991] = 13, + [992] = 940, + [993] = 5, + [994] = 9, + [995] = 940, [996] = 996, - [997] = 833, - [998] = 830, - [999] = 999, - [1000] = 833, - [1001] = 315, - [1002] = 1002, - [1003] = 316, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 995, - [1008] = 1006, - [1009] = 770, - [1010] = 1006, - [1011] = 771, - [1012] = 1006, - [1013] = 1006, - [1014] = 771, - [1015] = 770, - [1016] = 769, - [1017] = 1006, - [1018] = 1006, - [1019] = 1006, - [1020] = 1005, - [1021] = 996, - [1022] = 1004, - [1023] = 990, - [1024] = 1002, - [1025] = 995, - [1026] = 770, - [1027] = 987, - [1028] = 984, - [1029] = 771, - [1030] = 770, - [1031] = 769, - [1032] = 769, - [1033] = 1006, - [1034] = 771, - [1035] = 1006, - [1036] = 770, - [1037] = 769, - [1038] = 1006, - [1039] = 1006, - [1040] = 771, - [1041] = 1005, - [1042] = 770, - [1043] = 1043, - [1044] = 769, - [1045] = 922, - [1046] = 926, - [1047] = 927, - [1048] = 929, - [1049] = 930, - [1050] = 770, - [1051] = 932, - [1052] = 933, - [1053] = 934, - [1054] = 996, - [1055] = 935, - [1056] = 937, - [1057] = 999, - [1058] = 945, - [1059] = 771, - [1060] = 999, - [1061] = 1004, - [1062] = 990, - [1063] = 1006, - [1064] = 1006, - [1065] = 769, - [1066] = 1002, - [1067] = 769, - [1068] = 995, - [1069] = 771, - [1070] = 987, - [1071] = 1006, - [1072] = 984, - [1073] = 987, - [1074] = 1004, - [1075] = 1006, - [1076] = 990, - [1077] = 1006, - [1078] = 996, - [1079] = 769, - [1080] = 999, - [1081] = 1005, - [1082] = 1002, - [1083] = 770, - [1084] = 984, - [1085] = 771, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, + [997] = 13, + [998] = 6, + [999] = 940, + [1000] = 9, + [1001] = 940, + [1002] = 6, + [1003] = 7, + [1004] = 8, + [1005] = 6, + [1006] = 2, + [1007] = 1007, + [1008] = 5, + [1009] = 9, + [1010] = 1010, + [1011] = 1011, + [1012] = 7, + [1013] = 9, + [1014] = 8, + [1015] = 4, + [1016] = 6, + [1017] = 1017, + [1018] = 1018, + [1019] = 6, + [1020] = 940, + [1021] = 6, + [1022] = 1022, + [1023] = 1023, + [1024] = 9, + [1025] = 1025, + [1026] = 5, + [1027] = 5, + [1028] = 940, + [1029] = 9, + [1030] = 3, + [1031] = 2, + [1032] = 1032, + [1033] = 5, + [1034] = 9, + [1035] = 1035, + [1036] = 2, + [1037] = 1037, + [1038] = 8, + [1039] = 6, + [1040] = 940, + [1041] = 6, + [1042] = 7, + [1043] = 940, + [1044] = 8, + [1045] = 6, + [1046] = 940, + [1047] = 1047, + [1048] = 7, + [1049] = 1049, + [1050] = 1050, + [1051] = 940, + [1052] = 4, + [1053] = 5, + [1054] = 3, + [1055] = 4, + [1056] = 2, + [1057] = 1057, + [1058] = 3, + [1059] = 2, + [1060] = 940, + [1061] = 3, + [1062] = 13, + [1063] = 1063, + [1064] = 3, + [1065] = 4, + [1066] = 940, + [1067] = 5, + [1068] = 7, + [1069] = 1069, + [1070] = 6, + [1071] = 13, + [1072] = 2, + [1073] = 4, + [1074] = 8, + [1075] = 940, + [1076] = 5, + [1077] = 5, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1079, + [1082] = 9, + [1083] = 1083, + [1084] = 9, + [1085] = 1085, + [1086] = 8, + [1087] = 1083, + [1088] = 1085, + [1089] = 8, + [1090] = 7, [1091] = 1091, - [1092] = 1092, - [1093] = 1005, - [1094] = 1094, - [1095] = 1088, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1094, - [1101] = 1092, - [1102] = 1102, - [1103] = 1096, - [1104] = 1104, - [1105] = 1087, - [1106] = 1086, - [1107] = 1107, - [1108] = 1090, - [1109] = 1098, - [1110] = 1107, - [1111] = 1111, - [1112] = 1088, - [1113] = 1113, - [1114] = 996, - [1115] = 984, - [1116] = 922, - [1117] = 999, - [1118] = 1113, - [1119] = 926, - [1120] = 987, - [1121] = 1121, - [1122] = 1087, - [1123] = 1086, - [1124] = 1090, - [1125] = 1107, - [1126] = 1111, - [1127] = 1004, - [1128] = 1128, - [1129] = 1088, - [1130] = 1104, - [1131] = 1131, - [1132] = 1131, - [1133] = 1097, - [1134] = 1134, - [1135] = 1111, - [1136] = 1086, - [1137] = 1137, - [1138] = 1086, - [1139] = 1004, - [1140] = 1140, - [1141] = 927, - [1142] = 995, - [1143] = 1111, - [1144] = 1097, - [1145] = 1002, - [1146] = 1134, - [1147] = 929, - [1148] = 1121, - [1149] = 984, - [1150] = 1087, - [1151] = 990, - [1152] = 1152, - [1153] = 1104, - [1154] = 1152, - [1155] = 987, - [1156] = 1156, - [1157] = 1107, - [1158] = 1137, - [1159] = 1094, - [1160] = 1121, - [1161] = 1088, - [1162] = 930, - [1163] = 990, - [1164] = 932, - [1165] = 933, - [1166] = 1121, - [1167] = 1104, - [1168] = 1090, - [1169] = 934, - [1170] = 1137, - [1171] = 1099, - [1172] = 1107, - [1173] = 1092, - [1174] = 1096, - [1175] = 1098, - [1176] = 995, - [1177] = 1113, - [1178] = 1002, - [1179] = 1128, - [1180] = 1131, - [1181] = 1134, - [1182] = 1131, - [1183] = 1090, - [1184] = 935, - [1185] = 1087, - [1186] = 1087, - [1187] = 1086, - [1188] = 1137, - [1189] = 1090, - [1190] = 1088, - [1191] = 1107, - [1192] = 1111, - [1193] = 1104, - [1194] = 990, - [1195] = 1004, - [1196] = 937, - [1197] = 1088, - [1198] = 1113, - [1199] = 1091, - [1200] = 1111, - [1201] = 1087, - [1202] = 1086, - [1203] = 1107, - [1204] = 1128, - [1205] = 1090, - [1206] = 1097, - [1207] = 1094, - [1208] = 999, - [1209] = 996, - [1210] = 1099, - [1211] = 1090, - [1212] = 996, - [1213] = 1121, - [1214] = 1087, - [1215] = 1086, - [1216] = 999, - [1217] = 1107, - [1218] = 1091, - [1219] = 1091, - [1220] = 1002, - [1221] = 996, - [1222] = 1099, - [1223] = 999, - [1224] = 1087, - [1225] = 1005, - [1226] = 995, - [1227] = 1128, - [1228] = 996, - [1229] = 987, - [1230] = 1092, - [1231] = 1097, - [1232] = 984, - [1233] = 999, - [1234] = 1094, - [1235] = 1102, - [1236] = 1111, - [1237] = 1088, - [1238] = 1099, - [1239] = 1137, - [1240] = 1096, - [1241] = 1152, - [1242] = 1005, - [1243] = 1134, - [1244] = 1121, - [1245] = 1004, - [1246] = 1091, - [1247] = 1094, - [1248] = 1131, - [1249] = 1099, - [1250] = 990, - [1251] = 1156, - [1252] = 1102, - [1253] = 984, - [1254] = 987, - [1255] = 1128, - [1256] = 995, - [1257] = 1113, - [1258] = 1002, - [1259] = 990, - [1260] = 1098, - [1261] = 1004, - [1262] = 990, - [1263] = 1097, - [1264] = 1004, - [1265] = 1098, - [1266] = 1088, - [1267] = 1104, - [1268] = 1094, - [1269] = 1087, - [1270] = 1111, - [1271] = 1271, - [1272] = 1005, - [1273] = 1086, - [1274] = 1090, - [1275] = 1152, - [1276] = 1107, - [1277] = 1113, - [1278] = 1107, - [1279] = 1111, - [1280] = 1088, - [1281] = 1104, - [1282] = 999, - [1283] = 1121, - [1284] = 1090, - [1285] = 1134, - [1286] = 996, - [1287] = 1156, - [1288] = 1002, - [1289] = 1128, - [1290] = 1087, - [1291] = 1005, - [1292] = 1113, - [1293] = 1121, - [1294] = 995, - [1295] = 1005, - [1296] = 1096, - [1297] = 1297, - [1298] = 1094, - [1299] = 1092, - [1300] = 987, - [1301] = 984, - [1302] = 1094, - [1303] = 1097, - [1304] = 1099, - [1305] = 1104, - [1306] = 1131, - [1307] = 1091, - [1308] = 1104, - [1309] = 1088, - [1310] = 1137, - [1311] = 1156, - [1312] = 1111, - [1313] = 1104, - [1314] = 1097, - [1315] = 1104, - [1316] = 1152, - [1317] = 1004, - [1318] = 1097, - [1319] = 1134, - [1320] = 1131, - [1321] = 1107, - [1322] = 1128, - [1323] = 1121, - [1324] = 1121, - [1325] = 1128, - [1326] = 1086, - [1327] = 1094, - [1328] = 1092, - [1329] = 1097, - [1330] = 1096, - [1331] = 1098, - [1332] = 1137, - [1333] = 1111, - [1334] = 1098, - [1335] = 1096, - [1336] = 1092, - [1337] = 1090, - [1338] = 1099, - [1339] = 1097, - [1340] = 1091, - [1341] = 1102, - [1342] = 1104, - [1343] = 1156, - [1344] = 1156, - [1345] = 1152, - [1346] = 1137, - [1347] = 1091, - [1348] = 1134, - [1349] = 1092, - [1350] = 1102, - [1351] = 1131, - [1352] = 1156, - [1353] = 1152, - [1354] = 1113, - [1355] = 1156, - [1356] = 1134, - [1357] = 1086, - [1358] = 1131, - [1359] = 1128, - [1360] = 1134, - [1361] = 1113, - [1362] = 1098, - [1363] = 1113, - [1364] = 1096, - [1365] = 1096, - [1366] = 1128, + [1092] = 6, + [1093] = 5, + [1094] = 1091, + [1095] = 4, + [1096] = 7, + [1097] = 6, + [1098] = 1085, + [1099] = 3, + [1100] = 4, + [1101] = 2, + [1102] = 9, + [1103] = 8, + [1104] = 7, + [1105] = 1083, + [1106] = 6, + [1107] = 5, + [1108] = 3, + [1109] = 2, + [1110] = 1079, + [1111] = 4, + [1112] = 1080, + [1113] = 3, + [1114] = 2, + [1115] = 13, + [1116] = 1080, + [1117] = 1079, + [1118] = 1083, + [1119] = 1085, + [1120] = 1085, + [1121] = 1083, + [1122] = 1079, + [1123] = 1080, + [1124] = 1124, + [1125] = 1085, + [1126] = 1083, + [1127] = 1079, + [1128] = 1080, + [1129] = 1080, + [1130] = 1079, + [1131] = 1083, + [1132] = 1085, + [1133] = 1085, + [1134] = 1083, + [1135] = 1079, + [1136] = 1080, + [1137] = 1080, + [1138] = 1138, + [1139] = 1091, + [1140] = 825, + [1141] = 1079, + [1142] = 824, + [1143] = 822, + [1144] = 1083, + [1145] = 1085, + [1146] = 9, + [1147] = 8, + [1148] = 7, + [1149] = 6, + [1150] = 5, + [1151] = 4, + [1152] = 3, + [1153] = 2, + [1154] = 1080, + [1155] = 1079, + [1156] = 1083, + [1157] = 1085, + [1158] = 1080, + [1159] = 1079, + [1160] = 1083, + [1161] = 1085, + [1162] = 1080, + [1163] = 1080, + [1164] = 1079, + [1165] = 1165, + [1166] = 1166, + [1167] = 1083, + [1168] = 1168, + [1169] = 1085, + [1170] = 1138, + [1171] = 1091, + [1172] = 825, + [1173] = 824, + [1174] = 1091, + [1175] = 1175, + [1176] = 1091, + [1177] = 1138, + [1178] = 5, + [1179] = 822, + [1180] = 1175, + [1181] = 1091, + [1182] = 1080, + [1183] = 1138, + [1184] = 1184, + [1185] = 1079, + [1186] = 1186, + [1187] = 1083, + [1188] = 1085, + [1189] = 1189, + [1190] = 1175, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1085, + [1196] = 1189, + [1197] = 1175, + [1198] = 1175, + [1199] = 13, + [1200] = 1091, + [1201] = 1201, + [1202] = 1202, + [1203] = 1138, + [1204] = 1078, + [1205] = 1205, + [1206] = 1206, + [1207] = 825, + [1208] = 824, + [1209] = 822, + [1210] = 1080, + [1211] = 1184, + [1212] = 1079, + [1213] = 1186, + [1214] = 1083, + [1215] = 1085, + [1216] = 1138, + [1217] = 825, + [1218] = 824, + [1219] = 822, + [1220] = 1189, + [1221] = 1175, + [1222] = 1080, + [1223] = 1191, + [1224] = 1192, + [1225] = 1193, + [1226] = 1079, + [1227] = 1201, + [1228] = 1202, + [1229] = 1078, + [1230] = 1206, + [1231] = 825, + [1232] = 13, + [1233] = 824, + [1234] = 2, + [1235] = 1083, + [1236] = 822, + [1237] = 3, + [1238] = 2, + [1239] = 3, + [1240] = 4, + [1241] = 4, + [1242] = 1083, + [1243] = 1191, + [1244] = 5, + [1245] = 6, + [1246] = 7, + [1247] = 8, + [1248] = 1186, + [1249] = 9, + [1250] = 1085, + [1251] = 13, + [1252] = 1192, + [1253] = 1193, + [1254] = 1138, + [1255] = 1080, + [1256] = 1184, + [1257] = 1079, + [1258] = 1186, + [1259] = 1083, + [1260] = 1085, + [1261] = 1091, + [1262] = 1189, + [1263] = 1175, + [1264] = 1191, + [1265] = 1192, + [1266] = 1193, + [1267] = 1201, + [1268] = 1202, + [1269] = 1078, + [1270] = 1206, + [1271] = 1080, + [1272] = 1138, + [1273] = 1079, + [1274] = 1189, + [1275] = 1175, + [1276] = 6, + [1277] = 7, + [1278] = 8, + [1279] = 1191, + [1280] = 1192, + [1281] = 9, + [1282] = 1193, + [1283] = 1201, + [1284] = 1202, + [1285] = 1206, + [1286] = 1083, + [1287] = 1138, + [1288] = 1191, + [1289] = 1189, + [1290] = 1189, + [1291] = 1175, + [1292] = 1085, + [1293] = 1191, + [1294] = 1192, + [1295] = 822, + [1296] = 1193, + [1297] = 824, + [1298] = 825, + [1299] = 1091, + [1300] = 1202, + [1301] = 1079, + [1302] = 1078, + [1303] = 1206, + [1304] = 1191, + [1305] = 1166, + [1306] = 1186, + [1307] = 1189, + [1308] = 1184, + [1309] = 1138, + [1310] = 1189, + [1311] = 1175, + [1312] = 1191, + [1313] = 1189, + [1314] = 1191, + [1315] = 1175, + [1316] = 1189, + [1317] = 9, + [1318] = 1201, + [1319] = 1080, + [1320] = 1184, + [1321] = 1079, + [1322] = 1186, + [1323] = 8, + [1324] = 1083, + [1325] = 1191, + [1326] = 1080, + [1327] = 1175, + [1328] = 7, + [1329] = 1329, + [1330] = 1189, + [1331] = 1085, + [1332] = 6, + [1333] = 1191, + [1334] = 1192, + [1335] = 5, + [1336] = 1193, + [1337] = 1138, + [1338] = 1189, + [1339] = 1138, + [1340] = 4, + [1341] = 9, + [1342] = 3, + [1343] = 1175, + [1344] = 1344, + [1345] = 1345, + [1346] = 1191, + [1347] = 2, + [1348] = 1080, + [1349] = 1080, + [1350] = 8, + [1351] = 7, + [1352] = 1138, + [1353] = 1189, + [1354] = 1175, + [1355] = 1191, + [1356] = 1079, + [1357] = 1184, + [1358] = 1175, + [1359] = 13, + [1360] = 1079, + [1361] = 1191, + [1362] = 6, + [1363] = 1138, + [1364] = 5, + [1365] = 1189, + [1366] = 4, [1367] = 1367, - [1368] = 1090, - [1369] = 1088, - [1370] = 1087, - [1371] = 1086, - [1372] = 1156, - [1373] = 1152, - [1374] = 1090, - [1375] = 1134, - [1376] = 1089, - [1377] = 1107, - [1378] = 1121, - [1379] = 1121, - [1380] = 1092, - [1381] = 1111, - [1382] = 1099, - [1383] = 1091, - [1384] = 1088, - [1385] = 1137, - [1386] = 1097, - [1387] = 1098, - [1388] = 1111, - [1389] = 1113, - [1390] = 1156, - [1391] = 1107, - [1392] = 1152, - [1393] = 1104, - [1394] = 1094, - [1395] = 1134, - [1396] = 1092, - [1397] = 1152, - [1398] = 1152, - [1399] = 1088, - [1400] = 1131, - [1401] = 1137, - [1402] = 1096, - [1403] = 1099, - [1404] = 1092, - [1405] = 1090, - [1406] = 1406, - [1407] = 1098, - [1408] = 1096, - [1409] = 1102, - [1410] = 1098, - [1411] = 1086, - [1412] = 1113, - [1413] = 1128, - [1414] = 1131, - [1415] = 1134, - [1416] = 1152, - [1417] = 1137, - [1418] = 1099, - [1419] = 1087, - [1420] = 1104, - [1421] = 1128, + [1368] = 1175, + [1369] = 1083, + [1370] = 1189, + [1371] = 1083, + [1372] = 1329, + [1373] = 1205, + [1374] = 9, + [1375] = 1175, + [1376] = 8, + [1377] = 3, + [1378] = 2, + [1379] = 2, + [1380] = 7, + [1381] = 6, + [1382] = 5, + [1383] = 1191, + [1384] = 1138, + [1385] = 1138, + [1386] = 4, + [1387] = 1189, + [1388] = 1085, + [1389] = 3, + [1390] = 1085, + [1391] = 4, + [1392] = 1175, + [1393] = 1191, + [1394] = 1194, + [1395] = 5, + [1396] = 3, + [1397] = 2, + [1398] = 6, + [1399] = 7, + [1400] = 8, + [1401] = 1175, + [1402] = 1402, + [1403] = 9, + [1404] = 1165, + [1405] = 1191, + [1406] = 1138, + [1407] = 1138, + [1408] = 1166, + [1409] = 1189, + [1410] = 1189, + [1411] = 1175, + [1412] = 1191, + [1413] = 1189, + [1414] = 1138, + [1415] = 1138, + [1416] = 1202, + [1417] = 1175, + [1418] = 1191, + [1419] = 1191, + [1420] = 1201, + [1421] = 1189, [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1131, - [1426] = 1092, - [1427] = 1096, - [1428] = 1113, - [1429] = 1091, - [1430] = 1111, - [1431] = 1137, - [1432] = 1432, - [1433] = 1140, - [1434] = 1128, - [1435] = 1098, - [1436] = 1436, - [1437] = 1128, - [1438] = 1113, - [1439] = 990, - [1440] = 1121, - [1441] = 1441, - [1442] = 1086, - [1443] = 1128, - [1444] = 1087, - [1445] = 1131, - [1446] = 1086, - [1447] = 1134, - [1448] = 1097, - [1449] = 1087, - [1450] = 1097, - [1451] = 1099, - [1452] = 1152, - [1453] = 1094, - [1454] = 1131, - [1455] = 1005, - [1456] = 1091, - [1457] = 1137, - [1458] = 1094, - [1459] = 1091, - [1460] = 1098, - [1461] = 1131, - [1462] = 1156, - [1463] = 1134, - [1464] = 1099, - [1465] = 1096, - [1466] = 1090, - [1467] = 1092, - [1468] = 1432, - [1469] = 984, - [1470] = 1102, - [1471] = 984, - [1472] = 1099, - [1473] = 1091, - [1474] = 1092, - [1475] = 1152, - [1476] = 1137, - [1477] = 987, - [1478] = 1478, - [1479] = 1156, - [1480] = 1096, - [1481] = 987, - [1482] = 996, - [1483] = 1107, - [1484] = 995, - [1485] = 1097, - [1486] = 1098, - [1487] = 1121, - [1488] = 1156, - [1489] = 1113, - [1490] = 1128, - [1491] = 1152, - [1492] = 1111, - [1493] = 1134, - [1494] = 1137, - [1495] = 1131, - [1496] = 1002, - [1497] = 999, - [1498] = 1134, - [1499] = 1134, - [1500] = 1131, - [1501] = 1152, - [1502] = 1156, - [1503] = 984, - [1504] = 1088, - [1505] = 990, - [1506] = 1004, - [1507] = 1137, - [1508] = 1128, - [1509] = 1152, - [1510] = 987, - [1511] = 1156, - [1512] = 999, - [1513] = 996, - [1514] = 1091, - [1515] = 1104, - [1516] = 1097, - [1517] = 937, - [1518] = 1137, - [1519] = 1099, - [1520] = 1156, - [1521] = 1005, - [1522] = 1113, - [1523] = 1121, - [1524] = 1102, - [1525] = 1087, - [1526] = 935, - [1527] = 1091, - [1528] = 1086, - [1529] = 1121, - [1530] = 945, - [1531] = 1107, - [1532] = 1090, - [1533] = 1107, - [1534] = 1111, - [1535] = 1088, - [1536] = 1098, - [1537] = 1104, - [1538] = 1538, - [1539] = 1113, - [1540] = 1104, - [1541] = 1096, - [1542] = 1097, - [1543] = 1098, - [1544] = 1096, - [1545] = 1092, - [1546] = 995, - [1547] = 1002, - [1548] = 1102, - [1549] = 1094, - [1550] = 1092, - [1551] = 1099, - [1552] = 1102, - [1553] = 934, - [1554] = 1094, - [1555] = 1121, - [1556] = 933, - [1557] = 1091, - [1558] = 932, - [1559] = 930, - [1560] = 1099, - [1561] = 1092, - [1562] = 1094, - [1563] = 929, - [1564] = 927, - [1565] = 1094, - [1566] = 1096, - [1567] = 1087, - [1568] = 926, - [1569] = 1086, - [1570] = 1090, - [1571] = 922, - [1572] = 1102, - [1573] = 1107, - [1574] = 1102, - [1575] = 1111, - [1576] = 1088, - [1577] = 1091, - [1578] = 995, - [1579] = 1098, - [1580] = 1156, - [1581] = 1002, - [1582] = 926, - [1583] = 932, - [1584] = 8, - [1585] = 930, - [1586] = 1586, - [1587] = 1587, - [1588] = 292, - [1589] = 932, - [1590] = 2, - [1591] = 9, - [1592] = 929, - [1593] = 927, - [1594] = 307, - [1595] = 9, - [1596] = 18, - [1597] = 261, - [1598] = 4, - [1599] = 25, - [1600] = 8, - [1601] = 5, - [1602] = 3, - [1603] = 933, - [1604] = 2, - [1605] = 2, - [1606] = 314, - [1607] = 4, - [1608] = 922, - [1609] = 315, - [1610] = 316, - [1611] = 934, - [1612] = 318, - [1613] = 319, - [1614] = 3, - [1615] = 321, - [1616] = 937, - [1617] = 322, - [1618] = 323, - [1619] = 935, - [1620] = 935, - [1621] = 288, - [1622] = 1587, - [1623] = 1586, - [1624] = 937, - [1625] = 922, - [1626] = 2, - [1627] = 926, - [1628] = 937, - [1629] = 3, - [1630] = 5, - [1631] = 5, - [1632] = 937, - [1633] = 935, - [1634] = 3, - [1635] = 935, - [1636] = 9, - [1637] = 922, - [1638] = 926, - [1639] = 934, - [1640] = 935, - [1641] = 945, - [1642] = 933, - [1643] = 4, - [1644] = 927, - [1645] = 932, - [1646] = 930, - [1647] = 935, - [1648] = 23, - [1649] = 929, - [1650] = 927, - [1651] = 926, - [1652] = 922, - [1653] = 929, - [1654] = 930, - [1655] = 932, - [1656] = 4, - [1657] = 933, - [1658] = 934, - [1659] = 945, - [1660] = 18, - [1661] = 8, - [1662] = 5, - [1663] = 2, - [1664] = 25, - [1665] = 3, - [1666] = 937, - [1667] = 1667, - [1668] = 2, - [1669] = 18, - [1670] = 9, - [1671] = 25, - [1672] = 23, - [1673] = 8, - [1674] = 3, - [1675] = 9, - [1676] = 5, - [1677] = 23, - [1678] = 935, - [1679] = 937, - [1680] = 934, - [1681] = 9, - [1682] = 23, - [1683] = 4, - [1684] = 933, - [1685] = 3, - [1686] = 18, - [1687] = 2, - [1688] = 4, - [1689] = 3, - [1690] = 1690, - [1691] = 25, - [1692] = 2, - [1693] = 8, - [1694] = 5, - [1695] = 945, - [1696] = 2, - [1697] = 25, - [1698] = 5, - [1699] = 8, - [1700] = 5, - [1701] = 932, - [1702] = 927, - [1703] = 929, - [1704] = 930, - [1705] = 929, - [1706] = 8, - [1707] = 927, - [1708] = 18, - [1709] = 25, - [1710] = 926, - [1711] = 922, - [1712] = 25, - [1713] = 937, - [1714] = 5, - [1715] = 18, - [1716] = 9, - [1717] = 1667, - [1718] = 18, - [1719] = 9, - [1720] = 9, - [1721] = 934, - [1722] = 8, - [1723] = 23, - [1724] = 25, - [1725] = 25, - [1726] = 4, - [1727] = 8, - [1728] = 933, - [1729] = 18, - [1730] = 937, - [1731] = 935, - [1732] = 3, - [1733] = 4, - [1734] = 934, - [1735] = 933, - [1736] = 922, - [1737] = 18, - [1738] = 945, - [1739] = 9, - [1740] = 932, - [1741] = 930, - [1742] = 25, - [1743] = 8, - [1744] = 926, - [1745] = 927, - [1746] = 934, - [1747] = 933, - [1748] = 930, - [1749] = 927, - [1750] = 4, - [1751] = 926, - [1752] = 926, - [1753] = 922, - [1754] = 5, - [1755] = 932, - [1756] = 929, - [1757] = 929, - [1758] = 932, - [1759] = 4, - [1760] = 930, - [1761] = 930, - [1762] = 3, - [1763] = 929, - [1764] = 2, - [1765] = 927, - [1766] = 934, - [1767] = 18, - [1768] = 1690, - [1769] = 922, - [1770] = 933, - [1771] = 1771, - [1772] = 307, - [1773] = 9, - [1774] = 4, - [1775] = 5, - [1776] = 3, - [1777] = 2, - [1778] = 23, - [1779] = 288, - [1780] = 2, - [1781] = 3, - [1782] = 25, - [1783] = 323, - [1784] = 322, - [1785] = 8, - [1786] = 321, - [1787] = 25, - [1788] = 5, - [1789] = 319, - [1790] = 318, - [1791] = 4, - [1792] = 316, - [1793] = 25, - [1794] = 18, - [1795] = 8, - [1796] = 8, - [1797] = 4, - [1798] = 4, - [1799] = 1799, - [1800] = 5, - [1801] = 18, - [1802] = 4, - [1803] = 3, - [1804] = 5, - [1805] = 2, - [1806] = 3, - [1807] = 292, - [1808] = 2, - [1809] = 315, - [1810] = 5, - [1811] = 3, - [1812] = 1812, - [1813] = 9, - [1814] = 1587, - [1815] = 1586, - [1816] = 1816, - [1817] = 1817, - [1818] = 2, - [1819] = 1819, - [1820] = 25, - [1821] = 9, - [1822] = 1822, - [1823] = 1823, - [1824] = 314, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 292, - [1831] = 2, - [1832] = 3, - [1833] = 1833, - [1834] = 288, - [1835] = 5, - [1836] = 8, - [1837] = 307, - [1838] = 261, - [1839] = 18, - [1840] = 4, - [1841] = 323, - [1842] = 322, - [1843] = 18, - [1844] = 321, - [1845] = 4, - [1846] = 1846, - [1847] = 8, - [1848] = 319, - [1849] = 318, - [1850] = 25, - [1851] = 316, - [1852] = 23, - [1853] = 315, - [1854] = 261, - [1855] = 23, - [1856] = 288, - [1857] = 307, - [1858] = 5, - [1859] = 3, - [1860] = 2, - [1861] = 9, - [1862] = 9, - [1863] = 323, - [1864] = 322, - [1865] = 18, - [1866] = 321, - [1867] = 18, - [1868] = 314, - [1869] = 18, - [1870] = 319, - [1871] = 318, - [1872] = 261, - [1873] = 316, - [1874] = 9, - [1875] = 315, - [1876] = 25, - [1877] = 314, - [1878] = 8, - [1879] = 1667, - [1880] = 1690, - [1881] = 292, - [1882] = 25, - [1883] = 25, - [1884] = 8, - [1885] = 315, - [1886] = 316, - [1887] = 8, - [1888] = 318, - [1889] = 319, - [1890] = 314, - [1891] = 1816, - [1892] = 1817, - [1893] = 1819, - [1894] = 1812, - [1895] = 1771, - [1896] = 1822, - [1897] = 1823, - [1898] = 261, - [1899] = 1825, - [1900] = 1826, - [1901] = 307, - [1902] = 1827, - [1903] = 1828, - [1904] = 1829, - [1905] = 314, - [1906] = 1799, - [1907] = 321, - [1908] = 1833, - [1909] = 322, - [1910] = 323, - [1911] = 292, - [1912] = 9, - [1913] = 288, - [1914] = 1846, - [1915] = 1915, - [1916] = 23, - [1917] = 315, - [1918] = 1918, - [1919] = 1915, - [1920] = 261, - [1921] = 9, - [1922] = 288, - [1923] = 307, - [1924] = 2, - [1925] = 292, - [1926] = 3, - [1927] = 1918, - [1928] = 316, - [1929] = 323, - [1930] = 322, - [1931] = 4, - [1932] = 321, - [1933] = 5, - [1934] = 18, - [1935] = 318, - [1936] = 319, - [1937] = 1825, - [1938] = 1817, - [1939] = 1828, - [1940] = 1829, - [1941] = 316, - [1942] = 1825, - [1943] = 1943, - [1944] = 1833, - [1945] = 1945, - [1946] = 1799, - [1947] = 318, - [1948] = 1667, - [1949] = 1690, - [1950] = 1823, - [1951] = 319, - [1952] = 1943, - [1953] = 1846, - [1954] = 1846, - [1955] = 1822, - [1956] = 321, - [1957] = 292, - [1958] = 1586, - [1959] = 1587, - [1960] = 1943, - [1961] = 1945, - [1962] = 307, - [1963] = 1943, - [1964] = 1771, - [1965] = 1812, - [1966] = 316, - [1967] = 1833, - [1968] = 1945, - [1969] = 322, - [1970] = 261, - [1971] = 1829, - [1972] = 1819, - [1973] = 323, - [1974] = 1828, - [1975] = 1817, - [1976] = 1816, - [1977] = 315, - [1978] = 1943, - [1979] = 1819, - [1980] = 261, - [1981] = 288, - [1982] = 307, - [1983] = 1846, - [1984] = 292, - [1985] = 1945, - [1986] = 288, - [1987] = 1812, - [1988] = 1915, - [1989] = 316, - [1990] = 1771, - [1991] = 323, - [1992] = 322, - [1993] = 321, - [1994] = 314, - [1995] = 1822, - [1996] = 319, - [1997] = 1823, - [1998] = 318, - [1999] = 1943, - [2000] = 1826, - [2001] = 1945, - [2002] = 1943, - [2003] = 1816, - [2004] = 1918, - [2005] = 1819, - [2006] = 1812, - [2007] = 292, - [2008] = 314, - [2009] = 1945, - [2010] = 1945, - [2011] = 1771, - [2012] = 1943, - [2013] = 1945, - [2014] = 1817, - [2015] = 315, - [2016] = 1945, - [2017] = 288, - [2018] = 1945, - [2019] = 1829, - [2020] = 315, - [2021] = 1943, - [2022] = 1826, - [2023] = 1943, - [2024] = 1827, - [2025] = 292, - [2026] = 323, - [2027] = 307, - [2028] = 322, - [2029] = 321, - [2030] = 1945, - [2031] = 1690, - [2032] = 1667, - [2033] = 1833, - [2034] = 1822, - [2035] = 314, - [2036] = 1943, - [2037] = 261, - [2038] = 1827, - [2039] = 1823, - [2040] = 319, - [2041] = 318, - [2042] = 1825, - [2043] = 316, - [2044] = 315, - [2045] = 1826, - [2046] = 1943, - [2047] = 1945, - [2048] = 314, - [2049] = 1827, - [2050] = 1586, - [2051] = 261, - [2052] = 307, - [2053] = 1587, - [2054] = 288, - [2055] = 323, - [2056] = 322, - [2057] = 321, - [2058] = 319, - [2059] = 318, - [2060] = 1816, - [2061] = 1828, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2063, - [2066] = 2066, - [2067] = 1799, - [2068] = 2062, - [2069] = 2062, - [2070] = 2063, - [2071] = 2066, - [2072] = 2072, - [2073] = 2072, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2062, - [2079] = 2064, - [2080] = 2063, - [2081] = 2066, - [2082] = 2077, - [2083] = 2072, - [2084] = 2074, - [2085] = 2075, - [2086] = 2074, - [2087] = 2075, - [2088] = 2077, - [2089] = 2089, - [2090] = 2062, - [2091] = 2064, - [2092] = 2076, - [2093] = 2093, - [2094] = 2063, - [2095] = 2066, - [2096] = 2072, - [2097] = 2074, - [2098] = 2077, - [2099] = 2075, - [2100] = 2077, - [2101] = 2093, - [2102] = 2064, - [2103] = 2077, - [2104] = 2075, - [2105] = 2077, - [2106] = 2076, - [2107] = 2093, - [2108] = 1816, - [2109] = 1817, - [2110] = 1819, - [2111] = 2062, - [2112] = 2077, - [2113] = 2064, - [2114] = 2089, - [2115] = 1812, - [2116] = 1771, - [2117] = 2063, - [2118] = 2076, - [2119] = 2119, - [2120] = 2075, - [2121] = 2066, - [2122] = 2072, - [2123] = 2119, - [2124] = 2074, - [2125] = 1822, - [2126] = 2076, - [2127] = 2074, - [2128] = 2093, - [2129] = 2075, - [2130] = 2077, - [2131] = 2072, - [2132] = 1915, - [2133] = 1918, - [2134] = 2119, - [2135] = 2066, - [2136] = 2063, - [2137] = 2064, - [2138] = 2062, - [2139] = 2062, - [2140] = 2064, - [2141] = 2093, - [2142] = 2063, - [2143] = 2076, - [2144] = 1823, - [2145] = 2063, - [2146] = 2066, - [2147] = 2089, - [2148] = 2072, - [2149] = 2074, - [2150] = 1799, - [2151] = 1825, - [2152] = 2089, - [2153] = 2089, - [2154] = 2075, - [2155] = 2075, - [2156] = 2076, - [2157] = 2074, - [2158] = 2093, - [2159] = 2072, - [2160] = 2077, - [2161] = 2066, - [2162] = 2063, - [2163] = 2064, - [2164] = 2064, - [2165] = 2063, - [2166] = 2066, - [2167] = 2072, - [2168] = 2074, - [2169] = 2062, - [2170] = 1827, - [2171] = 2075, - [2172] = 2077, - [2173] = 2076, - [2174] = 2093, - [2175] = 2075, - [2176] = 2062, - [2177] = 2064, - [2178] = 2063, - [2179] = 2066, - [2180] = 2072, - [2181] = 2074, - [2182] = 2072, - [2183] = 2066, - [2184] = 2076, - [2185] = 2093, - [2186] = 2074, - [2187] = 2075, - [2188] = 2077, - [2189] = 2062, - [2190] = 2064, - [2191] = 2064, - [2192] = 1826, - [2193] = 2063, - [2194] = 2089, - [2195] = 2062, - [2196] = 1827, - [2197] = 2093, - [2198] = 1915, - [2199] = 2066, - [2200] = 2074, - [2201] = 2075, - [2202] = 2077, - [2203] = 2076, - [2204] = 2093, - [2205] = 2093, - [2206] = 1918, - [2207] = 2062, - [2208] = 2064, - [2209] = 2062, - [2210] = 2066, - [2211] = 2072, - [2212] = 2074, - [2213] = 2075, - [2214] = 2077, - [2215] = 2093, - [2216] = 2062, - [2217] = 1846, - [2218] = 2064, - [2219] = 2076, - [2220] = 1833, - [2221] = 1828, - [2222] = 1829, - [2223] = 2076, - [2224] = 1829, - [2225] = 1828, - [2226] = 4, - [2227] = 2227, - [2228] = 2075, - [2229] = 1826, - [2230] = 1825, - [2231] = 1833, - [2232] = 1823, - [2233] = 1822, - [2234] = 1771, - [2235] = 2235, - [2236] = 1812, - [2237] = 1819, - [2238] = 1817, - [2239] = 5, - [2240] = 2240, + [1423] = 1078, + [1424] = 1206, + [1425] = 1138, + [1426] = 1049, + [1427] = 336, + [1428] = 1032, + [1429] = 335, + [1430] = 1430, + [1431] = 1011, + [1432] = 334, + [1433] = 1010, + [1434] = 344, + [1435] = 333, + [1436] = 983, + [1437] = 332, + [1438] = 982, + [1439] = 316, + [1440] = 825, + [1441] = 1430, + [1442] = 824, + [1443] = 1430, + [1444] = 344, + [1445] = 331, + [1446] = 1430, + [1447] = 330, + [1448] = 1430, + [1449] = 1430, + [1450] = 1430, + [1451] = 329, + [1452] = 327, + [1453] = 326, + [1454] = 982, + [1455] = 1063, + [1456] = 825, + [1457] = 824, + [1458] = 1063, + [1459] = 822, + [1460] = 983, + [1461] = 996, + [1462] = 1049, + [1463] = 343, + [1464] = 822, + [1465] = 1035, + [1466] = 1032, + [1467] = 1011, + [1468] = 328, + [1469] = 1469, + [1470] = 1010, + [1471] = 343, + [1472] = 983, + [1473] = 982, + [1474] = 341, + [1475] = 339, + [1476] = 338, + [1477] = 1010, + [1478] = 1011, + [1479] = 1063, + [1480] = 996, + [1481] = 337, + [1482] = 336, + [1483] = 1049, + [1484] = 1430, + [1485] = 1035, + [1486] = 1032, + [1487] = 335, + [1488] = 334, + [1489] = 1430, + [1490] = 1032, + [1491] = 333, + [1492] = 1011, + [1493] = 332, + [1494] = 331, + [1495] = 330, + [1496] = 329, + [1497] = 1010, + [1498] = 1035, + [1499] = 1032, + [1500] = 328, + [1501] = 319, + [1502] = 825, + [1503] = 983, + [1504] = 319, + [1505] = 824, + [1506] = 1035, + [1507] = 982, + [1508] = 1035, + [1509] = 1430, + [1510] = 319, + [1511] = 328, + [1512] = 316, + [1513] = 329, + [1514] = 330, + [1515] = 1430, + [1516] = 1430, + [1517] = 331, + [1518] = 316, + [1519] = 1430, + [1520] = 332, + [1521] = 333, + [1522] = 996, + [1523] = 1049, + [1524] = 334, + [1525] = 335, + [1526] = 1049, + [1527] = 336, + [1528] = 822, + [1529] = 1035, + [1530] = 337, + [1531] = 996, + [1532] = 338, + [1533] = 1032, + [1534] = 982, + [1535] = 339, + [1536] = 341, + [1537] = 983, + [1538] = 1063, + [1539] = 1430, + [1540] = 341, + [1541] = 343, + [1542] = 1063, + [1543] = 1430, + [1544] = 1430, + [1545] = 1430, + [1546] = 1430, + [1547] = 326, + [1548] = 1049, + [1549] = 1430, + [1550] = 339, + [1551] = 338, + [1552] = 327, + [1553] = 1430, + [1554] = 1430, + [1555] = 1430, + [1556] = 337, + [1557] = 1430, + [1558] = 1430, + [1559] = 1011, + [1560] = 1430, + [1561] = 1010, + [1562] = 1011, + [1563] = 326, + [1564] = 1010, + [1565] = 327, + [1566] = 1566, + [1567] = 1567, + [1568] = 983, + [1569] = 1063, + [1570] = 1430, + [1571] = 1430, + [1572] = 1430, + [1573] = 1430, + [1574] = 1574, + [1575] = 982, + [1576] = 996, + [1577] = 996, + [1578] = 1430, + [1579] = 344, + [1580] = 329, + [1581] = 1022, + [1582] = 1017, + [1583] = 1010, + [1584] = 1584, + [1585] = 1023, + [1586] = 1037, + [1587] = 316, + [1588] = 1025, + [1589] = 328, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 319, + [1594] = 1594, + [1595] = 1595, + [1596] = 1018, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1011, + [1601] = 327, + [1602] = 1602, + [1603] = 319, + [1604] = 1017, + [1605] = 1017, + [1606] = 326, + [1607] = 328, + [1608] = 1018, + [1609] = 316, + [1610] = 1610, + [1611] = 1022, + [1612] = 331, + [1613] = 1613, + [1614] = 1023, + [1615] = 330, + [1616] = 1025, + [1617] = 331, + [1618] = 1037, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1017, + [1623] = 1047, + [1624] = 332, + [1625] = 333, + [1626] = 326, + [1627] = 1018, + [1628] = 330, + [1629] = 334, + [1630] = 335, + [1631] = 1631, + [1632] = 336, + [1633] = 327, + [1634] = 1032, + [1635] = 329, + [1636] = 337, + [1637] = 338, + [1638] = 339, + [1639] = 1035, + [1640] = 1050, + [1641] = 1057, + [1642] = 341, + [1643] = 1069, + [1644] = 1644, + [1645] = 1645, + [1646] = 1566, + [1647] = 1567, + [1648] = 1022, + [1649] = 2, + [1650] = 343, + [1651] = 1007, + [1652] = 3, + [1653] = 1007, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 332, + [1658] = 4, + [1659] = 1007, + [1660] = 5, + [1661] = 1661, + [1662] = 1662, + [1663] = 6, + [1664] = 1025, + [1665] = 333, + [1666] = 334, + [1667] = 335, + [1668] = 1049, + [1669] = 996, + [1670] = 7, + [1671] = 344, + [1672] = 8, + [1673] = 1037, + [1674] = 1674, + [1675] = 316, + [1676] = 336, + [1677] = 337, + [1678] = 1069, + [1679] = 9, + [1680] = 1047, + [1681] = 1681, + [1682] = 338, + [1683] = 1057, + [1684] = 1017, + [1685] = 1018, + [1686] = 982, + [1687] = 1050, + [1688] = 339, + [1689] = 341, + [1690] = 983, + [1691] = 1691, + [1692] = 1692, + [1693] = 1022, + [1694] = 343, + [1695] = 1695, + [1696] = 344, + [1697] = 1022, + [1698] = 1010, + [1699] = 344, + [1700] = 1011, + [1701] = 1023, + [1702] = 1025, + [1703] = 1037, + [1704] = 1704, + [1705] = 1047, + [1706] = 1050, + [1707] = 343, + [1708] = 1069, + [1709] = 344, + [1710] = 1057, + [1711] = 1063, + [1712] = 1023, + [1713] = 1050, + [1714] = 1032, + [1715] = 1035, + [1716] = 1047, + [1717] = 1047, + [1718] = 1057, + [1719] = 1022, + [1720] = 343, + [1721] = 1049, + [1722] = 996, + [1723] = 341, + [1724] = 1023, + [1725] = 1037, + [1726] = 341, + [1727] = 982, + [1728] = 983, + [1729] = 1025, + [1730] = 1023, + [1731] = 339, + [1732] = 1069, + [1733] = 338, + [1734] = 337, + [1735] = 336, + [1736] = 1736, + [1737] = 327, + [1738] = 339, + [1739] = 338, + [1740] = 1022, + [1741] = 337, + [1742] = 326, + [1743] = 335, + [1744] = 1057, + [1745] = 1018, + [1746] = 1017, + [1747] = 1010, + [1748] = 1011, + [1749] = 336, + [1750] = 334, + [1751] = 333, + [1752] = 1025, + [1753] = 332, + [1754] = 1037, + [1755] = 1069, + [1756] = 335, + [1757] = 331, + [1758] = 334, + [1759] = 333, + [1760] = 332, + [1761] = 327, + [1762] = 330, + [1763] = 1032, + [1764] = 1035, + [1765] = 329, + [1766] = 1766, + [1767] = 1050, + [1768] = 1057, + [1769] = 331, + [1770] = 330, + [1771] = 328, + [1772] = 1047, + [1773] = 329, + [1774] = 326, + [1775] = 1050, + [1776] = 1063, + [1777] = 328, + [1778] = 1778, + [1779] = 319, + [1780] = 1049, + [1781] = 996, + [1782] = 1063, + [1783] = 1574, + [1784] = 1469, + [1785] = 316, + [1786] = 319, + [1787] = 1787, + [1788] = 1018, + [1789] = 1069, + [1790] = 982, + [1791] = 1069, + [1792] = 1057, + [1793] = 1017, + [1794] = 1050, + [1795] = 1018, + [1796] = 1047, + [1797] = 1797, + [1798] = 1007, + [1799] = 1037, + [1800] = 1025, + [1801] = 1023, + [1802] = 983, + [1803] = 1469, + [1804] = 326, + [1805] = 1017, + [1806] = 1797, + [1807] = 327, + [1808] = 337, + [1809] = 1018, + [1810] = 344, + [1811] = 343, + [1812] = 1654, + [1813] = 341, + [1814] = 339, + [1815] = 338, + [1816] = 1069, + [1817] = 336, + [1818] = 335, + [1819] = 334, + [1820] = 333, + [1821] = 332, + [1822] = 331, + [1823] = 330, + [1824] = 329, + [1825] = 1787, + [1826] = 1469, + [1827] = 1574, + [1828] = 328, + [1829] = 1566, + [1830] = 319, + [1831] = 316, + [1832] = 1567, + [1833] = 1610, + [1834] = 1022, + [1835] = 1620, + [1836] = 1023, + [1837] = 1025, + [1838] = 1613, + [1839] = 1037, + [1840] = 1662, + [1841] = 1704, + [1842] = 1766, + [1843] = 1766, + [1844] = 1661, + [1845] = 1787, + [1846] = 1674, + [1847] = 1584, + [1848] = 1057, + [1849] = 1695, + [1850] = 1797, + [1851] = 1778, + [1852] = 1692, + [1853] = 1574, + [1854] = 1050, + [1855] = 1566, + [1856] = 1567, + [1857] = 1047, + [1858] = 1047, + [1859] = 1654, + [1860] = 1681, + [1861] = 1037, + [1862] = 1025, + [1863] = 1620, + [1864] = 1736, + [1865] = 1023, + [1866] = 1022, + [1867] = 1662, + [1868] = 1645, + [1869] = 1007, + [1870] = 1656, + [1871] = 1681, + [1872] = 1469, + [1873] = 1574, + [1874] = 1631, + [1875] = 1018, + [1876] = 1567, + [1877] = 1566, + [1878] = 1017, + [1879] = 1644, + [1880] = 1602, + [1881] = 1599, + [1882] = 1597, + [1883] = 1069, + [1884] = 1057, + [1885] = 1591, + [1886] = 1050, + [1887] = 1619, + [1888] = 1594, + [1889] = 1655, + [1890] = 1598, + [1891] = 1595, + [1892] = 1592, + [1893] = 1621, + [1894] = 1691, + [1895] = 1590, + [1896] = 1613, + [1897] = 1661, + [1898] = 1898, + [1899] = 1602, + [1900] = 1656, + [1901] = 1566, + [1902] = 1567, + [1903] = 1610, + [1904] = 1898, + [1905] = 1898, + [1906] = 1644, + [1907] = 1610, + [1908] = 1681, + [1909] = 1766, + [1910] = 1787, + [1911] = 1662, + [1912] = 1591, + [1913] = 1797, + [1914] = 1620, + [1915] = 1898, + [1916] = 1574, + [1917] = 1469, + [1918] = 1602, + [1919] = 1599, + [1920] = 1654, + [1921] = 1594, + [1922] = 1597, + [1923] = 1655, + [1924] = 1595, + [1925] = 1592, + [1926] = 1797, + [1927] = 1787, + [1928] = 1598, + [1929] = 1654, + [1930] = 1590, + [1931] = 1766, + [1932] = 1620, + [1933] = 1631, + [1934] = 1621, + [1935] = 1584, + [1936] = 1691, + [1937] = 1621, + [1938] = 1691, + [1939] = 1598, + [1940] = 1584, + [1941] = 1594, + [1942] = 1662, + [1943] = 1590, + [1944] = 1591, + [1945] = 1681, + [1946] = 1592, + [1947] = 1595, + [1948] = 1898, + [1949] = 1898, + [1950] = 1613, + [1951] = 1898, + [1952] = 1898, + [1953] = 1898, + [1954] = 1619, + [1955] = 1898, + [1956] = 1613, + [1957] = 1619, + [1958] = 1898, + [1959] = 1655, + [1960] = 1631, + [1961] = 1661, + [1962] = 1644, + [1963] = 1597, + [1964] = 1645, + [1965] = 1766, + [1966] = 1898, + [1967] = 1898, + [1968] = 1692, + [1969] = 1898, + [1970] = 1898, + [1971] = 1695, + [1972] = 1898, + [1973] = 1674, + [1974] = 1778, + [1975] = 1787, + [1976] = 1898, + [1977] = 1584, + [1978] = 1898, + [1979] = 1681, + [1980] = 1736, + [1981] = 1898, + [1982] = 1674, + [1983] = 1662, + [1984] = 1656, + [1985] = 1620, + [1986] = 1898, + [1987] = 1654, + [1988] = 1898, + [1989] = 1797, + [1990] = 1787, + [1991] = 1766, + [1992] = 1898, + [1993] = 1898, + [1994] = 1645, + [1995] = 1631, + [1996] = 1898, + [1997] = 1797, + [1998] = 1645, + [1999] = 1619, + [2000] = 1778, + [2001] = 1898, + [2002] = 1704, + [2003] = 1736, + [2004] = 1898, + [2005] = 1681, + [2006] = 1599, + [2007] = 1736, + [2008] = 1692, + [2009] = 1898, + [2010] = 1695, + [2011] = 1654, + [2012] = 1898, + [2013] = 1704, + [2014] = 1704, + [2015] = 1620, + [2016] = 1610, + [2017] = 1662, + [2018] = 1695, + [2019] = 1602, + [2020] = 1692, + [2021] = 1778, + [2022] = 1599, + [2023] = 1597, + [2024] = 1655, + [2025] = 1656, + [2026] = 1898, + [2027] = 1674, + [2028] = 1595, + [2029] = 1592, + [2030] = 1590, + [2031] = 1691, + [2032] = 1621, + [2033] = 1598, + [2034] = 1594, + [2035] = 1898, + [2036] = 1591, + [2037] = 1661, + [2038] = 1644, + [2039] = 1787, + [2040] = 1631, + [2041] = 2041, + [2042] = 1766, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 1797, + [2049] = 2049, + [2050] = 2050, + [2051] = 2051, + [2052] = 2043, + [2053] = 2047, + [2054] = 2047, + [2055] = 2043, + [2056] = 1645, + [2057] = 1797, + [2058] = 2045, + [2059] = 2041, + [2060] = 2044, + [2061] = 1766, + [2062] = 1654, + [2063] = 2047, + [2064] = 1704, + [2065] = 1787, + [2066] = 2043, + [2067] = 2047, + [2068] = 2043, + [2069] = 2041, + [2070] = 1620, + [2071] = 2049, + [2072] = 2047, + [2073] = 2043, + [2074] = 2041, + [2075] = 2051, + [2076] = 1654, + [2077] = 2047, + [2078] = 2078, + [2079] = 2041, + [2080] = 2043, + [2081] = 1620, + [2082] = 2044, + [2083] = 1695, + [2084] = 1662, + [2085] = 2045, + [2086] = 2047, + [2087] = 2043, + [2088] = 2041, + [2089] = 2047, + [2090] = 1692, + [2091] = 1662, + [2092] = 2043, + [2093] = 1681, + [2094] = 2047, + [2095] = 2043, + [2096] = 2044, + [2097] = 1681, + [2098] = 2047, + [2099] = 1656, + [2100] = 2043, + [2101] = 2101, + [2102] = 2047, + [2103] = 2043, + [2104] = 2104, + [2105] = 2047, + [2106] = 2043, + [2107] = 2041, + [2108] = 2043, + [2109] = 2047, + [2110] = 2049, + [2111] = 2041, + [2112] = 2044, + [2113] = 2045, + [2114] = 2114, + [2115] = 2045, + [2116] = 2051, + [2117] = 2043, + [2118] = 2047, + [2119] = 2047, + [2120] = 2047, + [2121] = 2044, + [2122] = 1620, + [2123] = 2049, + [2124] = 2051, + [2125] = 1766, + [2126] = 2045, + [2127] = 2041, + [2128] = 1787, + [2129] = 1797, + [2130] = 2041, + [2131] = 1654, + [2132] = 1620, + [2133] = 2047, + [2134] = 2041, + [2135] = 1644, + [2136] = 1662, + [2137] = 2045, + [2138] = 1736, + [2139] = 2041, + [2140] = 1610, + [2141] = 2043, + [2142] = 1681, + [2143] = 2047, + [2144] = 1591, + [2145] = 2049, + [2146] = 2051, + [2147] = 1594, + [2148] = 2041, + [2149] = 2104, + [2150] = 2041, + [2151] = 2043, + [2152] = 1598, + [2153] = 2153, + [2154] = 2047, + [2155] = 2049, + [2156] = 2051, + [2157] = 2049, + [2158] = 2051, + [2159] = 1619, + [2160] = 2044, + [2161] = 2045, + [2162] = 1613, + [2163] = 2114, + [2164] = 2041, + [2165] = 2041, + [2166] = 2044, + [2167] = 2043, + [2168] = 2047, + [2169] = 2045, + [2170] = 2044, + [2171] = 2041, + [2172] = 2045, + [2173] = 1602, + [2174] = 2174, + [2175] = 1599, + [2176] = 1597, + [2177] = 2043, + [2178] = 1655, + [2179] = 1661, + [2180] = 1595, + [2181] = 1778, + [2182] = 2041, + [2183] = 1674, + [2184] = 2041, + [2185] = 2153, + [2186] = 2043, + [2187] = 2041, + [2188] = 1592, + [2189] = 1766, + [2190] = 2041, + [2191] = 1590, + [2192] = 1584, + [2193] = 2044, + [2194] = 1787, + [2195] = 1797, + [2196] = 2043, + [2197] = 1681, + [2198] = 1654, + [2199] = 1662, + [2200] = 1691, + [2201] = 1621, + [2202] = 2202, + [2203] = 2202, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2204, + [2210] = 2205, + [2211] = 2206, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2212, + [2216] = 2213, + [2217] = 2214, + [2218] = 2207, + [2219] = 2219, + [2220] = 2219, + [2221] = 2207, + [2222] = 2219, + [2223] = 2219, + [2224] = 2219, + [2225] = 2214, + [2226] = 2219, + [2227] = 2213, + [2228] = 2207, + [2229] = 2208, + [2230] = 2204, + [2231] = 2219, + [2232] = 2205, + [2233] = 2219, + [2234] = 2206, + [2235] = 2219, + [2236] = 2212, + [2237] = 2213, + [2238] = 2214, + [2239] = 2219, + [2240] = 2212, [2241] = 2241, - [2242] = 2076, - [2243] = 1816, - [2244] = 2089, - [2245] = 2062, - [2246] = 2074, - [2247] = 2072, - [2248] = 2064, - [2249] = 2077, - [2250] = 1846, - [2251] = 2063, - [2252] = 3, - [2253] = 2, - [2254] = 2066, - [2255] = 2072, - [2256] = 2235, - [2257] = 2074, - [2258] = 2075, - [2259] = 2077, - [2260] = 2260, - [2261] = 2089, - [2262] = 2064, - [2263] = 2063, - [2264] = 1816, - [2265] = 2076, - [2266] = 2089, - [2267] = 2075, - [2268] = 2074, - [2269] = 2072, - [2270] = 2066, - [2271] = 2072, - [2272] = 2063, - [2273] = 18, - [2274] = 2064, - [2275] = 9, - [2276] = 2077, - [2277] = 25, - [2278] = 1846, - [2279] = 8, - [2280] = 1833, - [2281] = 2076, - [2282] = 2089, - [2283] = 2076, - [2284] = 2089, - [2285] = 2062, - [2286] = 1829, - [2287] = 2074, - [2288] = 2072, - [2289] = 2066, - [2290] = 1828, - [2291] = 2066, - [2292] = 2063, - [2293] = 1827, - [2294] = 1826, - [2295] = 2076, - [2296] = 1825, - [2297] = 1823, - [2298] = 1822, - [2299] = 1771, - [2300] = 2089, - [2301] = 1812, - [2302] = 1819, - [2303] = 1817, - [2304] = 1771, - [2305] = 1827, - [2306] = 1816, - [2307] = 1817, - [2308] = 1819, - [2309] = 1826, - [2310] = 1812, - [2311] = 1771, - [2312] = 1825, - [2313] = 1822, - [2314] = 1823, - [2315] = 1826, - [2316] = 1827, - [2317] = 1828, - [2318] = 1829, - [2319] = 1833, - [2320] = 1846, - [2321] = 1828, - [2322] = 1829, - [2323] = 1833, - [2324] = 1846, - [2325] = 1819, - [2326] = 1823, - [2327] = 1822, - [2328] = 1812, - [2329] = 1825, - [2330] = 1690, - [2331] = 1817, - [2332] = 1816, - [2333] = 1667, - [2334] = 1586, - [2335] = 2335, - [2336] = 1587, + [2242] = 2206, + [2243] = 2219, + [2244] = 2205, + [2245] = 2204, + [2246] = 2208, + [2247] = 2207, + [2248] = 2219, + [2249] = 2249, + [2250] = 2219, + [2251] = 2251, + [2252] = 2219, + [2253] = 2219, + [2254] = 2207, + [2255] = 2219, + [2256] = 2219, + [2257] = 2207, + [2258] = 2208, + [2259] = 2204, + [2260] = 2205, + [2261] = 2206, + [2262] = 2219, + [2263] = 2263, + [2264] = 2212, + [2265] = 2219, + [2266] = 2213, + [2267] = 2214, + [2268] = 2214, + [2269] = 2213, + [2270] = 2212, + [2271] = 2206, + [2272] = 2205, + [2273] = 2219, + [2274] = 2204, + [2275] = 2208, + [2276] = 2207, + [2277] = 2277, + [2278] = 2214, + [2279] = 2213, + [2280] = 2219, + [2281] = 2212, + [2282] = 2206, + [2283] = 2219, + [2284] = 2284, + [2285] = 2205, + [2286] = 2207, + [2287] = 2208, + [2288] = 2204, + [2289] = 2205, + [2290] = 2219, + [2291] = 2206, + [2292] = 2212, + [2293] = 2293, + [2294] = 2263, + [2295] = 2213, + [2296] = 2214, + [2297] = 2297, + [2298] = 2298, + [2299] = 2299, + [2300] = 2300, + [2301] = 2204, + [2302] = 2208, + [2303] = 2303, + [2304] = 2304, + [2305] = 2207, + [2306] = 2306, + [2307] = 2219, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2207, + [2312] = 2312, + [2313] = 2313, + [2314] = 2214, + [2315] = 2213, + [2316] = 2212, + [2317] = 2206, + [2318] = 2205, + [2319] = 2319, + [2320] = 2320, + [2321] = 2204, + [2322] = 2208, + [2323] = 2207, + [2324] = 2219, + [2325] = 1766, + [2326] = 1787, + [2327] = 1797, + [2328] = 1654, + [2329] = 1620, + [2330] = 1662, + [2331] = 2308, + [2332] = 1681, + [2333] = 2312, + [2334] = 2207, + [2335] = 2313, + [2336] = 2219, [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2340, - [2341] = 1918, - [2342] = 1586, - [2343] = 1587, - [2344] = 1690, - [2345] = 2345, - [2346] = 2335, - [2347] = 2347, - [2348] = 2348, - [2349] = 1667, - [2350] = 2350, + [2338] = 2207, + [2339] = 2219, + [2340] = 2207, + [2341] = 2308, + [2342] = 2312, + [2343] = 2207, + [2344] = 2313, + [2345] = 2207, + [2346] = 2346, + [2347] = 2207, + [2348] = 2207, + [2349] = 2212, + [2350] = 2207, [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 1915, + [2352] = 2208, + [2353] = 2204, + [2354] = 2354, [2355] = 2355, [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2359, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2357, - [2366] = 2359, - [2367] = 2358, - [2368] = 2368, - [2369] = 2359, - [2370] = 2370, - [2371] = 2358, - [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2358, - [2376] = 2376, - [2377] = 2359, + [2357] = 2213, + [2358] = 2205, + [2359] = 2206, + [2360] = 2360, + [2361] = 2212, + [2362] = 2219, + [2363] = 2213, + [2364] = 2214, + [2365] = 2297, + [2366] = 2298, + [2367] = 2206, + [2368] = 2299, + [2369] = 2300, + [2370] = 2207, + [2371] = 2303, + [2372] = 2304, + [2373] = 2308, + [2374] = 2312, + [2375] = 2207, + [2376] = 2313, + [2377] = 2309, [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 2358, - [2384] = 2384, - [2385] = 2385, - [2386] = 2359, - [2387] = 2358, - [2388] = 2388, - [2389] = 2358, - [2390] = 2390, - [2391] = 2358, - [2392] = 2359, - [2393] = 2393, - [2394] = 2359, - [2395] = 2358, - [2396] = 2356, - [2397] = 2359, - [2398] = 2398, - [2399] = 2358, - [2400] = 2358, - [2401] = 2358, - [2402] = 2358, - [2403] = 2381, - [2404] = 2404, - [2405] = 2358, - [2406] = 2359, - [2407] = 2358, - [2408] = 2408, - [2409] = 2358, - [2410] = 2410, - [2411] = 2411, - [2412] = 2393, - [2413] = 2358, - [2414] = 2384, - [2415] = 2411, - [2416] = 2378, - [2417] = 2347, - [2418] = 2390, - [2419] = 2372, - [2420] = 2388, - [2421] = 2368, - [2422] = 2339, - [2423] = 2362, - [2424] = 2357, - [2425] = 2363, - [2426] = 2426, - [2427] = 2364, - [2428] = 2359, - [2429] = 2363, - [2430] = 2357, - [2431] = 2358, - [2432] = 2368, - [2433] = 2372, - [2434] = 2378, - [2435] = 2356, - [2436] = 2384, - [2437] = 2358, - [2438] = 2410, - [2439] = 2358, - [2440] = 2393, - [2441] = 2411, - [2442] = 2410, - [2443] = 2359, - [2444] = 2380, - [2445] = 2408, - [2446] = 2379, - [2447] = 2404, - [2448] = 2381, - [2449] = 2398, - [2450] = 2356, - [2451] = 2398, - [2452] = 2363, - [2453] = 2359, - [2454] = 2359, - [2455] = 2376, - [2456] = 2374, - [2457] = 2358, - [2458] = 2357, - [2459] = 2370, - [2460] = 2368, - [2461] = 2373, - [2462] = 2359, - [2463] = 2359, - [2464] = 2359, - [2465] = 2373, - [2466] = 2370, - [2467] = 2372, - [2468] = 2378, - [2469] = 2384, - [2470] = 2363, - [2471] = 2364, - [2472] = 2362, - [2473] = 2393, - [2474] = 2411, - [2475] = 2357, - [2476] = 2368, - [2477] = 2372, - [2478] = 2410, - [2479] = 2378, - [2480] = 2384, - [2481] = 2393, - [2482] = 2411, - [2483] = 2410, - [2484] = 2408, - [2485] = 2404, - [2486] = 2381, - [2487] = 2398, - [2488] = 2356, - [2489] = 2358, - [2490] = 2408, + [2379] = 2310, + [2380] = 2313, + [2381] = 2214, + [2382] = 2207, + [2383] = 2346, + [2384] = 2378, + [2385] = 2202, + [2386] = 2207, + [2387] = 2202, + [2388] = 2205, + [2389] = 2207, + [2390] = 2202, + [2391] = 2207, + [2392] = 2207, + [2393] = 2378, + [2394] = 2319, + [2395] = 2356, + [2396] = 2320, + [2397] = 2204, + [2398] = 2208, + [2399] = 2207, + [2400] = 2207, + [2401] = 2207, + [2402] = 2214, + [2403] = 2207, + [2404] = 2219, + [2405] = 2207, + [2406] = 2284, + [2407] = 2320, + [2408] = 2207, + [2409] = 2263, + [2410] = 2207, + [2411] = 2319, + [2412] = 2308, + [2413] = 2312, + [2414] = 2313, + [2415] = 2207, + [2416] = 2207, + [2417] = 2207, + [2418] = 2207, + [2419] = 2207, + [2420] = 2207, + [2421] = 2207, + [2422] = 2297, + [2423] = 2298, + [2424] = 2207, + [2425] = 2299, + [2426] = 2300, + [2427] = 2207, + [2428] = 2207, + [2429] = 2207, + [2430] = 2303, + [2431] = 2304, + [2432] = 2207, + [2433] = 2207, + [2434] = 2207, + [2435] = 2207, + [2436] = 2309, + [2437] = 2207, + [2438] = 2310, + [2439] = 2207, + [2440] = 2207, + [2441] = 2207, + [2442] = 2207, + [2443] = 2207, + [2444] = 2263, + [2445] = 2445, + [2446] = 2319, + [2447] = 2320, + [2448] = 2448, + [2449] = 2284, + [2450] = 2354, + [2451] = 2354, + [2452] = 2356, + [2453] = 2356, + [2454] = 2208, + [2455] = 2284, + [2456] = 2297, + [2457] = 2204, + [2458] = 2219, + [2459] = 2298, + [2460] = 2202, + [2461] = 2205, + [2462] = 2284, + [2463] = 2463, + [2464] = 2351, + [2465] = 2465, + [2466] = 2354, + [2467] = 2378, + [2468] = 2206, + [2469] = 2378, + [2470] = 2202, + [2471] = 2207, + [2472] = 2356, + [2473] = 2212, + [2474] = 2208, + [2475] = 2204, + [2476] = 2207, + [2477] = 2205, + [2478] = 2206, + [2479] = 2212, + [2480] = 2299, + [2481] = 2300, + [2482] = 2351, + [2483] = 2213, + [2484] = 2213, + [2485] = 2214, + [2486] = 2346, + [2487] = 2378, + [2488] = 2207, + [2489] = 2263, + [2490] = 2202, [2491] = 2491, - [2492] = 2359, - [2493] = 2408, - [2494] = 2359, - [2495] = 2359, - [2496] = 2496, - [2497] = 2359, - [2498] = 2359, - [2499] = 2404, - [2500] = 2359, - [2501] = 2356, - [2502] = 2381, - [2503] = 2398, - [2504] = 2398, - [2505] = 2381, - [2506] = 2404, - [2507] = 2408, - [2508] = 2410, - [2509] = 2411, - [2510] = 2393, - [2511] = 2384, - [2512] = 2378, - [2513] = 2372, - [2514] = 2368, - [2515] = 2357, - [2516] = 2363, - [2517] = 2359, - [2518] = 2356, - [2519] = 2359, - [2520] = 2359, - [2521] = 2359, - [2522] = 2404, - [2523] = 2359, - [2524] = 2359, - [2525] = 2359, - [2526] = 2359, - [2527] = 2359, - [2528] = 2359, - [2529] = 2359, - [2530] = 2359, - [2531] = 2374, - [2532] = 2359, - [2533] = 2359, - [2534] = 2359, - [2535] = 2376, - [2536] = 2359, - [2537] = 2359, - [2538] = 2359, - [2539] = 2359, - [2540] = 2390, - [2541] = 2388, - [2542] = 2408, - [2543] = 2361, - [2544] = 2359, - [2545] = 2358, - [2546] = 2546, - [2547] = 2358, - [2548] = 2359, - [2549] = 2359, - [2550] = 2362, - [2551] = 2362, - [2552] = 2364, - [2553] = 2364, - [2554] = 2410, - [2555] = 2370, - [2556] = 2373, - [2557] = 2404, - [2558] = 2370, - [2559] = 2373, - [2560] = 2560, - [2561] = 2358, - [2562] = 2374, - [2563] = 2380, - [2564] = 2376, - [2565] = 2379, - [2566] = 2411, - [2567] = 2358, - [2568] = 2568, - [2569] = 2358, - [2570] = 2374, - [2571] = 2376, - [2572] = 2379, - [2573] = 2380, - [2574] = 2376, - [2575] = 2374, - [2576] = 2358, - [2577] = 2577, - [2578] = 2358, - [2579] = 2393, - [2580] = 2388, - [2581] = 2358, - [2582] = 2390, - [2583] = 2361, - [2584] = 2373, - [2585] = 2370, - [2586] = 2358, - [2587] = 2379, - [2588] = 2363, - [2589] = 2357, - [2590] = 2364, - [2591] = 2362, - [2592] = 2368, - [2593] = 2380, - [2594] = 2372, - [2595] = 2378, - [2596] = 2384, - [2597] = 2358, - [2598] = 2393, - [2599] = 2411, - [2600] = 2410, - [2601] = 2408, - [2602] = 2404, - [2603] = 2381, - [2604] = 2358, - [2605] = 2398, - [2606] = 2356, - [2607] = 2359, - [2608] = 2358, - [2609] = 2384, - [2610] = 2359, - [2611] = 2359, - [2612] = 2358, - [2613] = 2390, - [2614] = 2362, - [2615] = 2356, - [2616] = 2398, - [2617] = 2381, - [2618] = 2404, - [2619] = 2408, - [2620] = 2410, - [2621] = 2411, - [2622] = 2393, - [2623] = 2384, - [2624] = 2378, - [2625] = 2372, - [2626] = 2368, - [2627] = 2357, - [2628] = 2363, - [2629] = 2364, - [2630] = 2370, - [2631] = 2358, - [2632] = 2379, - [2633] = 2373, - [2634] = 2388, - [2635] = 2380, - [2636] = 2374, - [2637] = 2376, - [2638] = 2359, - [2639] = 2381, - [2640] = 2378, - [2641] = 2379, - [2642] = 2380, - [2643] = 2390, - [2644] = 2388, - [2645] = 2359, - [2646] = 2358, - [2647] = 2359, - [2648] = 2358, - [2649] = 2359, - [2650] = 2388, - [2651] = 2358, - [2652] = 2381, - [2653] = 2358, - [2654] = 2358, - [2655] = 2358, - [2656] = 2390, - [2657] = 2388, - [2658] = 2358, - [2659] = 1918, - [2660] = 2380, - [2661] = 1915, - [2662] = 2379, - [2663] = 2663, - [2664] = 2390, - [2665] = 2359, - [2666] = 2358, - [2667] = 2363, - [2668] = 2668, - [2669] = 2376, - [2670] = 2374, - [2671] = 2368, - [2672] = 2358, - [2673] = 2358, - [2674] = 2372, - [2675] = 2358, - [2676] = 2378, - [2677] = 2384, - [2678] = 2373, - [2679] = 2370, - [2680] = 2358, - [2681] = 2393, - [2682] = 2411, - [2683] = 2364, - [2684] = 2362, - [2685] = 2358, - [2686] = 2410, - [2687] = 2408, - [2688] = 2404, - [2689] = 2381, - [2690] = 2398, - [2691] = 2356, - [2692] = 2692, - [2693] = 2693, - [2694] = 2359, - [2695] = 2363, - [2696] = 2357, - [2697] = 2368, - [2698] = 2372, - [2699] = 2378, - [2700] = 2358, - [2701] = 2362, - [2702] = 2358, - [2703] = 2358, - [2704] = 2372, - [2705] = 2358, - [2706] = 2364, - [2707] = 2384, - [2708] = 2393, - [2709] = 2370, - [2710] = 2373, - [2711] = 2359, - [2712] = 2359, - [2713] = 2368, - [2714] = 2348, - [2715] = 2374, - [2716] = 2376, - [2717] = 2358, - [2718] = 2357, - [2719] = 2363, - [2720] = 2345, - [2721] = 2390, - [2722] = 2388, - [2723] = 2411, - [2724] = 2350, - [2725] = 2379, - [2726] = 2380, - [2727] = 2358, + [2492] = 2263, + [2493] = 2214, + [2494] = 2263, + [2495] = 2495, + [2496] = 2356, + [2497] = 2297, + [2498] = 2298, + [2499] = 2299, + [2500] = 2300, + [2501] = 2213, + [2502] = 2351, + [2503] = 2378, + [2504] = 1566, + [2505] = 2354, + [2506] = 2312, + [2507] = 2303, + [2508] = 2304, + [2509] = 2356, + [2510] = 2354, + [2511] = 2511, + [2512] = 2351, + [2513] = 2263, + [2514] = 2263, + [2515] = 2378, + [2516] = 2309, + [2517] = 2202, + [2518] = 2310, + [2519] = 2263, + [2520] = 2354, + [2521] = 2263, + [2522] = 2263, + [2523] = 2263, + [2524] = 2378, + [2525] = 2263, + [2526] = 2263, + [2527] = 2263, + [2528] = 2263, + [2529] = 2529, + [2530] = 2263, + [2531] = 2263, + [2532] = 2263, + [2533] = 2378, + [2534] = 2263, + [2535] = 2354, + [2536] = 2263, + [2537] = 2356, + [2538] = 2263, + [2539] = 2202, + [2540] = 2263, + [2541] = 2320, + [2542] = 2202, + [2543] = 2378, + [2544] = 2263, + [2545] = 2319, + [2546] = 2378, + [2547] = 2263, + [2548] = 2465, + [2549] = 2319, + [2550] = 2207, + [2551] = 2263, + [2552] = 2320, + [2553] = 2354, + [2554] = 2208, + [2555] = 2356, + [2556] = 2263, + [2557] = 2356, + [2558] = 2263, + [2559] = 2354, + [2560] = 2351, + [2561] = 2263, + [2562] = 2263, + [2563] = 2208, + [2564] = 2351, + [2565] = 2263, + [2566] = 2297, + [2567] = 2263, + [2568] = 2378, + [2569] = 2298, + [2570] = 2263, + [2571] = 2263, + [2572] = 2263, + [2573] = 2354, + [2574] = 2378, + [2575] = 2356, + [2576] = 2202, + [2577] = 2263, + [2578] = 2204, + [2579] = 2207, + [2580] = 2208, + [2581] = 2202, + [2582] = 2310, + [2583] = 2378, + [2584] = 2309, + [2585] = 2204, + [2586] = 2263, + [2587] = 2205, + [2588] = 2263, + [2589] = 2354, + [2590] = 2590, + [2591] = 2356, + [2592] = 2263, + [2593] = 2356, + [2594] = 2354, + [2595] = 2304, + [2596] = 2303, + [2597] = 2206, + [2598] = 2202, + [2599] = 2378, + [2600] = 2263, + [2601] = 2263, + [2602] = 2263, + [2603] = 2263, + [2604] = 2212, + [2605] = 2263, + [2606] = 2300, + [2607] = 2299, + [2608] = 2354, + [2609] = 2263, + [2610] = 2263, + [2611] = 2298, + [2612] = 2297, + [2613] = 2356, + [2614] = 2213, + [2615] = 2615, + [2616] = 2214, + [2617] = 2263, + [2618] = 2284, + [2619] = 2202, + [2620] = 2378, + [2621] = 2284, + [2622] = 2263, + [2623] = 2299, + [2624] = 2300, + [2625] = 2354, + [2626] = 2356, + [2627] = 2263, + [2628] = 2354, + [2629] = 2356, + [2630] = 2346, + [2631] = 2378, + [2632] = 2356, + [2633] = 2207, + [2634] = 2202, + [2635] = 2378, + [2636] = 2351, + [2637] = 2356, + [2638] = 2354, + [2639] = 2263, + [2640] = 2205, + [2641] = 2202, + [2642] = 2642, + [2643] = 2297, + [2644] = 2298, + [2645] = 2202, + [2646] = 2207, + [2647] = 2378, + [2648] = 2202, + [2649] = 2378, + [2650] = 2299, + [2651] = 2300, + [2652] = 2356, + [2653] = 2653, + [2654] = 2356, + [2655] = 2354, + [2656] = 2263, + [2657] = 2207, + [2658] = 2658, + [2659] = 2378, + [2660] = 2202, + [2661] = 2263, + [2662] = 2354, + [2663] = 2356, + [2664] = 2303, + [2665] = 2354, + [2666] = 2304, + [2667] = 2354, + [2668] = 2263, + [2669] = 2356, + [2670] = 2202, + [2671] = 2378, + [2672] = 2202, + [2673] = 2378, + [2674] = 2309, + [2675] = 2310, + [2676] = 2263, + [2677] = 2677, + [2678] = 2202, + [2679] = 2378, + [2680] = 2284, + [2681] = 2303, + [2682] = 2304, + [2683] = 2354, + [2684] = 2320, + [2685] = 2263, + [2686] = 2356, + [2687] = 2319, + [2688] = 2356, + [2689] = 2354, + [2690] = 2263, + [2691] = 2202, + [2692] = 2212, + [2693] = 2354, + [2694] = 2378, + [2695] = 2206, + [2696] = 2263, + [2697] = 2354, + [2698] = 2356, + [2699] = 2699, + [2700] = 2202, + [2701] = 2356, + [2702] = 2308, + [2703] = 2351, + [2704] = 2202, + [2705] = 2356, + [2706] = 2202, + [2707] = 2378, + [2708] = 2284, + [2709] = 2378, + [2710] = 2354, + [2711] = 2310, + [2712] = 2263, + [2713] = 2263, + [2714] = 2263, + [2715] = 2309, + [2716] = 2354, + [2717] = 2319, + [2718] = 2310, + [2719] = 2320, + [2720] = 2309, + [2721] = 2354, + [2722] = 2378, + [2723] = 2354, + [2724] = 2202, + [2725] = 2356, + [2726] = 2356, + [2727] = 2356, [2728] = 2351, - [2729] = 2410, - [2730] = 2730, - [2731] = 2546, - [2732] = 2361, - [2733] = 2356, - [2734] = 2359, - [2735] = 2388, - [2736] = 2390, - [2737] = 2730, - [2738] = 2380, - [2739] = 2352, - [2740] = 2379, - [2741] = 2358, - [2742] = 2408, - [2743] = 2398, - [2744] = 2337, - [2745] = 2338, + [2729] = 2202, + [2730] = 2202, + [2731] = 2304, + [2732] = 2303, + [2733] = 2378, + [2734] = 2284, + [2735] = 2354, + [2736] = 2263, + [2737] = 2263, + [2738] = 1469, + [2739] = 1567, + [2740] = 2740, + [2741] = 1574, + [2742] = 329, + [2743] = 332, + [2744] = 2744, + [2745] = 2745, [2746] = 2746, - [2747] = 2376, - [2748] = 2374, - [2749] = 2363, - [2750] = 2357, - [2751] = 2368, - [2752] = 2372, - [2753] = 2378, - [2754] = 2384, - [2755] = 2393, - [2756] = 2373, - [2757] = 2370, - [2758] = 2411, - [2759] = 2410, - [2760] = 2408, - [2761] = 2364, - [2762] = 2362, - [2763] = 2404, - [2764] = 2381, - [2765] = 2353, - [2766] = 2398, - [2767] = 2356, - [2768] = 2398, - [2769] = 2340, - [2770] = 2358, - [2771] = 2355, - [2772] = 2404, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 1613, + [2752] = 2752, + [2753] = 2753, + [2754] = 319, + [2755] = 328, + [2756] = 1619, + [2757] = 330, + [2758] = 331, + [2759] = 2759, + [2760] = 333, + [2761] = 335, + [2762] = 336, + [2763] = 337, + [2764] = 338, + [2765] = 339, + [2766] = 341, + [2767] = 343, + [2768] = 344, + [2769] = 334, + [2770] = 327, + [2771] = 326, + [2772] = 316, [2773] = 2773, - [2774] = 322, - [2775] = 2775, - [2776] = 2730, - [2777] = 322, - [2778] = 323, - [2779] = 321, - [2780] = 2546, - [2781] = 318, - [2782] = 292, - [2783] = 316, - [2784] = 315, - [2785] = 316, - [2786] = 315, - [2787] = 288, - [2788] = 318, - [2789] = 261, - [2790] = 2668, - [2791] = 2546, + [2774] = 2774, + [2775] = 327, + [2776] = 326, + [2777] = 335, + [2778] = 341, + [2779] = 339, + [2780] = 338, + [2781] = 337, + [2782] = 336, + [2783] = 335, + [2784] = 2784, + [2785] = 334, + [2786] = 333, + [2787] = 332, + [2788] = 331, + [2789] = 330, + [2790] = 329, + [2791] = 328, [2792] = 319, - [2793] = 292, - [2794] = 316, - [2795] = 288, - [2796] = 319, - [2797] = 318, - [2798] = 314, - [2799] = 292, - [2800] = 319, - [2801] = 314, - [2802] = 2730, - [2803] = 318, - [2804] = 314, - [2805] = 314, - [2806] = 321, - [2807] = 307, - [2808] = 307, - [2809] = 261, - [2810] = 319, - [2811] = 316, - [2812] = 322, - [2813] = 323, - [2814] = 261, - [2815] = 288, - [2816] = 321, - [2817] = 292, - [2818] = 292, - [2819] = 321, - [2820] = 319, - [2821] = 307, - [2822] = 318, - [2823] = 322, - [2824] = 307, - [2825] = 316, - [2826] = 288, - [2827] = 261, - [2828] = 314, - [2829] = 288, - [2830] = 315, - [2831] = 315, - [2832] = 323, - [2833] = 307, - [2834] = 322, - [2835] = 321, - [2836] = 315, - [2837] = 261, - [2838] = 323, - [2839] = 323, - [2840] = 2840, - [2841] = 307, - [2842] = 288, - [2843] = 323, - [2844] = 314, - [2845] = 318, - [2846] = 316, - [2847] = 322, - [2848] = 321, - [2849] = 315, - [2850] = 261, - [2851] = 319, - [2852] = 318, - [2853] = 288, - [2854] = 292, - [2855] = 314, - [2856] = 316, - [2857] = 261, - [2858] = 307, - [2859] = 261, - [2860] = 319, - [2861] = 307, - [2862] = 2546, - [2863] = 315, - [2864] = 2730, - [2865] = 315, - [2866] = 292, - [2867] = 292, - [2868] = 314, - [2869] = 316, - [2870] = 314, - [2871] = 2668, - [2872] = 261, - [2873] = 318, - [2874] = 319, - [2875] = 315, - [2876] = 307, - [2877] = 316, - [2878] = 2546, - [2879] = 321, - [2880] = 321, - [2881] = 322, - [2882] = 318, - [2883] = 292, - [2884] = 319, - [2885] = 288, - [2886] = 2730, - [2887] = 323, - [2888] = 323, - [2889] = 322, - [2890] = 288, - [2891] = 321, - [2892] = 323, - [2893] = 322, - [2894] = 2894, - [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 2897, - [2900] = 2897, - [2901] = 2897, - [2902] = 2902, - [2903] = 2903, - [2904] = 2897, - [2905] = 2897, - [2906] = 2897, - [2907] = 2897, - [2908] = 2897, - [2909] = 2897, - [2910] = 2898, - [2911] = 2902, - [2912] = 2902, - [2913] = 2897, - [2914] = 2897, - [2915] = 2897, - [2916] = 2897, - [2917] = 2917, - [2918] = 2898, - [2919] = 2897, - [2920] = 2897, - [2921] = 2897, - [2922] = 2897, - [2923] = 2897, - [2924] = 2897, - [2925] = 2897, - [2926] = 2897, - [2927] = 2897, - [2928] = 2898, - [2929] = 2897, - [2930] = 2897, - [2931] = 2897, - [2932] = 2897, - [2933] = 2902, - [2934] = 2934, - [2935] = 2935, - [2936] = 2936, - [2937] = 307, - [2938] = 2938, - [2939] = 292, - [2940] = 261, - [2941] = 2941, - [2942] = 1827, - [2943] = 292, - [2944] = 2941, - [2945] = 1812, - [2946] = 1819, - [2947] = 1825, - [2948] = 2935, - [2949] = 2936, - [2950] = 307, - [2951] = 1833, - [2952] = 1823, - [2953] = 261, - [2954] = 2938, - [2955] = 1817, - [2956] = 1816, - [2957] = 1822, - [2958] = 1828, - [2959] = 1829, - [2960] = 1826, - [2961] = 1846, - [2962] = 2934, - [2963] = 1771, - [2964] = 261, - [2965] = 2938, - [2966] = 292, - [2967] = 2935, - [2968] = 307, - [2969] = 2969, - [2970] = 2934, - [2971] = 2971, - [2972] = 2941, - [2973] = 2936, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2345, - [2981] = 2979, - [2982] = 2979, - [2983] = 2979, - [2984] = 2979, - [2985] = 2979, - [2986] = 2979, - [2987] = 2979, - [2988] = 2979, - [2989] = 2337, - [2990] = 2990, - [2991] = 2338, - [2992] = 2992, - [2993] = 2979, - [2994] = 2979, - [2995] = 2979, - [2996] = 2979, - [2997] = 2979, - [2998] = 2998, - [2999] = 2348, - [3000] = 2979, - [3001] = 2979, - [3002] = 2979, - [3003] = 2350, - [3004] = 2979, - [3005] = 3005, - [3006] = 3006, - [3007] = 2979, - [3008] = 2351, - [3009] = 2979, - [3010] = 2979, - [3011] = 3011, - [3012] = 2352, - [3013] = 2979, - [3014] = 2353, - [3015] = 2979, + [2793] = 333, + [2794] = 341, + [2795] = 339, + [2796] = 338, + [2797] = 337, + [2798] = 336, + [2799] = 335, + [2800] = 334, + [2801] = 334, + [2802] = 332, + [2803] = 344, + [2804] = 331, + [2805] = 334, + [2806] = 330, + [2807] = 329, + [2808] = 316, + [2809] = 330, + [2810] = 341, + [2811] = 328, + [2812] = 329, + [2813] = 336, + [2814] = 316, + [2815] = 331, + [2816] = 316, + [2817] = 326, + [2818] = 327, + [2819] = 331, + [2820] = 328, + [2821] = 326, + [2822] = 319, + [2823] = 327, + [2824] = 343, + [2825] = 341, + [2826] = 316, + [2827] = 339, + [2828] = 338, + [2829] = 344, + [2830] = 332, + [2831] = 333, + [2832] = 334, + [2833] = 335, + [2834] = 337, + [2835] = 336, + [2836] = 336, + [2837] = 333, + [2838] = 335, + [2839] = 2839, + [2840] = 337, + [2841] = 333, + [2842] = 344, + [2843] = 332, + [2844] = 338, + [2845] = 329, + [2846] = 344, + [2847] = 330, + [2848] = 328, + [2849] = 339, + [2850] = 332, + [2851] = 331, + [2852] = 330, + [2853] = 341, + [2854] = 343, + [2855] = 329, + [2856] = 331, + [2857] = 341, + [2858] = 337, + [2859] = 339, + [2860] = 338, + [2861] = 338, + [2862] = 339, + [2863] = 337, + [2864] = 336, + [2865] = 335, + [2866] = 334, + [2867] = 333, + [2868] = 343, + [2869] = 332, + [2870] = 327, + [2871] = 343, + [2872] = 316, + [2873] = 330, + [2874] = 344, + [2875] = 329, + [2876] = 328, + [2877] = 343, + [2878] = 344, + [2879] = 328, + [2880] = 319, + [2881] = 326, + [2882] = 327, + [2883] = 319, + [2884] = 343, + [2885] = 327, + [2886] = 319, + [2887] = 316, + [2888] = 326, + [2889] = 319, + [2890] = 326, + [2891] = 2891, + [2892] = 341, + [2893] = 328, + [2894] = 338, + [2895] = 334, + [2896] = 333, + [2897] = 339, + [2898] = 332, + [2899] = 344, + [2900] = 326, + [2901] = 331, + [2902] = 341, + [2903] = 330, + [2904] = 331, + [2905] = 344, + [2906] = 329, + [2907] = 330, + [2908] = 319, + [2909] = 343, + [2910] = 343, + [2911] = 341, + [2912] = 339, + [2913] = 337, + [2914] = 338, + [2915] = 328, + [2916] = 337, + [2917] = 329, + [2918] = 336, + [2919] = 335, + [2920] = 334, + [2921] = 333, + [2922] = 332, + [2923] = 326, + [2924] = 331, + [2925] = 330, + [2926] = 329, + [2927] = 330, + [2928] = 328, + [2929] = 2929, + [2930] = 344, + [2931] = 316, + [2932] = 316, + [2933] = 332, + [2934] = 326, + [2935] = 327, + [2936] = 333, + [2937] = 1574, + [2938] = 338, + [2939] = 1469, + [2940] = 343, + [2941] = 341, + [2942] = 339, + [2943] = 338, + [2944] = 337, + [2945] = 2929, + [2946] = 336, + [2947] = 335, + [2948] = 334, + [2949] = 337, + [2950] = 344, + [2951] = 333, + [2952] = 336, + [2953] = 332, + [2954] = 335, + [2955] = 316, + [2956] = 316, + [2957] = 326, + [2958] = 331, + [2959] = 329, + [2960] = 1567, + [2961] = 328, + [2962] = 343, + [2963] = 1566, + [2964] = 327, + [2965] = 319, + [2966] = 343, + [2967] = 341, + [2968] = 339, + [2969] = 319, + [2970] = 334, + [2971] = 338, + [2972] = 337, + [2973] = 339, + [2974] = 344, + [2975] = 335, + [2976] = 2740, + [2977] = 319, + [2978] = 336, + [2979] = 335, + [2980] = 327, + [2981] = 316, + [2982] = 327, + [2983] = 334, + [2984] = 327, + [2985] = 2985, + [2986] = 319, + [2987] = 333, + [2988] = 326, + [2989] = 328, + [2990] = 329, + [2991] = 2991, + [2992] = 330, + [2993] = 331, + [2994] = 332, + [2995] = 2985, + [2996] = 336, + [2997] = 2746, + [2998] = 2745, + [2999] = 2752, + [3000] = 2991, + [3001] = 2759, + [3002] = 2744, + [3003] = 2750, + [3004] = 2749, + [3005] = 2747, + [3006] = 2773, + [3007] = 2753, + [3008] = 2748, + [3009] = 3009, + [3010] = 2774, + [3011] = 1613, + [3012] = 2985, + [3013] = 1619, + [3014] = 2929, + [3015] = 2929, [3016] = 3016, - [3017] = 2979, - [3018] = 2340, - [3019] = 2355, - [3020] = 2979, - [3021] = 2979, - [3022] = 2979, - [3023] = 3023, + [3017] = 2985, + [3018] = 3018, + [3019] = 2991, + [3020] = 2985, + [3021] = 2985, + [3022] = 2929, + [3023] = 2929, [3024] = 3024, - [3025] = 3025, - [3026] = 3026, - [3027] = 3027, + [3025] = 3024, + [3026] = 3024, + [3027] = 3024, [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 3031, - [3032] = 3026, - [3033] = 3026, - [3034] = 3034, - [3035] = 3029, - [3036] = 3034, - [3037] = 3028, - [3038] = 3023, - [3039] = 3027, - [3040] = 3031, - [3041] = 3026, - [3042] = 3025, - [3043] = 3029, - [3044] = 3028, + [3029] = 3024, + [3030] = 1766, + [3031] = 1620, + [3032] = 3024, + [3033] = 3024, + [3034] = 3024, + [3035] = 3024, + [3036] = 3024, + [3037] = 3024, + [3038] = 3024, + [3039] = 3024, + [3040] = 3024, + [3041] = 1797, + [3042] = 3042, + [3043] = 3024, + [3044] = 3024, [3045] = 3045, - [3046] = 3023, - [3047] = 3027, - [3048] = 3048, - [3049] = 3049, - [3050] = 3025, - [3051] = 3034, - [3052] = 3030, - [3053] = 3029, - [3054] = 3025, - [3055] = 3027, - [3056] = 3028, - [3057] = 3029, - [3058] = 3031, - [3059] = 3023, - [3060] = 3023, - [3061] = 3061, - [3062] = 3062, - [3063] = 3026, - [3064] = 3034, - [3065] = 3062, - [3066] = 3030, - [3067] = 3067, - [3068] = 3048, - [3069] = 3025, - [3070] = 3048, - [3071] = 3062, - [3072] = 3062, + [3046] = 3042, + [3047] = 3024, + [3048] = 3024, + [3049] = 3024, + [3050] = 3042, + [3051] = 3024, + [3052] = 3024, + [3053] = 3024, + [3054] = 3024, + [3055] = 3024, + [3056] = 1654, + [3057] = 3057, + [3058] = 3024, + [3059] = 3028, + [3060] = 3042, + [3061] = 3024, + [3062] = 3024, + [3063] = 3028, + [3064] = 1787, + [3065] = 3024, + [3066] = 3024, + [3067] = 1662, + [3068] = 1681, + [3069] = 3028, + [3070] = 3024, + [3071] = 326, + [3072] = 3072, [3073] = 3073, - [3074] = 3030, - [3075] = 3048, - [3076] = 3034, - [3077] = 3023, - [3078] = 3025, - [3079] = 3027, - [3080] = 3027, - [3081] = 3028, - [3082] = 3029, - [3083] = 3083, - [3084] = 3031, - [3085] = 3026, - [3086] = 3028, - [3087] = 3048, - [3088] = 3088, - [3089] = 3029, - [3090] = 314, - [3091] = 3091, - [3092] = 3092, - [3093] = 3026, - [3094] = 3094, - [3095] = 3031, - [3096] = 3031, - [3097] = 3029, - [3098] = 3028, - [3099] = 3027, - [3100] = 3025, - [3101] = 3025, - [3102] = 3048, - [3103] = 3034, - [3104] = 3049, - [3105] = 3030, - [3106] = 3062, - [3107] = 3026, + [3074] = 3074, + [3075] = 3075, + [3076] = 3076, + [3077] = 316, + [3078] = 327, + [3079] = 327, + [3080] = 3075, + [3081] = 326, + [3082] = 3072, + [3083] = 3076, + [3084] = 3074, + [3085] = 3073, + [3086] = 316, + [3087] = 3075, + [3088] = 327, + [3089] = 326, + [3090] = 3090, + [3091] = 316, + [3092] = 3076, + [3093] = 3093, + [3094] = 3073, + [3095] = 3074, + [3096] = 3096, + [3097] = 3097, + [3098] = 3072, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, + [3104] = 3104, + [3105] = 3105, + [3106] = 3106, + [3107] = 3107, [3108] = 3108, [3109] = 3109, - [3110] = 3026, + [3110] = 3110, [3111] = 3111, - [3112] = 3028, - [3113] = 3023, + [3112] = 3112, + [3113] = 3113, [3114] = 3114, - [3115] = 3023, - [3116] = 3116, - [3117] = 3031, - [3118] = 3027, - [3119] = 3023, + [3115] = 3115, + [3116] = 2759, + [3117] = 3117, + [3118] = 2744, + [3119] = 3119, [3120] = 3120, - [3121] = 3034, + [3121] = 3121, [3122] = 3122, - [3123] = 3048, + [3123] = 3123, [3124] = 3124, - [3125] = 3062, - [3126] = 3030, - [3127] = 3034, - [3128] = 3025, - [3129] = 3129, - [3130] = 3023, - [3131] = 3029, - [3132] = 3027, - [3133] = 3048, - [3134] = 3048, - [3135] = 3028, - [3136] = 3025, - [3137] = 3062, - [3138] = 3048, - [3139] = 3030, - [3140] = 3034, - [3141] = 3030, - [3142] = 3062, - [3143] = 3029, - [3144] = 3030, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, + [3128] = 2745, + [3129] = 2746, + [3130] = 3130, + [3131] = 3131, + [3132] = 3132, + [3133] = 2747, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, + [3137] = 3137, + [3138] = 2748, + [3139] = 3139, + [3140] = 3140, + [3141] = 2749, + [3142] = 3142, + [3143] = 2750, + [3144] = 3144, [3145] = 3145, - [3146] = 3034, + [3146] = 3146, [3147] = 3147, - [3148] = 3023, - [3149] = 3025, - [3150] = 3031, - [3151] = 3027, - [3152] = 3028, - [3153] = 3029, - [3154] = 3030, - [3155] = 3031, - [3156] = 3031, - [3157] = 3026, - [3158] = 3027, - [3159] = 3026, - [3160] = 315, - [3161] = 3028, - [3162] = 3026, - [3163] = 3029, - [3164] = 3026, + [3148] = 3148, + [3149] = 3149, + [3150] = 2752, + [3151] = 3151, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3155, + [3156] = 3156, + [3157] = 3157, + [3158] = 2753, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3162, + [3164] = 3164, [3165] = 3165, - [3166] = 3031, - [3167] = 3029, - [3168] = 3028, - [3169] = 3027, - [3170] = 3170, - [3171] = 3171, - [3172] = 3031, - [3173] = 3062, - [3174] = 3027, - [3175] = 3025, - [3176] = 3031, - [3177] = 3062, - [3178] = 3029, - [3179] = 3179, - [3180] = 3062, - [3181] = 3034, - [3182] = 3028, - [3183] = 3027, - [3184] = 3028, - [3185] = 3185, - [3186] = 3026, - [3187] = 3030, - [3188] = 3025, - [3189] = 3049, - [3190] = 3023, - [3191] = 3191, - [3192] = 3048, - [3193] = 3034, - [3194] = 3049, - [3195] = 3195, - [3196] = 3196, - [3197] = 3027, - [3198] = 3030, - [3199] = 3062, - [3200] = 3023, - [3201] = 3023, - [3202] = 3062, - [3203] = 3025, - [3204] = 3023, - [3205] = 3048, - [3206] = 3034, - [3207] = 3030, - [3208] = 3023, - [3209] = 3030, - [3210] = 3048, - [3211] = 3048, - [3212] = 3023, - [3213] = 3213, - [3214] = 3062, - [3215] = 3062, - [3216] = 3030, - [3217] = 3023, - [3218] = 3034, - [3219] = 3023, + [3166] = 3166, + [3167] = 3167, + [3168] = 3168, + [3169] = 3162, + [3170] = 3164, + [3171] = 3164, + [3172] = 344, + [3173] = 3173, + [3174] = 3166, + [3175] = 3164, + [3176] = 3164, + [3177] = 3177, + [3178] = 3162, + [3179] = 3164, + [3180] = 3162, + [3181] = 3164, + [3182] = 3182, + [3183] = 3164, + [3184] = 3164, + [3185] = 3162, + [3186] = 3160, + [3187] = 3187, + [3188] = 3164, + [3189] = 3189, + [3190] = 3164, + [3191] = 3164, + [3192] = 3164, + [3193] = 3164, + [3194] = 3162, + [3195] = 3162, + [3196] = 3162, + [3197] = 3160, + [3198] = 3164, + [3199] = 3162, + [3200] = 3162, + [3201] = 3164, + [3202] = 3160, + [3203] = 3165, + [3204] = 3204, + [3205] = 3165, + [3206] = 3164, + [3207] = 3162, + [3208] = 3208, + [3209] = 3209, + [3210] = 3162, + [3211] = 3162, + [3212] = 3164, + [3213] = 3162, + [3214] = 3164, + [3215] = 3166, + [3216] = 3167, + [3217] = 3162, + [3218] = 3168, + [3219] = 3173, [3220] = 3220, - [3221] = 3025, - [3222] = 3222, - [3223] = 3027, - [3224] = 3028, - [3225] = 3029, - [3226] = 3023, - [3227] = 3031, - [3228] = 3023, - [3229] = 3026, - [3230] = 3023, - [3231] = 3231, - [3232] = 3023, + [3221] = 3177, + [3222] = 3177, + [3223] = 3164, + [3224] = 3224, + [3225] = 3162, + [3226] = 3177, + [3227] = 3227, + [3228] = 3164, + [3229] = 3162, + [3230] = 3164, + [3231] = 3165, + [3232] = 3173, [3233] = 3233, - [3234] = 3234, - [3235] = 3235, - [3236] = 3034, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3023, - [3241] = 3023, - [3242] = 3034, - [3243] = 3023, - [3244] = 3030, - [3245] = 3245, - [3246] = 3048, - [3247] = 3062, - [3248] = 3248, - [3249] = 3025, - [3250] = 3048, - [3251] = 3026, - [3252] = 3031, - [3253] = 3253, - [3254] = 3254, - [3255] = 3029, - [3256] = 3028, - [3257] = 3027, - [3258] = 3258, - [3259] = 3025, - [3260] = 3260, - [3261] = 3034, - [3262] = 3028, - [3263] = 3263, - [3264] = 3023, - [3265] = 3265, - [3266] = 3266, - [3267] = 3030, - [3268] = 3268, - [3269] = 3029, - [3270] = 3031, - [3271] = 3271, + [3234] = 3164, + [3235] = 3162, + [3236] = 3164, + [3237] = 3166, + [3238] = 3162, + [3239] = 3167, + [3240] = 3168, + [3241] = 3168, + [3242] = 3173, + [3243] = 3167, + [3244] = 3244, + [3245] = 3162, + [3246] = 3177, + [3247] = 3167, + [3248] = 3162, + [3249] = 3249, + [3250] = 3164, + [3251] = 3166, + [3252] = 3165, + [3253] = 3165, + [3254] = 3166, + [3255] = 3162, + [3256] = 3256, + [3257] = 3162, + [3258] = 3167, + [3259] = 3162, + [3260] = 3168, + [3261] = 3173, + [3262] = 3162, + [3263] = 3164, + [3264] = 3164, + [3265] = 3168, + [3266] = 3162, + [3267] = 3173, + [3268] = 3164, + [3269] = 3173, + [3270] = 343, + [3271] = 3164, [3272] = 3272, - [3273] = 3031, - [3274] = 3048, - [3275] = 3062, - [3276] = 3026, - [3277] = 3277, - [3278] = 3278, + [3273] = 3177, + [3274] = 3162, + [3275] = 3162, + [3276] = 3162, + [3277] = 3177, + [3278] = 3164, [3279] = 3279, - [3280] = 3279, - [3281] = 3279, + [3280] = 3280, + [3281] = 3281, [3282] = 3282, - [3283] = 3279, + [3283] = 3283, [3284] = 3284, - [3285] = 3285, - [3286] = 3286, + [3285] = 3281, + [3286] = 3281, [3287] = 3287, - [3288] = 3288, - [3289] = 3289, - [3290] = 3277, - [3291] = 3286, + [3288] = 3282, + [3289] = 3281, + [3290] = 3281, + [3291] = 3291, [3292] = 3292, - [3293] = 3292, - [3294] = 3279, + [3293] = 3281, + [3294] = 3281, [3295] = 3295, - [3296] = 3292, - [3297] = 3279, - [3298] = 3298, - [3299] = 3279, - [3300] = 3279, + [3296] = 3281, + [3297] = 3281, + [3298] = 3281, + [3299] = 3281, + [3300] = 3281, [3301] = 3301, - [3302] = 3292, - [3303] = 3303, - [3304] = 3279, + [3302] = 3281, + [3303] = 3281, + [3304] = 3304, [3305] = 3305, - [3306] = 3306, - [3307] = 3279, - [3308] = 3279, - [3309] = 3279, - [3310] = 3292, - [3311] = 3279, - [3312] = 3312, - [3313] = 3279, - [3314] = 3279, - [3315] = 3279, + [3306] = 3281, + [3307] = 3281, + [3308] = 3281, + [3309] = 3282, + [3310] = 3284, + [3311] = 3311, + [3312] = 3281, + [3313] = 3281, + [3314] = 3281, + [3315] = 3315, [3316] = 3316, - [3317] = 3317, - [3318] = 3279, - [3319] = 3292, - [3320] = 3279, - [3321] = 3279, - [3322] = 3279, - [3323] = 3279, - [3324] = 3279, - [3325] = 2935, - [3326] = 3326, - [3327] = 3279, - [3328] = 3279, - [3329] = 3279, - [3330] = 3292, - [3331] = 3279, - [3332] = 3279, - [3333] = 3285, - [3334] = 3277, - [3335] = 3279, - [3336] = 3285, - [3337] = 3279, - [3338] = 3292, - [3339] = 3279, - [3340] = 3285, - [3341] = 3279, - [3342] = 3277, + [3317] = 3073, + [3318] = 3281, + [3319] = 3319, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 3281, + [3324] = 3324, + [3325] = 3325, + [3326] = 3281, + [3327] = 3281, + [3328] = 3328, + [3329] = 3281, + [3330] = 3281, + [3331] = 3284, + [3332] = 3282, + [3333] = 3333, + [3334] = 3075, + [3335] = 1610, + [3336] = 3325, + [3337] = 3072, + [3338] = 3281, + [3339] = 3325, + [3340] = 3281, + [3341] = 3281, + [3342] = 3281, [3343] = 3343, - [3344] = 3344, - [3345] = 3279, - [3346] = 3279, - [3347] = 3279, - [3348] = 3279, - [3349] = 3279, - [3350] = 3279, - [3351] = 3279, - [3352] = 3279, - [3353] = 3279, - [3354] = 3292, - [3355] = 3355, - [3356] = 3292, - [3357] = 3279, - [3358] = 3292, - [3359] = 2936, - [3360] = 3279, - [3361] = 2938, - [3362] = 3286, - [3363] = 1799, - [3364] = 3364, - [3365] = 3285, - [3366] = 3292, - [3367] = 3277, - [3368] = 3279, - [3369] = 3285, - [3370] = 3279, + [3344] = 3281, + [3345] = 3345, + [3346] = 3346, + [3347] = 3284, + [3348] = 3348, + [3349] = 3284, + [3350] = 3350, + [3351] = 3282, + [3352] = 3352, + [3353] = 3284, + [3354] = 3281, + [3355] = 3282, + [3356] = 3281, + [3357] = 3281, + [3358] = 3358, + [3359] = 3359, + [3360] = 3074, + [3361] = 3281, + [3362] = 3362, + [3363] = 3281, + [3364] = 3281, + [3365] = 3365, + [3366] = 3281, + [3367] = 3367, + [3368] = 3281, + [3369] = 3369, + [3370] = 3370, [3371] = 3371, - [3372] = 3292, - [3373] = 292, - [3374] = 3279, - [3375] = 3375, - [3376] = 3279, - [3377] = 3279, - [3378] = 3378, - [3379] = 3279, - [3380] = 3380, - [3381] = 3292, - [3382] = 3292, - [3383] = 3279, - [3384] = 2941, - [3385] = 3385, - [3386] = 3292, - [3387] = 3279, - [3388] = 3277, - [3389] = 3285, - [3390] = 3285, - [3391] = 3279, - [3392] = 3277, - [3393] = 3279, - [3394] = 3279, - [3395] = 3286, - [3396] = 3279, - [3397] = 3279, - [3398] = 3398, - [3399] = 2934, - [3400] = 3400, - [3401] = 3277, - [3402] = 3279, - [3403] = 3279, - [3404] = 3292, - [3405] = 3405, - [3406] = 3406, - [3407] = 3407, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3411, - [3412] = 3412, - [3413] = 3413, - [3414] = 3406, - [3415] = 3415, + [3372] = 3281, + [3373] = 3373, + [3374] = 3281, + [3375] = 3281, + [3376] = 3281, + [3377] = 3281, + [3378] = 3281, + [3379] = 3281, + [3380] = 3281, + [3381] = 3346, + [3382] = 3281, + [3383] = 3333, + [3384] = 3281, + [3385] = 3281, + [3386] = 3282, + [3387] = 3281, + [3388] = 3076, + [3389] = 3346, + [3390] = 3281, + [3391] = 3281, + [3392] = 3281, + [3393] = 3281, + [3394] = 3281, + [3395] = 3281, + [3396] = 3333, + [3397] = 3281, + [3398] = 3346, + [3399] = 3281, + [3400] = 3333, + [3401] = 3282, + [3402] = 3284, + [3403] = 3325, + [3404] = 3281, + [3405] = 3346, + [3406] = 3333, + [3407] = 3284, + [3408] = 3282, + [3409] = 3281, + [3410] = 3346, + [3411] = 3284, + [3412] = 3281, + [3413] = 3281, + [3414] = 3333, + [3415] = 316, [3416] = 3416, [3417] = 3417, [3418] = 3418, @@ -4566,1414 +4731,1691 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3432] = 3432, [3433] = 3433, [3434] = 3434, - [3435] = 3407, - [3436] = 3408, - [3437] = 3428, - [3438] = 3409, - [3439] = 3433, - [3440] = 3432, - [3441] = 3431, - [3442] = 3410, - [3443] = 3430, - [3444] = 3411, - [3445] = 3429, - [3446] = 3412, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3438, + [3439] = 3416, + [3440] = 3417, + [3441] = 3441, + [3442] = 3442, + [3443] = 3443, + [3444] = 3444, + [3445] = 3445, + [3446] = 3418, [3447] = 3447, - [3448] = 3428, - [3449] = 3406, - [3450] = 3427, - [3451] = 3451, - [3452] = 3426, - [3453] = 3425, - [3454] = 3416, - [3455] = 3424, - [3456] = 3417, - [3457] = 3418, - [3458] = 3419, - [3459] = 3420, - [3460] = 3421, - [3461] = 3422, - [3462] = 3423, - [3463] = 3424, - [3464] = 3425, - [3465] = 3423, - [3466] = 3426, - [3467] = 3427, - [3468] = 3428, - [3469] = 3422, - [3470] = 3429, - [3471] = 3430, - [3472] = 3421, - [3473] = 3431, - [3474] = 3432, - [3475] = 3420, - [3476] = 3433, - [3477] = 3419, - [3478] = 3434, - [3479] = 3418, - [3480] = 3407, - [3481] = 3408, - [3482] = 3417, - [3483] = 3409, - [3484] = 3416, - [3485] = 3485, - [3486] = 3406, - [3487] = 3410, - [3488] = 3488, - [3489] = 3411, - [3490] = 3412, - [3491] = 3412, - [3492] = 3492, - [3493] = 3406, - [3494] = 3411, - [3495] = 3495, - [3496] = 3410, - [3497] = 3409, - [3498] = 3417, - [3499] = 3418, - [3500] = 3419, - [3501] = 3420, - [3502] = 3423, - [3503] = 3503, - [3504] = 3406, - [3505] = 3408, - [3506] = 3506, - [3507] = 3407, - [3508] = 3434, - [3509] = 3417, - [3510] = 3418, - [3511] = 3419, - [3512] = 3420, - [3513] = 3423, - [3514] = 3514, - [3515] = 3406, - [3516] = 3433, - [3517] = 3517, - [3518] = 3432, + [3448] = 3420, + [3449] = 3421, + [3450] = 3422, + [3451] = 3423, + [3452] = 3424, + [3453] = 3453, + [3454] = 3426, + [3455] = 3455, + [3456] = 3428, + [3457] = 3444, + [3458] = 3458, + [3459] = 3444, + [3460] = 3443, + [3461] = 3430, + [3462] = 3431, + [3463] = 3432, + [3464] = 3433, + [3465] = 3434, + [3466] = 3435, + [3467] = 3436, + [3468] = 3437, + [3469] = 3438, + [3470] = 3416, + [3471] = 3417, + [3472] = 3472, + [3473] = 3442, + [3474] = 3443, + [3475] = 3444, + [3476] = 3445, + [3477] = 3418, + [3478] = 3478, + [3479] = 3420, + [3480] = 3421, + [3481] = 3422, + [3482] = 3423, + [3483] = 3424, + [3484] = 3484, + [3485] = 3426, + [3486] = 3442, + [3487] = 3487, + [3488] = 3417, + [3489] = 3416, + [3490] = 3438, + [3491] = 3437, + [3492] = 3436, + [3493] = 3435, + [3494] = 3494, + [3495] = 3434, + [3496] = 3433, + [3497] = 3428, + [3498] = 3432, + [3499] = 3499, + [3500] = 3431, + [3501] = 3430, + [3502] = 3430, + [3503] = 3431, + [3504] = 3432, + [3505] = 3433, + [3506] = 3434, + [3507] = 3435, + [3508] = 3436, + [3509] = 3437, + [3510] = 3438, + [3511] = 3416, + [3512] = 3417, + [3513] = 3513, + [3514] = 3442, + [3515] = 3443, + [3516] = 3444, + [3517] = 3445, + [3518] = 3418, [3519] = 3519, - [3520] = 3417, - [3521] = 3418, - [3522] = 3419, - [3523] = 3420, - [3524] = 3423, + [3520] = 3420, + [3521] = 3421, + [3522] = 3422, + [3523] = 3423, + [3524] = 3424, [3525] = 3525, - [3526] = 3406, - [3527] = 3431, - [3528] = 3528, - [3529] = 3430, - [3530] = 3530, - [3531] = 3417, - [3532] = 3418, - [3533] = 3419, - [3534] = 3420, - [3535] = 3423, - [3536] = 3536, - [3537] = 3406, - [3538] = 3429, - [3539] = 3539, - [3540] = 3423, - [3541] = 3541, - [3542] = 3417, - [3543] = 3418, - [3544] = 3419, - [3545] = 3420, - [3546] = 3423, - [3547] = 3547, - [3548] = 3406, - [3549] = 3427, - [3550] = 3550, - [3551] = 3426, - [3552] = 3425, - [3553] = 3417, - [3554] = 3418, - [3555] = 3419, - [3556] = 3420, - [3557] = 3423, - [3558] = 2990, - [3559] = 3406, - [3560] = 3560, + [3526] = 3426, + [3527] = 3527, + [3528] = 3428, + [3529] = 3529, + [3530] = 3426, + [3531] = 3531, + [3532] = 3424, + [3533] = 3423, + [3534] = 3422, + [3535] = 3421, + [3536] = 3420, + [3537] = 3152, + [3538] = 3418, + [3539] = 3445, + [3540] = 3540, + [3541] = 3443, + [3542] = 3542, + [3543] = 3442, + [3544] = 3544, + [3545] = 3428, + [3546] = 3417, + [3547] = 3359, + [3548] = 3416, + [3549] = 3438, + [3550] = 3430, + [3551] = 3431, + [3552] = 3432, + [3553] = 3433, + [3554] = 3434, + [3555] = 3435, + [3556] = 3436, + [3557] = 3437, + [3558] = 3438, + [3559] = 3416, + [3560] = 3417, [3561] = 3561, - [3562] = 3424, - [3563] = 3411, - [3564] = 3417, - [3565] = 3418, - [3566] = 3419, - [3567] = 3420, - [3568] = 3423, - [3569] = 3569, - [3570] = 3406, - [3571] = 3422, - [3572] = 3572, + [3562] = 3442, + [3563] = 3443, + [3564] = 3444, + [3565] = 3445, + [3566] = 3418, + [3567] = 3567, + [3568] = 3420, + [3569] = 3421, + [3570] = 3422, + [3571] = 3423, + [3572] = 3424, [3573] = 3573, - [3574] = 3421, - [3575] = 3417, - [3576] = 3418, - [3577] = 3419, - [3578] = 3420, - [3579] = 3423, - [3580] = 3580, - [3581] = 3406, - [3582] = 3420, + [3574] = 3426, + [3575] = 3437, + [3576] = 3436, + [3577] = 3435, + [3578] = 3434, + [3579] = 3433, + [3580] = 3432, + [3581] = 3431, + [3582] = 3430, [3583] = 3583, - [3584] = 3419, - [3585] = 3418, - [3586] = 3417, - [3587] = 3418, - [3588] = 3419, - [3589] = 3420, - [3590] = 3423, - [3591] = 3591, - [3592] = 3406, - [3593] = 3417, - [3594] = 3594, - [3595] = 3595, - [3596] = 3596, - [3597] = 3417, - [3598] = 3418, - [3599] = 3419, - [3600] = 3420, - [3601] = 3423, + [3584] = 3416, + [3585] = 3428, + [3586] = 3428, + [3587] = 3587, + [3588] = 3588, + [3589] = 3426, + [3590] = 3590, + [3591] = 3430, + [3592] = 3431, + [3593] = 3432, + [3594] = 3433, + [3595] = 3434, + [3596] = 3435, + [3597] = 3436, + [3598] = 3437, + [3599] = 3438, + [3600] = 3416, + [3601] = 3417, [3602] = 3602, - [3603] = 3406, - [3604] = 3417, - [3605] = 3605, - [3606] = 3406, - [3607] = 3607, - [3608] = 3406, - [3609] = 3406, - [3610] = 3406, - [3611] = 3406, - [3612] = 3406, - [3613] = 3406, - [3614] = 3406, - [3615] = 3406, - [3616] = 3406, - [3617] = 3406, - [3618] = 3406, - [3619] = 3406, - [3620] = 3406, - [3621] = 3406, - [3622] = 3406, - [3623] = 3406, - [3624] = 3406, - [3625] = 3406, - [3626] = 3406, - [3627] = 3406, - [3628] = 3406, - [3629] = 3406, - [3630] = 3406, - [3631] = 3406, - [3632] = 3406, - [3633] = 3406, - [3634] = 3406, - [3635] = 3406, - [3636] = 3416, - [3637] = 3539, - [3638] = 3638, - [3639] = 3406, - [3640] = 3416, - [3641] = 3596, - [3642] = 3595, - [3643] = 3412, - [3644] = 3411, - [3645] = 3410, - [3646] = 3409, - [3647] = 3408, - [3648] = 3406, - [3649] = 3407, - [3650] = 3434, - [3651] = 3596, - [3652] = 3595, - [3653] = 3653, - [3654] = 3433, - [3655] = 3432, - [3656] = 3573, - [3657] = 3519, - [3658] = 3431, - [3659] = 3659, - [3660] = 3430, - [3661] = 3530, - [3662] = 3662, - [3663] = 3429, - [3664] = 3428, - [3665] = 3560, - [3666] = 3666, - [3667] = 3541, - [3668] = 3427, - [3669] = 3426, - [3670] = 3541, - [3671] = 3425, - [3672] = 3560, - [3673] = 3424, + [3603] = 3442, + [3604] = 3443, + [3605] = 3444, + [3606] = 3445, + [3607] = 3418, + [3608] = 3608, + [3609] = 3420, + [3610] = 3421, + [3611] = 3422, + [3612] = 3423, + [3613] = 3424, + [3614] = 3614, + [3615] = 3426, + [3616] = 3424, + [3617] = 3423, + [3618] = 3422, + [3619] = 3421, + [3620] = 3420, + [3621] = 3621, + [3622] = 3418, + [3623] = 3445, + [3624] = 3444, + [3625] = 3443, + [3626] = 3442, + [3627] = 3627, + [3628] = 3417, + [3629] = 3416, + [3630] = 3438, + [3631] = 3428, + [3632] = 3437, + [3633] = 3436, + [3634] = 3428, + [3635] = 3435, + [3636] = 3636, + [3637] = 3434, + [3638] = 3433, + [3639] = 3430, + [3640] = 3431, + [3641] = 3432, + [3642] = 3433, + [3643] = 3434, + [3644] = 3435, + [3645] = 3436, + [3646] = 3437, + [3647] = 3438, + [3648] = 3416, + [3649] = 3417, + [3650] = 3650, + [3651] = 3442, + [3652] = 3443, + [3653] = 3444, + [3654] = 3445, + [3655] = 3418, + [3656] = 3430, + [3657] = 3420, + [3658] = 3421, + [3659] = 3422, + [3660] = 3423, + [3661] = 3424, + [3662] = 3431, + [3663] = 3426, + [3664] = 3432, + [3665] = 3431, + [3666] = 3430, + [3667] = 3432, + [3668] = 3428, + [3669] = 3669, + [3670] = 3426, + [3671] = 3433, + [3672] = 3424, + [3673] = 3673, [3674] = 3423, [3675] = 3422, - [3676] = 3573, - [3677] = 3530, - [3678] = 3421, + [3676] = 3428, + [3677] = 3421, + [3678] = 3678, [3679] = 3420, - [3680] = 3419, - [3681] = 3519, - [3682] = 3418, - [3683] = 3417, - [3684] = 3595, - [3685] = 3596, - [3686] = 3416, - [3687] = 3405, - [3688] = 3406, - [3689] = 3689, - [3690] = 3412, - [3691] = 3427, - [3692] = 3410, - [3693] = 3409, - [3694] = 3408, - [3695] = 3407, - [3696] = 3434, - [3697] = 3433, - [3698] = 3432, - [3699] = 3519, - [3700] = 3431, - [3701] = 3430, - [3702] = 3530, - [3703] = 3429, + [3680] = 3680, + [3681] = 3430, + [3682] = 3434, + [3683] = 3435, + [3684] = 3436, + [3685] = 3437, + [3686] = 3438, + [3687] = 3687, + [3688] = 3442, + [3689] = 3443, + [3690] = 3444, + [3691] = 3445, + [3692] = 3692, + [3693] = 3420, + [3694] = 3421, + [3695] = 3422, + [3696] = 3423, + [3697] = 3697, + [3698] = 3426, + [3699] = 3418, + [3700] = 3445, + [3701] = 3701, + [3702] = 3444, + [3703] = 3443, [3704] = 3428, - [3705] = 3541, - [3706] = 3407, - [3707] = 3426, - [3708] = 3425, - [3709] = 3560, - [3710] = 3424, - [3711] = 3423, - [3712] = 3422, - [3713] = 3573, - [3714] = 3421, - [3715] = 3420, - [3716] = 3419, - [3717] = 3418, - [3718] = 3417, - [3719] = 3595, - [3720] = 3596, - [3721] = 3416, - [3722] = 3722, - [3723] = 3406, - [3724] = 3724, - [3725] = 3412, - [3726] = 3411, - [3727] = 3410, - [3728] = 3409, - [3729] = 3408, - [3730] = 3407, - [3731] = 3434, - [3732] = 3433, - [3733] = 3432, - [3734] = 3519, + [3705] = 3442, + [3706] = 3706, + [3707] = 3707, + [3708] = 3417, + [3709] = 3430, + [3710] = 3434, + [3711] = 3435, + [3712] = 3436, + [3713] = 3437, + [3714] = 3438, + [3715] = 3715, + [3716] = 3442, + [3717] = 3443, + [3718] = 3444, + [3719] = 3445, + [3720] = 3720, + [3721] = 3420, + [3722] = 3421, + [3723] = 3422, + [3724] = 3423, + [3725] = 3725, + [3726] = 3426, + [3727] = 3636, + [3728] = 3438, + [3729] = 3437, + [3730] = 3436, + [3731] = 3435, + [3732] = 3434, + [3733] = 3433, + [3734] = 3432, [3735] = 3431, - [3736] = 3430, - [3737] = 3530, - [3738] = 3429, + [3736] = 3715, + [3737] = 3430, + [3738] = 3720, [3739] = 3428, - [3740] = 3541, - [3741] = 3427, - [3742] = 3426, - [3743] = 3425, - [3744] = 3560, - [3745] = 3424, - [3746] = 3423, - [3747] = 3422, - [3748] = 3573, - [3749] = 3421, - [3750] = 3420, - [3751] = 3419, - [3752] = 3418, - [3753] = 3417, - [3754] = 3595, - [3755] = 3596, - [3756] = 3416, - [3757] = 3757, - [3758] = 3406, - [3759] = 3759, - [3760] = 3412, - [3761] = 3411, - [3762] = 3410, - [3763] = 3409, - [3764] = 3408, - [3765] = 3411, - [3766] = 3434, - [3767] = 3433, - [3768] = 3432, - [3769] = 3519, - [3770] = 3431, - [3771] = 3430, - [3772] = 3530, - [3773] = 3429, - [3774] = 3428, - [3775] = 3541, - [3776] = 3427, - [3777] = 3426, - [3778] = 3425, - [3779] = 3560, - [3780] = 3424, - [3781] = 3423, - [3782] = 3422, - [3783] = 3573, - [3784] = 3421, - [3785] = 3666, - [3786] = 3405, - [3787] = 3722, - [3788] = 3788, - [3789] = 3420, - [3790] = 3419, - [3791] = 3418, - [3792] = 3792, - [3793] = 3793, - [3794] = 3794, - [3795] = 3795, - [3796] = 3405, - [3797] = 3722, - [3798] = 3417, - [3799] = 3595, - [3800] = 3666, - [3801] = 3801, - [3802] = 3788, - [3803] = 3596, - [3804] = 3416, - [3805] = 3792, - [3806] = 3793, - [3807] = 3794, - [3808] = 3795, - [3809] = 3809, - [3810] = 3666, - [3811] = 3788, - [3812] = 3406, - [3813] = 3813, - [3814] = 3792, - [3815] = 3793, - [3816] = 3794, - [3817] = 3795, - [3818] = 3412, - [3819] = 3819, - [3820] = 3410, - [3821] = 3409, - [3822] = 3408, - [3823] = 3407, - [3824] = 3434, - [3825] = 3433, - [3826] = 3432, - [3827] = 3519, - [3828] = 3431, - [3829] = 3430, - [3830] = 3530, - [3831] = 3429, - [3832] = 3428, - [3833] = 3541, - [3834] = 3427, - [3835] = 3426, - [3836] = 3425, - [3837] = 3560, - [3838] = 3424, - [3839] = 3423, - [3840] = 3422, - [3841] = 3573, - [3842] = 3539, - [3843] = 3421, - [3844] = 3420, - [3845] = 3845, - [3846] = 3846, - [3847] = 3419, - [3848] = 3418, - [3849] = 3417, - [3850] = 3595, - [3851] = 3596, - [3852] = 3416, - [3853] = 3853, - [3854] = 3406, - [3855] = 3596, - [3856] = 3595, - [3857] = 3857, - [3858] = 3573, - [3859] = 3573, - [3860] = 3412, - [3861] = 3411, - [3862] = 3862, - [3863] = 3410, - [3864] = 3409, - [3865] = 3662, - [3866] = 3408, - [3867] = 3407, - [3868] = 3560, - [3869] = 3869, + [3740] = 3428, + [3741] = 3725, + [3742] = 3433, + [3743] = 3426, + [3744] = 3430, + [3745] = 3434, + [3746] = 3435, + [3747] = 3436, + [3748] = 3437, + [3749] = 3438, + [3750] = 3636, + [3751] = 3442, + [3752] = 3443, + [3753] = 3444, + [3754] = 3445, + [3755] = 3715, + [3756] = 3420, + [3757] = 3421, + [3758] = 3422, + [3759] = 3423, + [3760] = 3720, + [3761] = 3426, + [3762] = 3725, + [3763] = 3424, + [3764] = 3636, + [3765] = 3428, + [3766] = 3423, + [3767] = 3715, + [3768] = 3422, + [3769] = 3421, + [3770] = 3434, + [3771] = 3435, + [3772] = 3436, + [3773] = 3437, + [3774] = 3720, + [3775] = 3442, + [3776] = 3443, + [3777] = 3444, + [3778] = 3725, + [3779] = 3420, + [3780] = 3421, + [3781] = 3636, + [3782] = 3420, + [3783] = 3715, + [3784] = 3720, + [3785] = 3428, + [3786] = 3418, + [3787] = 3725, + [3788] = 3445, + [3789] = 3444, + [3790] = 3434, + [3791] = 3435, + [3792] = 3436, + [3793] = 3437, + [3794] = 3636, + [3795] = 3442, + [3796] = 3443, + [3797] = 3444, + [3798] = 3715, + [3799] = 3420, + [3800] = 3421, + [3801] = 3720, + [3802] = 3443, + [3803] = 3442, + [3804] = 3725, + [3805] = 3428, + [3806] = 3636, + [3807] = 3715, + [3808] = 3417, + [3809] = 3416, + [3810] = 3434, + [3811] = 3435, + [3812] = 3436, + [3813] = 3437, + [3814] = 3720, + [3815] = 3442, + [3816] = 3443, + [3817] = 3444, + [3818] = 3725, + [3819] = 3420, + [3820] = 3421, + [3821] = 3636, + [3822] = 3438, + [3823] = 3437, + [3824] = 3715, + [3825] = 3428, + [3826] = 3436, + [3827] = 3720, + [3828] = 3435, + [3829] = 3434, + [3830] = 3434, + [3831] = 3435, + [3832] = 3436, + [3833] = 3437, + [3834] = 3725, + [3835] = 3442, + [3836] = 3443, + [3837] = 3444, + [3838] = 3636, + [3839] = 3420, + [3840] = 3421, + [3841] = 3715, + [3842] = 3720, + [3843] = 3432, + [3844] = 3725, + [3845] = 3428, + [3846] = 3431, + [3847] = 3636, + [3848] = 3430, + [3849] = 3715, + [3850] = 3434, + [3851] = 3435, + [3852] = 3436, + [3853] = 3437, + [3854] = 3854, + [3855] = 3442, + [3856] = 3443, + [3857] = 3444, + [3858] = 3720, + [3859] = 3420, + [3860] = 3421, + [3861] = 3725, + [3862] = 3428, + [3863] = 3669, + [3864] = 3636, + [3865] = 3428, + [3866] = 3866, + [3867] = 3715, + [3868] = 3868, + [3869] = 3426, [3870] = 3434, - [3871] = 3433, - [3872] = 3541, - [3873] = 3432, - [3874] = 3519, - [3875] = 3431, - [3876] = 3430, - [3877] = 3530, - [3878] = 3530, - [3879] = 3429, - [3880] = 3428, - [3881] = 3519, - [3882] = 3541, - [3883] = 3427, - [3884] = 3426, - [3885] = 3425, - [3886] = 3560, - [3887] = 3424, + [3871] = 3435, + [3872] = 3436, + [3873] = 3437, + [3874] = 3854, + [3875] = 3442, + [3876] = 3443, + [3877] = 3444, + [3878] = 3720, + [3879] = 3420, + [3880] = 3421, + [3881] = 3725, + [3882] = 3669, + [3883] = 3883, + [3884] = 3636, + [3885] = 3428, + [3886] = 3424, + [3887] = 3715, [3888] = 3423, [3889] = 3422, - [3890] = 3573, - [3891] = 3421, - [3892] = 3420, - [3893] = 3419, - [3894] = 3418, - [3895] = 3417, - [3896] = 3595, - [3897] = 3596, - [3898] = 3416, - [3899] = 3899, - [3900] = 3406, - [3901] = 3901, - [3902] = 3412, - [3903] = 3411, - [3904] = 3410, - [3905] = 3409, - [3906] = 3408, - [3907] = 3407, - [3908] = 3434, - [3909] = 3433, - [3910] = 3432, - [3911] = 3519, - [3912] = 3431, - [3913] = 3405, - [3914] = 3722, - [3915] = 3430, - [3916] = 3530, - [3917] = 3666, - [3918] = 3788, - [3919] = 3429, - [3920] = 3428, - [3921] = 3792, - [3922] = 3793, - [3923] = 3794, - [3924] = 3795, - [3925] = 3541, - [3926] = 3427, - [3927] = 3426, - [3928] = 3539, - [3929] = 3425, - [3930] = 3560, - [3931] = 3417, - [3932] = 3932, - [3933] = 3424, - [3934] = 3423, - [3935] = 3422, - [3936] = 3417, - [3937] = 3596, - [3938] = 3595, - [3939] = 3418, - [3940] = 3573, - [3941] = 3421, - [3942] = 3420, - [3943] = 3419, - [3944] = 3419, - [3945] = 3418, - [3946] = 3560, - [3947] = 3420, - [3948] = 3541, - [3949] = 3409, - [3950] = 3595, - [3951] = 3596, - [3952] = 3530, - [3953] = 3519, - [3954] = 3416, - [3955] = 3955, - [3956] = 3406, - [3957] = 3957, - [3958] = 3412, - [3959] = 3411, - [3960] = 3410, - [3961] = 3539, - [3962] = 3409, - [3963] = 3408, - [3964] = 3421, - [3965] = 3573, - [3966] = 3407, - [3967] = 3434, + [3890] = 3434, + [3891] = 3435, + [3892] = 3436, + [3893] = 3437, + [3894] = 3854, + [3895] = 3442, + [3896] = 3443, + [3897] = 3444, + [3898] = 3720, + [3899] = 3420, + [3900] = 3421, + [3901] = 3725, + [3902] = 3421, + [3903] = 3420, + [3904] = 3669, + [3905] = 3428, + [3906] = 3636, + [3907] = 3715, + [3908] = 3418, + [3909] = 3445, + [3910] = 3434, + [3911] = 3435, + [3912] = 3436, + [3913] = 3437, + [3914] = 3854, + [3915] = 3442, + [3916] = 3443, + [3917] = 3444, + [3918] = 3720, + [3919] = 3420, + [3920] = 3421, + [3921] = 3725, + [3922] = 3444, + [3923] = 3443, + [3924] = 3669, + [3925] = 3428, + [3926] = 3442, + [3927] = 3636, + [3928] = 3715, + [3929] = 3929, + [3930] = 3434, + [3931] = 3435, + [3932] = 3436, + [3933] = 3437, + [3934] = 3854, + [3935] = 3442, + [3936] = 3443, + [3937] = 3444, + [3938] = 3720, + [3939] = 3420, + [3940] = 3421, + [3941] = 3725, + [3942] = 3417, + [3943] = 3669, + [3944] = 3428, + [3945] = 3416, + [3946] = 3434, + [3947] = 3438, + [3948] = 3636, + [3949] = 3428, + [3950] = 3437, + [3951] = 3436, + [3952] = 3715, + [3953] = 3428, + [3954] = 3435, + [3955] = 3434, + [3956] = 3854, + [3957] = 3428, + [3958] = 3701, + [3959] = 3433, + [3960] = 3428, + [3961] = 3432, + [3962] = 3431, + [3963] = 3428, + [3964] = 3430, + [3965] = 3720, + [3966] = 3428, + [3967] = 3428, [3968] = 3968, - [3969] = 3433, - [3970] = 3432, - [3971] = 3422, - [3972] = 3519, + [3969] = 3428, + [3970] = 3970, + [3971] = 3971, + [3972] = 3428, [3973] = 3973, - [3974] = 3431, - [3975] = 3430, - [3976] = 3530, - [3977] = 3429, - [3978] = 3795, - [3979] = 3794, - [3980] = 3428, - [3981] = 3541, - [3982] = 3427, - [3983] = 3426, - [3984] = 3539, - [3985] = 3793, - [3986] = 3792, - [3987] = 3788, - [3988] = 3662, - [3989] = 3425, - [3990] = 3560, - [3991] = 3424, - [3992] = 3992, - [3993] = 3423, - [3994] = 3994, - [3995] = 3788, - [3996] = 3422, - [3997] = 3573, - [3998] = 3421, - [3999] = 3420, - [4000] = 3419, - [4001] = 3418, - [4002] = 3417, - [4003] = 3666, - [4004] = 3595, - [4005] = 3539, - [4006] = 3596, - [4007] = 3416, - [4008] = 4008, - [4009] = 4009, - [4010] = 4010, - [4011] = 3406, - [4012] = 4012, + [3974] = 3974, + [3975] = 3428, + [3976] = 3976, + [3977] = 3725, + [3978] = 3428, + [3979] = 3979, + [3980] = 3980, + [3981] = 3428, + [3982] = 3982, + [3983] = 3983, + [3984] = 3428, + [3985] = 3985, + [3986] = 3986, + [3987] = 3428, + [3988] = 3669, + [3989] = 3866, + [3990] = 3428, + [3991] = 3636, + [3992] = 3868, + [3993] = 3428, + [3994] = 3715, + [3995] = 3426, + [3996] = 3428, + [3997] = 3854, + [3998] = 3883, + [3999] = 3428, + [4000] = 4000, + [4001] = 4001, + [4002] = 3428, + [4003] = 3720, + [4004] = 3424, + [4005] = 3428, + [4006] = 3423, + [4007] = 3422, + [4008] = 3428, + [4009] = 3421, + [4010] = 3420, + [4011] = 3428, + [4012] = 3725, [4013] = 4013, - [4014] = 3412, + [4014] = 3428, [4015] = 4015, - [4016] = 3411, - [4017] = 3410, - [4018] = 3434, - [4019] = 3408, - [4020] = 3407, - [4021] = 3434, - [4022] = 3433, - [4023] = 3432, - [4024] = 3519, - [4025] = 3431, - [4026] = 3539, - [4027] = 3430, - [4028] = 3530, + [4016] = 3669, + [4017] = 3428, + [4018] = 3418, + [4019] = 3445, + [4020] = 3428, + [4021] = 3444, + [4022] = 3443, + [4023] = 3428, + [4024] = 3442, + [4025] = 3636, + [4026] = 3428, + [4027] = 3929, + [4028] = 3428, [4029] = 4029, - [4030] = 4030, - [4031] = 3429, - [4032] = 3795, - [4033] = 3794, - [4034] = 4034, - [4035] = 3428, - [4036] = 4036, - [4037] = 3541, - [4038] = 3427, - [4039] = 3426, - [4040] = 3793, - [4041] = 3792, - [4042] = 3425, - [4043] = 3560, - [4044] = 3424, - [4045] = 3423, - [4046] = 3788, - [4047] = 3539, - [4048] = 3422, - [4049] = 3573, - [4050] = 4050, - [4051] = 4051, - [4052] = 3421, - [4053] = 3420, - [4054] = 3419, - [4055] = 4055, - [4056] = 3418, - [4057] = 4057, - [4058] = 3417, - [4059] = 3666, - [4060] = 3595, - [4061] = 3596, - [4062] = 3416, - [4063] = 4063, - [4064] = 3406, - [4065] = 4065, - [4066] = 3412, - [4067] = 3411, - [4068] = 3539, - [4069] = 3410, - [4070] = 3409, - [4071] = 4071, - [4072] = 4072, - [4073] = 3408, - [4074] = 3407, - [4075] = 3792, - [4076] = 3423, - [4077] = 3433, - [4078] = 4078, - [4079] = 3432, - [4080] = 3519, - [4081] = 3431, - [4082] = 3430, - [4083] = 3530, - [4084] = 3429, - [4085] = 3795, - [4086] = 3794, - [4087] = 3428, - [4088] = 3541, - [4089] = 3539, - [4090] = 3427, - [4091] = 3426, - [4092] = 4092, + [4030] = 3428, + [4031] = 3715, + [4032] = 3428, + [4033] = 3417, + [4034] = 3428, + [4035] = 3416, + [4036] = 3428, + [4037] = 3438, + [4038] = 3428, + [4039] = 3437, + [4040] = 3436, + [4041] = 3527, + [4042] = 3435, + [4043] = 3434, + [4044] = 3854, + [4045] = 3701, + [4046] = 3678, + [4047] = 3433, + [4048] = 3432, + [4049] = 3544, + [4050] = 3431, + [4051] = 3430, + [4052] = 3720, + [4053] = 3428, + [4054] = 3725, + [4055] = 3970, + [4056] = 3971, + [4057] = 3431, + [4058] = 3432, + [4059] = 3433, + [4060] = 3673, + [4061] = 3669, + [4062] = 3973, + [4063] = 3974, + [4064] = 3976, + [4065] = 3968, + [4066] = 3416, + [4067] = 3979, + [4068] = 3980, + [4069] = 3417, + [4070] = 4070, + [4071] = 3982, + [4072] = 3983, + [4073] = 4073, + [4074] = 3985, + [4075] = 3986, + [4076] = 3636, + [4077] = 3418, + [4078] = 3715, + [4079] = 3866, + [4080] = 3854, + [4081] = 3868, + [4082] = 3720, + [4083] = 3426, + [4084] = 3725, + [4085] = 3424, + [4086] = 3669, + [4087] = 3883, + [4088] = 4000, + [4089] = 4001, + [4090] = 3636, + [4091] = 3422, + [4092] = 3424, [4093] = 4093, - [4094] = 4094, - [4095] = 3793, + [4094] = 3715, + [4095] = 3423, [4096] = 4096, - [4097] = 3423, + [4097] = 4029, [4098] = 4098, - [4099] = 3425, - [4100] = 3560, - [4101] = 3424, - [4102] = 4092, - [4103] = 4078, - [4104] = 3423, - [4105] = 3788, - [4106] = 3422, - [4107] = 3573, - [4108] = 3421, - [4109] = 3539, - [4110] = 3420, - [4111] = 3419, - [4112] = 3424, - [4113] = 3560, - [4114] = 4114, - [4115] = 3418, - [4116] = 3425, - [4117] = 3417, - [4118] = 4118, - [4119] = 3792, - [4120] = 3666, - [4121] = 3595, - [4122] = 3596, - [4123] = 3416, - [4124] = 3793, - [4125] = 3434, - [4126] = 4126, - [4127] = 3722, - [4128] = 3405, - [4129] = 3539, - [4130] = 3412, - [4131] = 3411, - [4132] = 4132, - [4133] = 4133, - [4134] = 3410, - [4135] = 3409, - [4136] = 4136, - [4137] = 3408, - [4138] = 4138, - [4139] = 3407, - [4140] = 3434, - [4141] = 3433, - [4142] = 3432, - [4143] = 3519, - [4144] = 3431, - [4145] = 3430, - [4146] = 3530, - [4147] = 3429, - [4148] = 3795, - [4149] = 3539, - [4150] = 3794, - [4151] = 3428, - [4152] = 4152, - [4153] = 4153, - [4154] = 3541, - [4155] = 3427, - [4156] = 4156, - [4157] = 3426, - [4158] = 4158, - [4159] = 4159, - [4160] = 3793, - [4161] = 3792, - [4162] = 3425, - [4163] = 3560, - [4164] = 3424, - [4165] = 4092, - [4166] = 4078, - [4167] = 4167, - [4168] = 3788, - [4169] = 3539, - [4170] = 3422, - [4171] = 4171, - [4172] = 3573, - [4173] = 4173, - [4174] = 3421, - [4175] = 4175, - [4176] = 3420, - [4177] = 3419, - [4178] = 4178, - [4179] = 3418, - [4180] = 3417, - [4181] = 3722, - [4182] = 4182, - [4183] = 3666, - [4184] = 3595, - [4185] = 3539, - [4186] = 3596, - [4187] = 4187, - [4188] = 3416, - [4189] = 4189, - [4190] = 3539, - [4191] = 4191, - [4192] = 3406, - [4193] = 3434, - [4194] = 3722, - [4195] = 3405, - [4196] = 3412, - [4197] = 3411, - [4198] = 3410, - [4199] = 3409, - [4200] = 3408, - [4201] = 3539, - [4202] = 3407, - [4203] = 4203, - [4204] = 3405, - [4205] = 4114, - [4206] = 3433, - [4207] = 3973, - [4208] = 4132, - [4209] = 3432, - [4210] = 3519, - [4211] = 3431, - [4212] = 3430, - [4213] = 3530, - [4214] = 3659, - [4215] = 3429, - [4216] = 3795, - [4217] = 3539, - [4218] = 3794, - [4219] = 3428, - [4220] = 3539, - [4221] = 3541, - [4222] = 3427, - [4223] = 3539, - [4224] = 3426, - [4225] = 3653, - [4226] = 3539, - [4227] = 3793, - [4228] = 3792, - [4229] = 3539, - [4230] = 3425, - [4231] = 3560, - [4232] = 3539, - [4233] = 3424, - [4234] = 4092, - [4235] = 3539, - [4236] = 4078, - [4237] = 3423, - [4238] = 3539, - [4239] = 3788, - [4240] = 3422, - [4241] = 3539, - [4242] = 3573, - [4243] = 3421, - [4244] = 3539, - [4245] = 3420, - [4246] = 3419, - [4247] = 3539, - [4248] = 4191, - [4249] = 3539, + [4099] = 3421, + [4100] = 4100, + [4101] = 3420, + [4102] = 3854, + [4103] = 4013, + [4104] = 4015, + [4105] = 3720, + [4106] = 3418, + [4107] = 3445, + [4108] = 3444, + [4109] = 3443, + [4110] = 3442, + [4111] = 3725, + [4112] = 3929, + [4113] = 4029, + [4114] = 3669, + [4115] = 3417, + [4116] = 3416, + [4117] = 3438, + [4118] = 3437, + [4119] = 3436, + [4120] = 3435, + [4121] = 3434, + [4122] = 3701, + [4123] = 3678, + [4124] = 3680, + [4125] = 3692, + [4126] = 3433, + [4127] = 3678, + [4128] = 4029, + [4129] = 3432, + [4130] = 3431, + [4131] = 4015, + [4132] = 4013, + [4133] = 4001, + [4134] = 4000, + [4135] = 3430, + [4136] = 3527, + [4137] = 3636, + [4138] = 3428, + [4139] = 3715, + [4140] = 3854, + [4141] = 3970, + [4142] = 3971, + [4143] = 3973, + [4144] = 3544, + [4145] = 3974, + [4146] = 3976, + [4147] = 3968, + [4148] = 3979, + [4149] = 3980, + [4150] = 3431, + [4151] = 3432, + [4152] = 3433, + [4153] = 3673, + [4154] = 3720, + [4155] = 3982, + [4156] = 3983, + [4157] = 3985, + [4158] = 3416, + [4159] = 3986, + [4160] = 3725, + [4161] = 3417, + [4162] = 4070, + [4163] = 3866, + [4164] = 3669, + [4165] = 3868, + [4166] = 3636, + [4167] = 3426, + [4168] = 3418, + [4169] = 3715, + [4170] = 3854, + [4171] = 3883, + [4172] = 4000, + [4173] = 4001, + [4174] = 3720, + [4175] = 3424, + [4176] = 3725, + [4177] = 3424, + [4178] = 3423, + [4179] = 3669, + [4180] = 3422, + [4181] = 3636, + [4182] = 4093, + [4183] = 3715, + [4184] = 3421, + [4185] = 4096, + [4186] = 3420, + [4187] = 4098, + [4188] = 3854, + [4189] = 4100, + [4190] = 4013, + [4191] = 4015, + [4192] = 3720, + [4193] = 3418, + [4194] = 3445, + [4195] = 4195, + [4196] = 4196, + [4197] = 3444, + [4198] = 3443, + [4199] = 3442, + [4200] = 3725, + [4201] = 3929, + [4202] = 3432, + [4203] = 3669, + [4204] = 3417, + [4205] = 3416, + [4206] = 3438, + [4207] = 3437, + [4208] = 3436, + [4209] = 3636, + [4210] = 3435, + [4211] = 3434, + [4212] = 3701, + [4213] = 3680, + [4214] = 3692, + [4215] = 3715, + [4216] = 3678, + [4217] = 4029, + [4218] = 3678, + [4219] = 3433, + [4220] = 4015, + [4221] = 4013, + [4222] = 4001, + [4223] = 4000, + [4224] = 3435, + [4225] = 3527, + [4226] = 3431, + [4227] = 3430, + [4228] = 3854, + [4229] = 3720, + [4230] = 3428, + [4231] = 3725, + [4232] = 3692, + [4233] = 3680, + [4234] = 3431, + [4235] = 3432, + [4236] = 3433, + [4237] = 3673, + [4238] = 3669, + [4239] = 3970, + [4240] = 3971, + [4241] = 3973, + [4242] = 3416, + [4243] = 3974, + [4244] = 3976, + [4245] = 3417, + [4246] = 4070, + [4247] = 3968, + [4248] = 3979, + [4249] = 3980, [4250] = 3418, - [4251] = 3539, - [4252] = 3417, - [4253] = 3539, - [4254] = 3722, - [4255] = 3539, - [4256] = 4203, - [4257] = 3539, - [4258] = 4114, - [4259] = 3539, - [4260] = 3666, - [4261] = 3539, - [4262] = 3595, - [4263] = 3539, - [4264] = 3596, - [4265] = 3539, - [4266] = 3416, - [4267] = 3539, - [4268] = 3973, - [4269] = 3539, - [4270] = 3406, - [4271] = 3539, - [4272] = 4132, - [4273] = 3539, - [4274] = 3405, - [4275] = 3539, - [4276] = 3722, - [4277] = 3539, + [4251] = 3636, + [4252] = 3982, + [4253] = 3983, + [4254] = 3985, + [4255] = 3424, + [4256] = 3715, + [4257] = 3854, + [4258] = 4093, + [4259] = 3720, + [4260] = 3986, + [4261] = 4096, + [4262] = 3725, + [4263] = 4098, + [4264] = 3866, + [4265] = 4100, + [4266] = 3669, + [4267] = 3868, + [4268] = 3527, + [4269] = 3636, + [4270] = 3426, + [4271] = 4271, + [4272] = 4272, + [4273] = 3883, + [4274] = 3673, + [4275] = 4275, + [4276] = 4000, + [4277] = 4001, [4278] = 4278, - [4279] = 3539, - [4280] = 3412, - [4281] = 3539, - [4282] = 3411, - [4283] = 3539, - [4284] = 3410, - [4285] = 3539, - [4286] = 3409, - [4287] = 3539, - [4288] = 3659, - [4289] = 3539, - [4290] = 3408, - [4291] = 3539, - [4292] = 3407, - [4293] = 3539, - [4294] = 3653, - [4295] = 3539, - [4296] = 4191, - [4297] = 3539, - [4298] = 3434, - [4299] = 3539, - [4300] = 4203, - [4301] = 3539, - [4302] = 4114, - [4303] = 3539, - [4304] = 3433, - [4305] = 3973, - [4306] = 4132, - [4307] = 3659, - [4308] = 3653, - [4309] = 3653, - [4310] = 4191, - [4311] = 3659, - [4312] = 3666, - [4313] = 3405, - [4314] = 4203, - [4315] = 3722, - [4316] = 4191, - [4317] = 4114, - [4318] = 4132, - [4319] = 3432, - [4320] = 3973, - [4321] = 3788, - [4322] = 3519, - [4323] = 3973, - [4324] = 4132, - [4325] = 4325, - [4326] = 3659, - [4327] = 4114, - [4328] = 3653, - [4329] = 4329, - [4330] = 3792, - [4331] = 4191, - [4332] = 3793, - [4333] = 4203, - [4334] = 4114, - [4335] = 3973, - [4336] = 3794, - [4337] = 3795, - [4338] = 4132, - [4339] = 4203, - [4340] = 3659, - [4341] = 3431, - [4342] = 3653, - [4343] = 4191, - [4344] = 4191, - [4345] = 4203, - [4346] = 4203, - [4347] = 4114, - [4348] = 3973, - [4349] = 3405, - [4350] = 4350, - [4351] = 3722, - [4352] = 4132, - [4353] = 3430, - [4354] = 3530, - [4355] = 3295, - [4356] = 3659, - [4357] = 3429, - [4358] = 4358, - [4359] = 4359, - [4360] = 3653, - [4361] = 4191, - [4362] = 4362, - [4363] = 4203, - [4364] = 4364, - [4365] = 4365, - [4366] = 4114, - [4367] = 4367, - [4368] = 3653, - [4369] = 3973, - [4370] = 3659, - [4371] = 3666, - [4372] = 3405, - [4373] = 4373, - [4374] = 3722, - [4375] = 4375, - [4376] = 4132, - [4377] = 4132, - [4378] = 3659, - [4379] = 3973, - [4380] = 3788, - [4381] = 4381, - [4382] = 3653, - [4383] = 4383, - [4384] = 4191, - [4385] = 4203, - [4386] = 4114, - [4387] = 4114, - [4388] = 4388, - [4389] = 3792, - [4390] = 3973, - [4391] = 3793, - [4392] = 3795, - [4393] = 3794, - [4394] = 3428, - [4395] = 3794, - [4396] = 3795, - [4397] = 4132, - [4398] = 4203, - [4399] = 3659, - [4400] = 4400, - [4401] = 3653, - [4402] = 4191, - [4403] = 4191, - [4404] = 3541, - [4405] = 3427, - [4406] = 4203, - [4407] = 4114, - [4408] = 3426, - [4409] = 3973, - [4410] = 4410, - [4411] = 3653, - [4412] = 4132, - [4413] = 3659, - [4414] = 3659, - [4415] = 4132, - [4416] = 3653, - [4417] = 3973, - [4418] = 4191, - [4419] = 4114, - [4420] = 4203, - [4421] = 4114, - [4422] = 3973, - [4423] = 4203, - [4424] = 4132, - [4425] = 4191, - [4426] = 3659, - [4427] = 3653, - [4428] = 4191, - [4429] = 4429, - [4430] = 3653, - [4431] = 4203, - [4432] = 3659, - [4433] = 4132, - [4434] = 3973, - [4435] = 4114, - [4436] = 4114, - [4437] = 3973, - [4438] = 4132, - [4439] = 4203, - [4440] = 3659, - [4441] = 4191, - [4442] = 3653, - [4443] = 4191, - [4444] = 4203, - [4445] = 3653, - [4446] = 4114, - [4447] = 3659, - [4448] = 4132, - [4449] = 3973, - [4450] = 4450, - [4451] = 4451, - [4452] = 4452, + [4279] = 3424, + [4280] = 3423, + [4281] = 4070, + [4282] = 3422, + [4283] = 4283, + [4284] = 3715, + [4285] = 3421, + [4286] = 3420, + [4287] = 4287, + [4288] = 3854, + [4289] = 3720, + [4290] = 4093, + [4291] = 3725, + [4292] = 4013, + [4293] = 4096, + [4294] = 4015, + [4295] = 4098, + [4296] = 3669, + [4297] = 4100, + [4298] = 3418, + [4299] = 3445, + [4300] = 3527, + [4301] = 4195, + [4302] = 4196, + [4303] = 3636, + [4304] = 3444, + [4305] = 3443, + [4306] = 3673, + [4307] = 3442, + [4308] = 3540, + [4309] = 3929, + [4310] = 4029, + [4311] = 4271, + [4312] = 4070, + [4313] = 3417, + [4314] = 3416, + [4315] = 4272, + [4316] = 3438, + [4317] = 3437, + [4318] = 3436, + [4319] = 4275, + [4320] = 4278, + [4321] = 4093, + [4322] = 4283, + [4323] = 3715, + [4324] = 4096, + [4325] = 3968, + [4326] = 4098, + [4327] = 3434, + [4328] = 4100, + [4329] = 3701, + [4330] = 3692, + [4331] = 3527, + [4332] = 3680, + [4333] = 4287, + [4334] = 3854, + [4335] = 3678, + [4336] = 3433, + [4337] = 3432, + [4338] = 3431, + [4339] = 3430, + [4340] = 3720, + [4341] = 3428, + [4342] = 3725, + [4343] = 3692, + [4344] = 3680, + [4345] = 3970, + [4346] = 3971, + [4347] = 3973, + [4348] = 3527, + [4349] = 3974, + [4350] = 3976, + [4351] = 3669, + [4352] = 4029, + [4353] = 3979, + [4354] = 3980, + [4355] = 3982, + [4356] = 3983, + [4357] = 3985, + [4358] = 3986, + [4359] = 3636, + [4360] = 3866, + [4361] = 4361, + [4362] = 3868, + [4363] = 3527, + [4364] = 3540, + [4365] = 4271, + [4366] = 4272, + [4367] = 3426, + [4368] = 4275, + [4369] = 3883, + [4370] = 4000, + [4371] = 4001, + [4372] = 4278, + [4373] = 3424, + [4374] = 3423, + [4375] = 3422, + [4376] = 4283, + [4377] = 3527, + [4378] = 3421, + [4379] = 3420, + [4380] = 3715, + [4381] = 4287, + [4382] = 4013, + [4383] = 4015, + [4384] = 3854, + [4385] = 3418, + [4386] = 3445, + [4387] = 4387, + [4388] = 4195, + [4389] = 4196, + [4390] = 3444, + [4391] = 3527, + [4392] = 3443, + [4393] = 3442, + [4394] = 3720, + [4395] = 3725, + [4396] = 4396, + [4397] = 3929, + [4398] = 3669, + [4399] = 3636, + [4400] = 3417, + [4401] = 3438, + [4402] = 3437, + [4403] = 3436, + [4404] = 4404, + [4405] = 3527, + [4406] = 3435, + [4407] = 3434, + [4408] = 3540, + [4409] = 3701, + [4410] = 3692, + [4411] = 3687, + [4412] = 3680, + [4413] = 4413, + [4414] = 3678, + [4415] = 3433, + [4416] = 3432, + [4417] = 3431, + [4418] = 3430, + [4419] = 3527, + [4420] = 4420, + [4421] = 3428, + [4422] = 4422, + [4423] = 3542, + [4424] = 4424, + [4425] = 4096, + [4426] = 3692, + [4427] = 3680, + [4428] = 3970, + [4429] = 4271, + [4430] = 3971, + [4431] = 3973, + [4432] = 3974, + [4433] = 3527, + [4434] = 3976, + [4435] = 3968, + [4436] = 4000, + [4437] = 3979, + [4438] = 4438, + [4439] = 4100, + [4440] = 3980, + [4441] = 3982, + [4442] = 4442, + [4443] = 4001, + [4444] = 3983, + [4445] = 4445, + [4446] = 4098, + [4447] = 3527, + [4448] = 3985, + [4449] = 4272, + [4450] = 4275, + [4451] = 3986, + [4452] = 4013, [4453] = 4453, - [4454] = 4453, + [4454] = 4015, [4455] = 4455, - [4456] = 4456, - [4457] = 1586, - [4458] = 4458, - [4459] = 1587, + [4456] = 4278, + [4457] = 4283, + [4458] = 3715, + [4459] = 4459, [4460] = 4460, - [4461] = 4461, - [4462] = 4452, - [4463] = 4463, - [4464] = 4451, - [4465] = 4465, - [4466] = 4466, - [4467] = 4451, - [4468] = 4450, - [4469] = 4461, - [4470] = 4452, - [4471] = 4471, - [4472] = 4453, + [4461] = 3527, + [4462] = 4462, + [4463] = 3866, + [4464] = 4029, + [4465] = 4287, + [4466] = 3854, + [4467] = 3720, + [4468] = 3725, + [4469] = 4093, + [4470] = 4470, + [4471] = 3725, + [4472] = 4472, [4473] = 4473, - [4474] = 4474, - [4475] = 4450, - [4476] = 4461, - [4477] = 4453, - [4478] = 4452, - [4479] = 4461, - [4480] = 4480, - [4481] = 4481, - [4482] = 4451, - [4483] = 4450, - [4484] = 4451, - [4485] = 4452, - [4486] = 4486, - [4487] = 4453, - [4488] = 4450, - [4489] = 4450, - [4490] = 4450, - [4491] = 4461, - [4492] = 4492, - [4493] = 4461, - [4494] = 4450, + [4474] = 3692, + [4475] = 3527, + [4476] = 3720, + [4477] = 3680, + [4478] = 3678, + [4479] = 3868, + [4480] = 3423, + [4481] = 4271, + [4482] = 3669, + [4483] = 3636, + [4484] = 4484, + [4485] = 3322, + [4486] = 3540, + [4487] = 3426, + [4488] = 4488, + [4489] = 3527, + [4490] = 4490, + [4491] = 3435, + [4492] = 3436, + [4493] = 3437, + [4494] = 4271, [4495] = 4495, [4496] = 4496, - [4497] = 4451, - [4498] = 4498, - [4499] = 4450, - [4500] = 4452, - [4501] = 4453, - [4502] = 4453, - [4503] = 4503, - [4504] = 4450, + [4497] = 4000, + [4498] = 4001, + [4499] = 4499, + [4500] = 4500, + [4501] = 4501, + [4502] = 4502, + [4503] = 3527, + [4504] = 4504, [4505] = 4505, - [4506] = 4461, - [4507] = 4452, - [4508] = 4450, - [4509] = 4450, + [4506] = 4506, + [4507] = 4272, + [4508] = 4508, + [4509] = 4275, [4510] = 4510, - [4511] = 4451, - [4512] = 4451, - [4513] = 4450, - [4514] = 4514, - [4515] = 4452, - [4516] = 4516, - [4517] = 4453, - [4518] = 4518, - [4519] = 4519, - [4520] = 4450, - [4521] = 4461, - [4522] = 4522, - [4523] = 4451, - [4524] = 4461, - [4525] = 4461, - [4526] = 4450, - [4527] = 4451, - [4528] = 4528, - [4529] = 4450, - [4530] = 4452, - [4531] = 4531, - [4532] = 4453, - [4533] = 4461, - [4534] = 4461, - [4535] = 4535, - [4536] = 4461, - [4537] = 4537, - [4538] = 4450, - [4539] = 4539, - [4540] = 4540, - [4541] = 4461, - [4542] = 4451, + [4511] = 4013, + [4512] = 4015, + [4513] = 3527, + [4514] = 3438, + [4515] = 4278, + [4516] = 3883, + [4517] = 4000, + [4518] = 4001, + [4519] = 4272, + [4520] = 4275, + [4521] = 4283, + [4522] = 3715, + [4523] = 3527, + [4524] = 3424, + [4525] = 4525, + [4526] = 3422, + [4527] = 4527, + [4528] = 3416, + [4529] = 3854, + [4530] = 4530, + [4531] = 3445, + [4532] = 3421, + [4533] = 3527, + [4534] = 4287, + [4535] = 3420, + [4536] = 4029, + [4537] = 4287, + [4538] = 4538, + [4539] = 3854, + [4540] = 3720, + [4541] = 3527, + [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 4452, - [4546] = 4453, - [4547] = 4453, - [4548] = 4453, - [4549] = 4452, - [4550] = 4452, - [4551] = 4461, - [4552] = 4452, - [4553] = 4451, - [4554] = 4537, - [4555] = 4453, + [4545] = 4545, + [4546] = 4546, + [4547] = 4547, + [4548] = 4548, + [4549] = 3527, + [4550] = 3725, + [4551] = 4551, + [4552] = 4552, + [4553] = 4070, + [4554] = 4554, + [4555] = 4555, [4556] = 4556, - [4557] = 4451, - [4558] = 4452, - [4559] = 4451, - [4560] = 4452, + [4557] = 3527, + [4558] = 3692, + [4559] = 4029, + [4560] = 4560, [4561] = 4561, - [4562] = 4453, + [4562] = 3680, [4563] = 4563, - [4564] = 4453, - [4565] = 4451, - [4566] = 4461, - [4567] = 4452, - [4568] = 4568, + [4564] = 3678, + [4565] = 3527, + [4566] = 4566, + [4567] = 3669, + [4568] = 3636, [4569] = 4569, - [4570] = 4451, - [4571] = 4571, - [4572] = 4451, - [4573] = 4573, - [4574] = 4453, - [4575] = 4452, - [4576] = 4461, - [4577] = 4453, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4581, - [4582] = 4582, - [4583] = 4583, - [4584] = 4579, + [4570] = 4570, + [4571] = 3540, + [4572] = 4013, + [4573] = 3527, + [4574] = 4015, + [4575] = 4575, + [4576] = 4073, + [4577] = 3527, + [4578] = 4278, + [4579] = 4283, + [4580] = 3527, + [4581] = 3527, + [4582] = 3418, + [4583] = 3445, + [4584] = 4387, [4585] = 4585, - [4586] = 4586, - [4587] = 4587, + [4586] = 3527, + [4587] = 3527, [4588] = 4588, - [4589] = 4580, - [4590] = 4588, - [4591] = 4580, - [4592] = 4581, - [4593] = 4581, - [4594] = 4581, - [4595] = 4595, - [4596] = 4596, - [4597] = 4597, - [4598] = 4580, - [4599] = 4586, + [4589] = 3527, + [4590] = 4590, + [4591] = 4591, + [4592] = 3929, + [4593] = 3527, + [4594] = 4195, + [4595] = 4196, + [4596] = 3444, + [4597] = 3527, + [4598] = 3443, + [4599] = 3442, [4600] = 4600, - [4601] = 4601, + [4601] = 3527, [4602] = 4602, - [4603] = 4586, - [4604] = 4580, - [4605] = 4581, + [4603] = 3715, + [4604] = 4396, + [4605] = 3527, [4606] = 4606, - [4607] = 4588, - [4608] = 4583, - [4609] = 4578, - [4610] = 4610, - [4611] = 4611, - [4612] = 4586, - [4613] = 4613, - [4614] = 4586, - [4615] = 4578, - [4616] = 4581, - [4617] = 4580, - [4618] = 4581, - [4619] = 4596, - [4620] = 4580, - [4621] = 4621, - [4622] = 4610, - [4623] = 4623, + [4607] = 3527, + [4608] = 3434, + [4609] = 3527, + [4610] = 3527, + [4611] = 3527, + [4612] = 3527, + [4613] = 3527, + [4614] = 4614, + [4615] = 3527, + [4616] = 4616, + [4617] = 3527, + [4618] = 4618, + [4619] = 3527, + [4620] = 4620, + [4621] = 3527, + [4622] = 4622, + [4623] = 3527, [4624] = 4624, - [4625] = 4586, - [4626] = 4597, - [4627] = 4613, - [4628] = 4597, - [4629] = 4602, - [4630] = 4588, - [4631] = 4578, - [4632] = 4610, - [4633] = 4613, - [4634] = 4600, - [4635] = 4580, - [4636] = 4606, - [4637] = 4578, - [4638] = 4588, - [4639] = 4610, - [4640] = 4613, - [4641] = 4581, - [4642] = 4586, - [4643] = 4643, - [4644] = 4597, - [4645] = 4645, - [4646] = 4581, - [4647] = 4610, - [4648] = 4588, - [4649] = 4580, - [4650] = 4613, + [4625] = 3527, + [4626] = 4626, + [4627] = 3527, + [4628] = 4628, + [4629] = 3527, + [4630] = 4630, + [4631] = 3527, + [4632] = 4632, + [4633] = 3527, + [4634] = 3527, + [4635] = 3527, + [4636] = 4636, + [4637] = 3527, + [4638] = 4638, + [4639] = 3527, + [4640] = 4640, + [4641] = 3527, + [4642] = 4642, + [4643] = 3527, + [4644] = 3527, + [4645] = 3527, + [4646] = 4646, + [4647] = 3527, + [4648] = 4648, + [4649] = 3527, + [4650] = 4650, [4651] = 4651, - [4652] = 4600, + [4652] = 4652, [4653] = 4653, - [4654] = 4596, - [4655] = 4597, - [4656] = 4597, - [4657] = 4578, - [4658] = 4578, - [4659] = 4610, - [4660] = 4586, - [4661] = 4588, - [4662] = 4602, - [4663] = 4588, - [4664] = 4588, - [4665] = 4613, - [4666] = 4579, - [4667] = 4578, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 1469, + [4658] = 4658, + [4659] = 4659, + [4660] = 1574, + [4661] = 4661, + [4662] = 4662, + [4663] = 4663, + [4664] = 4664, + [4665] = 4665, + [4666] = 4666, + [4667] = 4667, [4668] = 4668, [4669] = 4669, [4670] = 4670, - [4671] = 4610, - [4672] = 4606, - [4673] = 4613, - [4674] = 4581, - [4675] = 4580, - [4676] = 4588, - [4677] = 4578, - [4678] = 4610, - [4679] = 4613, - [4680] = 4586, - [4681] = 4588, + [4671] = 4669, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, + [4677] = 4677, + [4678] = 4678, + [4679] = 4679, + [4680] = 4680, + [4681] = 4681, [4682] = 4682, [4683] = 4683, - [4684] = 4600, - [4685] = 4596, - [4686] = 4578, - [4687] = 4610, - [4688] = 4613, - [4689] = 4689, - [4690] = 4578, - [4691] = 4610, - [4692] = 4613, - [4693] = 4586, - [4694] = 4581, - [4695] = 4578, - [4696] = 4610, - [4697] = 4600, - [4698] = 4596, + [4684] = 4684, + [4685] = 4676, + [4686] = 4669, + [4687] = 4677, + [4688] = 4678, + [4689] = 4681, + [4690] = 4690, + [4691] = 4669, + [4692] = 4692, + [4693] = 4677, + [4694] = 4678, + [4695] = 4668, + [4696] = 4681, + [4697] = 4676, + [4698] = 4676, [4699] = 4699, - [4700] = 4613, - [4701] = 4580, - [4702] = 4578, - [4703] = 4580, - [4704] = 4586, - [4705] = 4610, + [4700] = 4669, + [4701] = 4668, + [4702] = 4677, + [4703] = 4678, + [4704] = 4704, + [4705] = 4681, [4706] = 4706, - [4707] = 4581, - [4708] = 4708, - [4709] = 4613, - [4710] = 4588, - [4711] = 4586, - [4712] = 4578, - [4713] = 4610, - [4714] = 4610, - [4715] = 4715, - [4716] = 4597, - [4717] = 4613, - [4718] = 4588, - [4719] = 4600, - [4720] = 4596, - [4721] = 4721, - [4722] = 4722, - [4723] = 4578, - [4724] = 4610, - [4725] = 4579, - [4726] = 4602, - [4727] = 4597, - [4728] = 4613, - [4729] = 4581, - [4730] = 4600, - [4731] = 4596, - [4732] = 4580, - [4733] = 4578, - [4734] = 4610, - [4735] = 4597, - [4736] = 4736, - [4737] = 4596, - [4738] = 4613, - [4739] = 4588, - [4740] = 4600, + [4707] = 4669, + [4708] = 4676, + [4709] = 4668, + [4710] = 4669, + [4711] = 4711, + [4712] = 4668, + [4713] = 4669, + [4714] = 4669, + [4715] = 4669, + [4716] = 4677, + [4717] = 4678, + [4718] = 4681, + [4719] = 4669, + [4720] = 4669, + [4721] = 4676, + [4722] = 4669, + [4723] = 4668, + [4724] = 4681, + [4725] = 4725, + [4726] = 4669, + [4727] = 4669, + [4728] = 4669, + [4729] = 4729, + [4730] = 4677, + [4731] = 4731, + [4732] = 4732, + [4733] = 4733, + [4734] = 4678, + [4735] = 4735, + [4736] = 4669, + [4737] = 4669, + [4738] = 4669, + [4739] = 4669, + [4740] = 4740, [4741] = 4741, [4742] = 4742, - [4743] = 4600, - [4744] = 4596, + [4743] = 4669, + [4744] = 4668, [4745] = 4745, - [4746] = 4597, - [4747] = 4586, - [4748] = 4600, - [4749] = 4606, + [4746] = 4746, + [4747] = 4747, + [4748] = 4748, + [4749] = 4749, [4750] = 4750, - [4751] = 4596, + [4751] = 4751, [4752] = 4752, - [4753] = 4600, + [4753] = 4753, [4754] = 4754, - [4755] = 4596, - [4756] = 4600, - [4757] = 4596, - [4758] = 4597, - [4759] = 4578, - [4760] = 4610, - [4761] = 4588, - [4762] = 4597, - [4763] = 4600, - [4764] = 4613, - [4765] = 4586, + [4755] = 1674, + [4756] = 4756, + [4757] = 4757, + [4758] = 1778, + [4759] = 4759, + [4760] = 1661, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4764, + [4765] = 4765, [4766] = 4766, - [4767] = 4767, + [4767] = 4751, [4768] = 4768, - [4769] = 4596, - [4770] = 4596, - [4771] = 4771, - [4772] = 4600, - [4773] = 4600, - [4774] = 4600, - [4775] = 4600, + [4769] = 4769, + [4770] = 4759, + [4771] = 4763, + [4772] = 4772, + [4773] = 4773, + [4774] = 4774, + [4775] = 4775, [4776] = 4776, - [4777] = 4596, + [4777] = 4749, [4778] = 4778, - [4779] = 4600, - [4780] = 4596, + [4779] = 4752, + [4780] = 4746, [4781] = 4781, - [4782] = 4580, - [4783] = 4600, - [4784] = 4596, - [4785] = 4785, + [4782] = 4747, + [4783] = 4783, + [4784] = 4757, + [4785] = 4765, [4786] = 4786, - [4787] = 4581, - [4788] = 4600, - [4789] = 4580, - [4790] = 4596, - [4791] = 4595, - [4792] = 4792, - [4793] = 4613, - [4794] = 4581, - [4795] = 4600, - [4796] = 4596, - [4797] = 4600, - [4798] = 4798, - [4799] = 4799, - [4800] = 4600, - [4801] = 4596, - [4802] = 4802, - [4803] = 4803, - [4804] = 4600, - [4805] = 4596, - [4806] = 4806, - [4807] = 4807, - [4808] = 4600, - [4809] = 4596, + [4787] = 4787, + [4788] = 4788, + [4789] = 4789, + [4790] = 4765, + [4791] = 4787, + [4792] = 4751, + [4793] = 4759, + [4794] = 4763, + [4795] = 4773, + [4796] = 4763, + [4797] = 4759, + [4798] = 4775, + [4799] = 4752, + [4800] = 4749, + [4801] = 4776, + [4802] = 4768, + [4803] = 4751, + [4804] = 4772, + [4805] = 4805, + [4806] = 4757, + [4807] = 4773, + [4808] = 4753, + [4809] = 4748, [4810] = 4810, [4811] = 4811, - [4812] = 4600, - [4813] = 4586, - [4814] = 4596, - [4815] = 4815, - [4816] = 4600, - [4817] = 4588, - [4818] = 4596, - [4819] = 4819, - [4820] = 4820, - [4821] = 4588, - [4822] = 4822, - [4823] = 4823, - [4824] = 4586, - [4825] = 4581, - [4826] = 4826, - [4827] = 4600, - [4828] = 4828, - [4829] = 4600, - [4830] = 4596, - [4831] = 4831, - [4832] = 4596, - [4833] = 4580, - [4834] = 4600, - [4835] = 4580, - [4836] = 4581, - [4837] = 4596, + [4812] = 4765, + [4813] = 4774, + [4814] = 4751, + [4815] = 4759, + [4816] = 4763, + [4817] = 4778, + [4818] = 4818, + [4819] = 4775, + [4820] = 4746, + [4821] = 4749, + [4822] = 4753, + [4823] = 4748, + [4824] = 4810, + [4825] = 4747, + [4826] = 4765, + [4827] = 4757, + [4828] = 4811, + [4829] = 4786, + [4830] = 4830, + [4831] = 4772, + [4832] = 4788, + [4833] = 4765, + [4834] = 4788, + [4835] = 4751, + [4836] = 4759, + [4837] = 4763, [4838] = 4838, - [4839] = 4839, - [4840] = 4586, - [4841] = 4841, - [4842] = 4600, + [4839] = 4775, + [4840] = 4840, + [4841] = 4749, + [4842] = 4842, + [4843] = 4753, + [4844] = 4748, + [4845] = 4845, + [4846] = 4757, + [4847] = 4810, + [4848] = 4811, + [4849] = 4775, + [4850] = 4772, + [4851] = 4749, + [4852] = 4776, + [4853] = 4768, + [4854] = 4854, + [4855] = 4772, + [4856] = 4773, + [4857] = 4775, + [4858] = 4774, + [4859] = 4749, + [4860] = 4778, + [4861] = 4746, + [4862] = 4747, + [4863] = 4753, + [4864] = 4786, + [4865] = 4775, + [4866] = 4748, + [4867] = 4749, + [4868] = 4810, + [4869] = 4775, + [4870] = 4788, + [4871] = 4811, + [4872] = 4810, + [4873] = 4775, + [4874] = 4757, + [4875] = 4749, + [4876] = 4876, + [4877] = 4772, + [4878] = 4776, + [4879] = 4786, + [4880] = 4768, + [4881] = 4775, + [4882] = 4774, + [4883] = 4749, + [4884] = 4778, + [4885] = 4885, + [4886] = 4747, + [4887] = 4753, + [4888] = 4748, + [4889] = 4775, + [4890] = 4810, + [4891] = 4749, + [4892] = 4788, + [4893] = 4893, + [4894] = 4747, + [4895] = 4811, + [4896] = 4774, + [4897] = 4775, + [4898] = 4772, + [4899] = 4749, + [4900] = 4776, + [4901] = 4768, + [4902] = 4902, + [4903] = 4774, + [4904] = 4778, + [4905] = 4775, + [4906] = 4746, + [4907] = 4749, + [4908] = 4747, + [4909] = 4752, + [4910] = 4788, + [4911] = 4911, + [4912] = 4912, + [4913] = 4775, + [4914] = 4749, + [4915] = 4749, + [4916] = 4916, + [4917] = 4768, + [4918] = 4776, + [4919] = 4776, + [4920] = 4776, + [4921] = 4775, + [4922] = 4776, + [4923] = 4749, + [4924] = 4788, + [4925] = 4747, + [4926] = 4778, + [4927] = 4778, + [4928] = 4768, + [4929] = 4775, + [4930] = 4776, + [4931] = 4749, + [4932] = 4788, + [4933] = 4775, + [4934] = 4778, + [4935] = 4768, + [4936] = 4747, + [4937] = 4775, + [4938] = 4776, + [4939] = 4788, + [4940] = 4747, + [4941] = 4778, + [4942] = 4768, + [4943] = 4776, + [4944] = 4775, + [4945] = 4788, + [4946] = 4788, + [4947] = 4747, + [4948] = 4778, + [4949] = 4768, + [4950] = 4776, + [4951] = 4775, + [4952] = 4776, + [4953] = 4788, + [4954] = 4747, + [4955] = 4778, + [4956] = 4768, + [4957] = 4768, + [4958] = 4775, + [4959] = 4776, + [4960] = 4776, + [4961] = 4788, + [4962] = 4747, + [4963] = 4775, + [4964] = 4778, + [4965] = 4768, + [4966] = 4776, + [4967] = 4788, + [4968] = 4775, + [4969] = 4747, + [4970] = 4778, + [4971] = 4768, + [4972] = 4778, + [4973] = 4775, + [4974] = 4776, + [4975] = 4788, + [4976] = 4747, + [4977] = 4778, + [4978] = 4775, + [4979] = 4768, + [4980] = 4776, + [4981] = 4747, + [4982] = 4788, + [4983] = 4775, + [4984] = 4747, + [4985] = 4778, + [4986] = 4768, + [4987] = 4776, + [4988] = 4775, + [4989] = 4788, + [4990] = 4788, + [4991] = 4747, + [4992] = 4778, + [4993] = 4775, + [4994] = 4768, + [4995] = 4768, + [4996] = 4776, + [4997] = 4776, + [4998] = 4775, + [4999] = 4788, + [5000] = 4747, + [5001] = 4778, + [5002] = 4766, + [5003] = 4778, + [5004] = 5004, + [5005] = 5005, + [5006] = 4768, + [5007] = 4749, + [5008] = 5008, + [5009] = 4772, + [5010] = 5010, + [5011] = 4776, + [5012] = 1631, + [5013] = 4788, + [5014] = 4747, + [5015] = 4778, + [5016] = 4747, + [5017] = 4772, + [5018] = 4768, + [5019] = 4749, + [5020] = 4776, + [5021] = 4772, + [5022] = 4788, + [5023] = 4749, + [5024] = 4776, + [5025] = 4768, + [5026] = 4788, + [5027] = 4747, + [5028] = 5028, + [5029] = 5029, + [5030] = 4749, + [5031] = 5031, + [5032] = 4768, + [5033] = 4778, + [5034] = 5034, + [5035] = 4775, + [5036] = 4768, + [5037] = 4776, + [5038] = 4778, + [5039] = 4747, + [5040] = 4788, + [5041] = 5041, + [5042] = 4747, + [5043] = 5043, + [5044] = 4778, + [5045] = 4788, + [5046] = 5046, + [5047] = 5047, + [5048] = 4768, + [5049] = 4776, + [5050] = 5050, + [5051] = 4776, + [5052] = 1736, + [5053] = 4788, + [5054] = 5054, + [5055] = 5055, + [5056] = 5056, + [5057] = 4747, + [5058] = 4778, + [5059] = 4768, + [5060] = 4778, + [5061] = 4776, + [5062] = 5062, + [5063] = 5063, + [5064] = 4768, + [5065] = 5065, + [5066] = 4747, + [5067] = 4788, + [5068] = 4776, + [5069] = 5069, + [5070] = 5070, + [5071] = 4776, + [5072] = 4768, + [5073] = 5073, + [5074] = 5074, + [5075] = 4788, + [5076] = 4747, + [5077] = 5077, + [5078] = 5078, + [5079] = 4778, + [5080] = 4768, + [5081] = 5081, + [5082] = 5082, + [5083] = 4776, + [5084] = 4746, + [5085] = 5085, + [5086] = 4811, + [5087] = 4778, + [5088] = 5088, + [5089] = 4788, + [5090] = 4747, + [5091] = 4778, + [5092] = 4757, + [5093] = 4768, + [5094] = 5094, + [5095] = 5095, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 1645, + [5100] = 5100, + [5101] = 5101, + [5102] = 4776, + [5103] = 5103, + [5104] = 4788, + [5105] = 5105, + [5106] = 4747, + [5107] = 5107, + [5108] = 4778, + [5109] = 5109, + [5110] = 4768, + [5111] = 4778, + [5112] = 5112, + [5113] = 4776, + [5114] = 4788, + [5115] = 5115, + [5116] = 5116, + [5117] = 5117, + [5118] = 5118, + [5119] = 4747, }; static TSCharacterRange sym_qualified_id_character_set_1[] = { @@ -5991,1527 +6433,1845 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(184); + if (eof) ADVANCE(209); ADVANCE_MAP( - '!', 229, - '"', 277, - '#', 24, - '\'', 173, - '(', 188, - ')', 192, - '*', 189, - ',', 191, - '-', 103, - '.', 225, - '/', 93, - '0', 245, - ':', 220, - ';', 241, - '<', 96, - '=', 214, - '?', 267, - '@', 266, - '[', 239, + '!', 259, + '"', 310, + '#', 26, + '\'', 198, + '(', 213, + ')', 217, + '*', 214, + ',', 216, + '-', 115, + '.', 252, + '/', 104, + '0', 275, + ':', 247, + ';', 271, + '<', 107, + '=', 240, + '?', 299, + '@', 298, + '[', 269, ); - if (lookahead == '\\') SKIP(182); - if (lookahead == ']') ADVANCE(243); - if (lookahead == '_') ADVANCE(247); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(155); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(139); - if (lookahead == 'o') ADVANCE(117); - if (lookahead == 'p') ADVANCE(141); - if (lookahead == 's') ADVANCE(111); - if (lookahead == 'u') ADVANCE(144); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); - if (lookahead == '~') ADVANCE(224); + if (lookahead == '\\') SKIP(207); + if (lookahead == ']') ADVANCE(273); + if (lookahead == '_') ADVANCE(277); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'c') ADVANCE(162); + if (lookahead == 'd') ADVANCE(116); + if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'h') ADVANCE(118); + if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'o') ADVANCE(135); + if (lookahead == 'p') ADVANCE(163); + if (lookahead == 's') ADVANCE(126); + if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'w') ADVANCE(145); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); + if (lookahead == '~') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); + lookahead == ' ') SKIP(208); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(276); END_STATE(); case 1: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(60); END_STATE(); case 2: - if (lookahead == '\n') SKIP(54); + if (lookahead == '\n') SKIP(60); if (lookahead == '\r') SKIP(1); END_STATE(); case 3: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(62); END_STATE(); case 4: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(62); if (lookahead == '\r') SKIP(3); END_STATE(); case 5: - if (lookahead == '\n') SKIP(83); + if (lookahead == '\n') SKIP(94); END_STATE(); case 6: - if (lookahead == '\n') SKIP(83); + if (lookahead == '\n') SKIP(94); if (lookahead == '\r') SKIP(5); END_STATE(); case 7: - if (lookahead == '\n') SKIP(79); + if (lookahead == '\n') SKIP(89); END_STATE(); case 8: - if (lookahead == '\n') SKIP(79); + if (lookahead == '\n') SKIP(89); if (lookahead == '\r') SKIP(7); END_STATE(); case 9: - if (lookahead == '\n') SKIP(73); + if (lookahead == '\n') SKIP(82); END_STATE(); case 10: - if (lookahead == '\n') SKIP(73); + if (lookahead == '\n') SKIP(82); if (lookahead == '\r') SKIP(9); END_STATE(); case 11: - if (lookahead == '\n') SKIP(80); + if (lookahead == '\n') SKIP(95); END_STATE(); case 12: - if (lookahead == '\n') SKIP(80); + if (lookahead == '\n') SKIP(95); if (lookahead == '\r') SKIP(11); END_STATE(); case 13: - if (lookahead == '\n') SKIP(84); + if (lookahead == '\n') SKIP(90); END_STATE(); case 14: - if (lookahead == '\n') SKIP(84); + if (lookahead == '\n') SKIP(90); if (lookahead == '\r') SKIP(13); END_STATE(); case 15: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(108); END_STATE(); case 16: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(108); if (lookahead == '\r') SKIP(15); END_STATE(); case 17: - if (lookahead == '\n') SKIP(74); - if (lookahead == '"') ADVANCE(277); - if (lookahead == '/') ADVANCE(278); - if (lookahead == '\\') ADVANCE(18); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(281); - if (lookahead != 0) ADVANCE(282); + if (lookahead == '\n') SKIP(100); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(284); - if (lookahead == '\r') ADVANCE(283); - if (lookahead == 'U') ADVANCE(172); - if (lookahead == 'u') ADVANCE(168); - if (lookahead == 'x') ADVANCE(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(286); - if (lookahead != 0) ADVANCE(283); + if (lookahead == '\n') SKIP(100); + if (lookahead == '\r') SKIP(17); END_STATE(); case 19: - if (lookahead == '\n') SKIP(89); + if (lookahead == '\n') SKIP(83); + if (lookahead == '"') ADVANCE(310); + if (lookahead == '/') ADVANCE(311); + if (lookahead == '\\') ADVANCE(20); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(314); + if (lookahead != 0) ADVANCE(315); END_STATE(); case 20: - if (lookahead == '\n') SKIP(89); - if (lookahead == '\r') SKIP(19); + if (lookahead == '\n') ADVANCE(317); + if (lookahead == '\r') ADVANCE(316); + if (lookahead == 'U') ADVANCE(197); + if (lookahead == 'u') ADVANCE(193); + if (lookahead == 'x') ADVANCE(190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(319); + if (lookahead != 0) ADVANCE(316); END_STATE(); case 21: - if (lookahead == '\n') SKIP(98); + if (lookahead == '\n') SKIP(109); END_STATE(); case 22: - if (lookahead == '\n') SKIP(98); + if (lookahead == '\n') SKIP(109); if (lookahead == '\r') SKIP(21); END_STATE(); case 23: - if (lookahead == '\r') ADVANCE(210); - if (lookahead == '\\') ADVANCE(207); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '\n') SKIP(110); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(236); - if (lookahead == '#') ADVANCE(174); + if (lookahead == '\n') SKIP(110); + if (lookahead == '\r') SKIP(23); + END_STATE(); + case 25: + if (lookahead == '\r') ADVANCE(235); + if (lookahead == '\\') ADVANCE(232); + if (lookahead != 0) ADVANCE(234); + END_STATE(); + case 26: + if (lookahead == '!') ADVANCE(266); + if (lookahead == '#') ADVANCE(199); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); END_STATE(); - case 25: + case 27: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ')', 192, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - ']', 243, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 335, + '[', 269, + '\\', 336, + ']', 273, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(27); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 26: + case 28: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ')', 192, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - ']', 243, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 335, + '[', 269, + '\\', 336, + ']', 273, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(28); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 27: + case 29: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - ';', 298, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + ';', 333, + '=', 335, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(27); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(29); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 28: + case 30: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'i', 315, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 241, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(30); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 29: + case 31: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ';', 298, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 335, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'i', 356, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(31); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 30: + case 32: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'i', 315, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ';', 333, + '=', 335, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(32); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 31: + case 33: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '=', 215, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 241, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(31); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(33); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 34: + ADVANCE_MAP( + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 335, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'i', 356, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 35: + ADVANCE_MAP( + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '<', 331, + '=', 241, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(35); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 32: + case 36: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 291, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - '=', 215, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '!', 260, + '"', 310, + '#', 324, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '0', 304, + '<', 331, + '=', 241, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(36); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 33: + case 37: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ')', 192, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 335, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(37); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 34: + case 38: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ')', 192, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 335, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(38); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 35: + case 39: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 241, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(39); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 36: + case 40: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - '|', 219, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '=', 335, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(40); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 37: + case 41: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 241, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 38: + case 42: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '0', 271, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - '|', 219, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '0', 304, + '=', 335, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(42); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 39: + case 43: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '<', 297, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - 'o', 322, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '<', 331, + '=', 241, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(39); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(43); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 40: + case 44: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - 'o', 322, + '!', 260, + '"', 310, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '0', 304, + '<', 331, + '=', 241, + '?', 300, + '\\', 336, + '_', 278, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 41: + case 45: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - '<', 297, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - 'o', 322, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); - if (('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('.' <= lookahead && lookahead <= '@') || + lookahead == ' ') SKIP(45); + if (('$' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 42: + case 46: ADVANCE_MAP( - '!', 230, - '"', 277, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '0', 271, - '=', 215, - '?', 268, - '\\', 300, - '_', 248, - 'f', 318, - 'o', 322, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + ';', 333, + '=', 241, + '\\', 336, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(46); if (('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('.' <= lookahead && lookahead <= '@') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 43: + case 47: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ')', 192, - ',', 191, - '-', 299, - '/', 294, - '\\', 300, - 'f', 318, - '}', 205, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + ';', 333, + '=', 335, + '\\', 336, + 'f', 359, + 'o', 348, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(43); - if (('$' <= lookahead && lookahead <= '.') || + lookahead == ' ') SKIP(47); + if (('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 44: + case 48: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - ';', 298, - '\\', 300, - 'f', 318, - 'o', 309, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + ';', 333, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(48); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 45: + case 49: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - ';', 298, - '\\', 300, - 'f', 318, - '}', 205, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 241, + '\\', 336, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(49); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 46: + case 50: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '=', 215, - '\\', 300, - 'f', 318, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 241, + '\\', 336, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(50); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 47: + case 51: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '\\', 300, - ']', 243, - 'f', 318, - '|', 219, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + ']', 273, + 'f', 359, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47); + lookahead == ' ') SKIP(51); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 48: + case 52: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - ',', 191, - '-', 299, - '/', 294, - '\\', 300, - 'f', 318, - 'i', 315, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + 'd', 358, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(52); if (('$' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 49: + case 53: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - ';', 298, - '\\', 300, - 'f', 318, - '|', 219, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + 'i', 356, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(53); + if (('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 54: + ADVANCE_MAP( + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + ',', 216, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + 'o', 363, + '{', 229, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54); + if (('$' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 55: + ADVANCE_MAP( + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + ';', 333, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || lookahead == '.' || (':' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 50: + case 56: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '<', 297, - '=', 215, - '\\', 300, - 'f', 318, - 'o', 322, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '<', 331, + '=', 241, + '\\', 336, + 'f', 359, + 'o', 363, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50); + lookahead == ' ') SKIP(56); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || lookahead == '.' || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 51: + case 57: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '=', 215, - '\\', 300, - 'd', 317, - 'f', 318, - '|', 219, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '<', 331, + '=', 241, + '\\', 336, + 'f', 359, + '{', 229, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51); + lookahead == ' ') SKIP(57); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || lookahead == '.' || (':' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^' || + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 52: + case 58: ADVANCE_MAP( - '!', 230, - '#', 292, - '\'', 173, - '(', 188, - '-', 299, - '/', 294, - '=', 215, - '\\', 300, - 'f', 318, - 'o', 322, + '!', 260, + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '=', 241, + '\\', 336, + 'd', 358, + 'f', 359, + '{', 229, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52); + lookahead == ' ') SKIP(58); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || lookahead == '.' || (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 53: + case 59: ADVANCE_MAP( - '!', 228, - '"', 277, - '#', 176, - '(', 188, - ')', 192, - '*', 189, - ',', 191, - '.', 175, - '/', 93, - '0', 271, - ':', 220, - ';', 102, - '=', 214, - '?', 267, - '@', 266, + '!', 258, + '"', 310, + '#', 201, + '(', 213, + ')', 217, + '*', 214, + ',', 216, + '.', 200, + '/', 104, + '0', 304, + ':', 247, + ';', 114, + '<', 107, + '=', 239, + '?', 299, + '@', 298, ); if (lookahead == '\\') SKIP(2); - if (lookahead == ']') ADVANCE(243); - if (lookahead == '_') ADVANCE(248); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); + if (lookahead == ']') ADVANCE(273); + if (lookahead == '_') ADVANCE(278); + if (lookahead == 'o') ADVANCE(363); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); + if (lookahead == '~') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(60); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 54: + case 60: ADVANCE_MAP( - '!', 228, - '"', 277, - '#', 176, - '(', 188, - ')', 192, - '*', 189, - ',', 191, - '/', 93, - '0', 271, - ':', 220, - ';', 102, - '=', 214, - '?', 267, + '!', 258, + '"', 310, + '#', 201, + '(', 213, + ')', 217, + '*', 214, + ',', 216, + '/', 104, + '0', 304, + ':', 247, + ';', 114, + '<', 107, + '=', 239, + '?', 299, ); if (lookahead == '\\') SKIP(2); - if (lookahead == ']') ADVANCE(243); - if (lookahead == '_') ADVANCE(248); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); + if (lookahead == ']') ADVANCE(273); + if (lookahead == '_') ADVANCE(278); + if (lookahead == 'o') ADVANCE(363); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); + if (lookahead == '~') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(60); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 55: + case 61: ADVANCE_MAP( - '!', 228, - '"', 277, - '(', 188, - ')', 192, - ',', 191, - '.', 175, - '/', 93, - '0', 271, - ':', 220, - ';', 240, - '<', 96, - '=', 214, - '?', 267, - '@', 266, + '!', 258, + '"', 310, + '(', 213, + ')', 217, + ',', 216, + '.', 200, + '/', 104, + '0', 304, + ':', 247, + ';', 270, + '?', 299, + '@', 298, ); if (lookahead == '\\') SKIP(4); - if (lookahead == '_') ADVANCE(248); - if (lookahead == 'o') ADVANCE(322); - if (lookahead == '|') ADVANCE(218); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '|') ADVANCE(245); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 56: + case 62: ADVANCE_MAP( - '!', 228, - '"', 277, - '(', 188, - ')', 192, - ',', 191, - '/', 93, - '0', 271, - ':', 220, - ';', 240, - '<', 96, - '=', 214, - '?', 267, + '!', 258, + '"', 310, + '(', 213, + ')', 217, + ',', 216, + '/', 104, + '0', 304, + ':', 247, + ';', 270, + '?', 299, ); if (lookahead == '\\') SKIP(4); - if (lookahead == '_') ADVANCE(248); - if (lookahead == 'o') ADVANCE(322); - if (lookahead == '|') ADVANCE(218); + if (lookahead == '_') ADVANCE(278); + if (lookahead == '|') ADVANCE(245); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 57: + case 63: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ')', 192, - ',', 191, - '.', 302, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - ']', 243, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ')', 217, + ',', 216, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + ']', 273, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 58: + case 64: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ')', 192, - ',', 191, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - ']', 243, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ')', 217, + ',', 216, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + ']', 273, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 59: + case 65: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ')', 192, - ',', 191, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - ']', 243, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ')', 217, + ',', 216, + '/', 328, + '0', 304, + '[', 269, + '\\', 336, + ']', 273, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '{', 229, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(59); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(65); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 60: + case 66: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '.', 302, - '/', 294, - '0', 271, - ':', 221, - ';', 298, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + ';', 333, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 61: + case 67: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '.', 302, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'i', 315, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(70); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 62: + case 68: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '/', 294, - '0', 271, - ':', 221, - ';', 298, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'i', 356, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 63: + case 69: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'i', 315, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + ':', 248, + ';', 333, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(63); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 64: + case 70: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '/', 294, - '0', 271, - ';', 298, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + ':', 248, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(70); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 65: + case 71: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - ',', 191, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'i', 315, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'i', 356, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || ('*' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 66: + case 72: + ADVANCE_MAP( + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + ';', 333, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 73: + ADVANCE_MAP( + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 74: + ADVANCE_MAP( + '"', 310, + '#', 327, + '(', 212, + ',', 216, + '/', 328, + '0', 304, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'i', 356, + 'l', 345, + 'w', 350, + '|', 246, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 75: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '-', 299, - '.', 302, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '-', 334, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || (';' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 67: + case 76: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '-', 299, - '/', 294, - '0', 271, - ':', 221, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '-', 334, + '/', 328, + '0', 304, + ':', 248, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 68: + case 77: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '-', 299, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '-', 334, + '/', 328, + '0', 304, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(77); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('.' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 69: + case 78: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '.', 302, - '/', 294, - '0', 271, - ':', 221, - '=', 215, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '.', 338, + '/', 328, + '0', 304, + ':', 248, + '<', 331, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('-' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 70: + case 79: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '/', 294, - '0', 271, - ':', 221, - '=', 215, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '/', 328, + '0', 304, + ':', 248, + '<', 331, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('-' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 71: + case 80: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '/', 294, - '0', 271, - '=', 215, - '[', 239, - '\\', 300, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, + '"', 310, + '#', 327, + '(', 212, + '/', 328, + '0', 304, + '<', 331, + '=', 242, + '[', 269, + '\\', 336, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(71); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(80); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('-' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 72: + case 81: ADVANCE_MAP( - '"', 277, - '#', 293, - '(', 187, - '/', 294, - '0', 271, - '[', 239, - '\\', 300, - 'c', 320, - 'd', 317, - 'f', 318, - 'l', 307, - 'w', 311, - '|', 219, - '}', 205, + '"', 310, + '#', 327, + '(', 212, + '/', 328, + '0', 304, + '[', 269, + '\\', 336, + 'c', 361, + 'd', 358, + 'f', 359, + 'h', 341, + 'l', 345, + 'w', 350, + '|', 246, + '}', 230, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == ' ') SKIP(81); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('!' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || ('-' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 73: - if (lookahead == '"') ADVANCE(277); - if (lookahead == '#') ADVANCE(81); - if (lookahead == '(') ADVANCE(163); - if (lookahead == '/') ADVANCE(93); + case 82: + if (lookahead == '"') ADVANCE(310); + if (lookahead == '#') ADVANCE(91); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '/') ADVANCE(104); if (lookahead == '\\') SKIP(10); - if (lookahead == '}') ADVANCE(205); + if (lookahead == '}') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(82); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(196); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); END_STATE(); - case 74: - if (lookahead == '"') ADVANCE(277); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') ADVANCE(18); + case 83: + if (lookahead == '"') ADVANCE(310); + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') ADVANCE(20); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(83); END_STATE(); - case 75: - if (lookahead == '#') ADVANCE(292); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(188); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '/') ADVANCE(294); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == 'f') ADVANCE(318); + case 84: + ADVANCE_MAP( + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '.', 332, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + '}', 230, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(84); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 85: + ADVANCE_MAP( + '#', 326, + '\'', 198, + '(', 213, + '-', 334, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(75); + lookahead == ' ') SKIP(85); if (lookahead == '!' || ('$' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -7519,65 +8279,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 76: + case 86: ADVANCE_MAP( - '#', 292, - '\'', 173, - '(', 187, - ')', 192, - ',', 191, - '/', 294, - '[', 239, - '\\', 300, - '|', 219, + '#', 326, + '\'', 198, + '(', 212, + ')', 217, + ',', 216, + '/', 328, + '[', 269, + '\\', 336, + '|', 246, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76); + lookahead == ' ') SKIP(86); if (lookahead == '!' || ('$' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(300); + lookahead == '^') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 77: + case 87: ADVANCE_MAP( - '#', 292, - '\'', 173, - '(', 187, - ')', 192, - ',', 191, - '/', 294, - '[', 239, - '\\', 300, + '#', 326, + '\'', 198, + '(', 212, + ')', 217, + ',', 216, + '/', 328, + '[', 269, + '\\', 336, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(77); + lookahead == ' ') SKIP(87); if (lookahead == '!' || ('$' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 78: - if (lookahead == '#') ADVANCE(292); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(187); - if (lookahead == '/') ADVANCE(294); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '[') ADVANCE(239); - if (lookahead == '\\') ADVANCE(300); + case 88: + if (lookahead == '#') ADVANCE(326); + if (lookahead == '\'') ADVANCE(198); + if (lookahead == '(') ADVANCE(212); + if (lookahead == '/') ADVANCE(328); + if (lookahead == ';') ADVANCE(272); + if (lookahead == '[') ADVANCE(269); + if (lookahead == '\\') ADVANCE(336); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78); + lookahead == ' ') SKIP(88); if (lookahead == '!' || ('$' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -7586,194 +8346,238 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 79: + case 89: ADVANCE_MAP( - '#', 82, - '\'', 173, - '(', 188, - ')', 192, - '.', 225, - '/', 93, - ';', 102, - '=', 214, + '#', 92, + '\'', 198, + '(', 213, + ')', 217, + ',', 216, + '.', 252, + '/', 104, + ':', 247, + ';', 114, + '=', 239, ); if (lookahead == '\\') SKIP(8); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + lookahead == ' ') SKIP(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 80: - if (lookahead == '#') ADVANCE(82); - if (lookahead == '(') ADVANCE(163); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') SKIP(12); + case 90: + if (lookahead == '#') ADVANCE(92); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(217); + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(14); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(80); + lookahead == ' ') SKIP(90); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 81: - if (lookahead == '#') ADVANCE(174); + case 91: + if (lookahead == '#') ADVANCE(199); END_STATE(); - case 82: - if (lookahead == '#') ADVANCE(174); + case 92: + if (lookahead == '#') ADVANCE(199); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); END_STATE(); - case 83: + case 93: + ADVANCE_MAP( + '#', 325, + '\'', 198, + '(', 213, + '-', 334, + '.', 332, + '/', 328, + '=', 335, + '\\', 336, + 'f', 359, + '{', 229, + '}', 230, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(93); + if (lookahead == '!' || + ('$' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + (':' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 94: ADVANCE_MAP( - '#', 176, - '(', 187, - ')', 192, - '*', 189, - ',', 191, - '-', 103, - '/', 93, - '0', 273, - ';', 102, - '=', 214, + '#', 201, + '(', 212, + ')', 217, + '*', 214, + ',', 216, + '-', 115, + '/', 104, + '0', 306, + ':', 247, + ';', 114, + '<', 107, + '=', 239, ); if (lookahead == '\\') SKIP(6); - if (lookahead == ']') ADVANCE(243); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'e') ADVANCE(155); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 's') ADVANCE(111); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); + if (lookahead == ']') ADVANCE(273); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'd') ADVANCE(160); + if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'o') ADVANCE(164); + if (lookahead == 's') ADVANCE(126); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(83); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + lookahead == ' ') SKIP(94); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(307); END_STATE(); - case 84: - if (lookahead == '#') ADVANCE(177); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(189); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') SKIP(14); - if (lookahead == 'm') ADVANCE(319); + case 95: + if (lookahead == '#') ADVANCE(202); + if (lookahead == ')') ADVANCE(217); + if (lookahead == '*') ADVANCE(214); + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(12); + if (lookahead == 'm') ADVANCE(360); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84); + lookahead == ' ') SKIP(95); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 85: - if (lookahead == '\'') ADVANCE(179); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') SKIP(22); + case 96: + if (lookahead == '\'') ADVANCE(204); + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(110); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(261); END_STATE(); - case 86: - if (lookahead == '(') ADVANCE(162); + case 97: + if (lookahead == '(') ADVANCE(187); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); END_STATE(); - case 87: - if (lookahead == '(') ADVANCE(162); + case 98: + if (lookahead == '(') ADVANCE(187); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(372); END_STATE(); - case 88: - if (lookahead == '(') ADVANCE(162); + case 99: + if (lookahead == '(') ADVANCE(187); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); END_STATE(); - case 89: - if (lookahead == '(') ADVANCE(187); - if (lookahead == '.') ADVANCE(225); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') SKIP(20); + case 100: + if (lookahead == '(') ADVANCE(212); + if (lookahead == '.') ADVANCE(252); + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(18); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); + lookahead == ' ') SKIP(100); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 90: - if (lookahead == ')') ADVANCE(233); + case 101: + if (lookahead == ')') ADVANCE(263); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(90); + lookahead == ' ') ADVANCE(101); END_STATE(); - case 91: - if (lookahead == ')') ADVANCE(329); - if (set_contains(sym_qualified_id_character_set_2, 9, lookahead)) ADVANCE(91); + case 102: + if (lookahead == ')') ADVANCE(371); + if (set_contains(sym_qualified_id_character_set_2, 9, lookahead)) ADVANCE(102); END_STATE(); - case 92: - if (lookahead == ')') ADVANCE(303); + case 103: + if (lookahead == ')') ADVANCE(339); if (set_contains(sym_qualified_id_character_set_2, 9, lookahead) || - lookahead == ';') ADVANCE(92); + lookahead == ';') ADVANCE(103); END_STATE(); - case 93: - if (lookahead == '*') ADVANCE(95); - if (lookahead == '/') ADVANCE(209); + case 104: + if (lookahead == '*') ADVANCE(106); + if (lookahead == '/') ADVANCE(234); END_STATE(); - case 94: - if (lookahead == '*') ADVANCE(94); - if (lookahead == '/') ADVANCE(206); - if (lookahead != 0) ADVANCE(95); + case 105: + if (lookahead == '*') ADVANCE(105); + if (lookahead == '/') ADVANCE(231); + if (lookahead != 0) ADVANCE(106); END_STATE(); - case 95: - if (lookahead == '*') ADVANCE(94); - if (lookahead != 0) ADVANCE(95); + case 106: + if (lookahead == '*') ADVANCE(105); + if (lookahead != 0) ADVANCE(106); END_STATE(); - case 96: - if (lookahead == '-') ADVANCE(262); + case 107: + if (lookahead == '-') ADVANCE(292); END_STATE(); - case 97: - if (lookahead == '/') ADVANCE(93); - if (lookahead == ';') ADVANCE(102); + case 108: + if (lookahead == '/') ADVANCE(104); + if (lookahead == ';') ADVANCE(114); if (lookahead == '\\') SKIP(16); - if (lookahead == 'i') ADVANCE(138); - if (lookahead == 'p') ADVANCE(141); + if (lookahead == 'i') ADVANCE(159); + if (lookahead == 'p') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(97); + lookahead == ' ') SKIP(108); END_STATE(); - case 98: - if (lookahead == '/') ADVANCE(93); + case 109: + if (lookahead == '/') ADVANCE(104); if (lookahead == '\\') SKIP(22); + if (lookahead == 'f') ADVANCE(359); + if (lookahead == '|') ADVANCE(245); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(109); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 99: - if (lookahead == '/') ADVANCE(93); - if (lookahead == '\\') SKIP(22); + case 110: + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(24); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(110); + END_STATE(); + case 111: + if (lookahead == '/') ADVANCE(104); + if (lookahead == '\\') SKIP(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(110); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(268); END_STATE(); - case 100: - if (lookahead == '/') ADVANCE(294); - if (lookahead == ';') ADVANCE(298); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == 'i') ADVANCE(138); - if (lookahead == 'p') ADVANCE(141); + case 112: + if (lookahead == '/') ADVANCE(328); + if (lookahead == ';') ADVANCE(333); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == 'i') ADVANCE(159); + if (lookahead == 'p') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(100); + lookahead == ' ') SKIP(112); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -7782,14 +8586,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); END_STATE(); - case 101: - if (lookahead == '/') ADVANCE(294); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '_') ADVANCE(247); + case 113: + if (lookahead == '/') ADVANCE(328); + if (lookahead == '\\') ADVANCE(336); + if (lookahead == '_') ADVANCE(277); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(101); + lookahead == ' ') SKIP(113); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -7798,452 +8602,493 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(300); - END_STATE(); - case 102: - if (lookahead == ';') ADVANCE(193); - END_STATE(); - case 103: - if (lookahead == '>') ADVANCE(226); - END_STATE(); - case 104: - if (lookahead == 'a') ADVANCE(151); - if (lookahead == 'o') ADVANCE(254); - END_STATE(); - case 105: - if (lookahead == 'a') ADVANCE(213); - END_STATE(); - case 106: - if (lookahead == 'a') ADVANCE(143); - END_STATE(); - case 107: - if (lookahead == 'a') ADVANCE(135); - END_STATE(); - case 108: - if (lookahead == 'c') ADVANCE(132); - END_STATE(); - case 109: - if (lookahead == 'd') ADVANCE(154); - END_STATE(); - case 110: - if (lookahead == 'd') ADVANCE(115); - END_STATE(); - case 111: - if (lookahead == 'e') ADVANCE(133); - END_STATE(); - case 112: - if (lookahead == 'e') ADVANCE(119); - END_STATE(); - case 113: - if (lookahead == 'e') ADVANCE(200); + lookahead == '|') ADVANCE(336); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == ';') ADVANCE(218); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(190); + if (lookahead == '>') ADVANCE(253); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'a') ADVANCE(176); + if (lookahead == 'o') ADVANCE(284); END_STATE(); case 117: - if (lookahead == 'f') ADVANCE(216); - if (lookahead == 'r') ADVANCE(256); + if (lookahead == 'a') ADVANCE(238); END_STATE(); case 118: - if (lookahead == 'f') ADVANCE(203); + if (lookahead == 'a') ADVANCE(157); END_STATE(); case 119: - if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'a') ADVANCE(167); END_STATE(); case 120: - if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 121: - if (lookahead == 'f') ADVANCE(128); + if (lookahead == 'c') ADVANCE(151); END_STATE(); case 122: - if (lookahead == 'h') ADVANCE(260); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 123: - if (lookahead == 'i') ADVANCE(106); + if (lookahead == 'd') ADVANCE(179); END_STATE(); case 124: - if (lookahead == 'i') ADVANCE(159); - if (lookahead == 'o') ADVANCE(142); + if (lookahead == 'd') ADVANCE(154); END_STATE(); case 125: - if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'd') ADVANCE(129); END_STATE(); case 126: - if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 128: - if (lookahead == 'i') ADVANCE(158); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'e') ADVANCE(215); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(222); + if (lookahead == 'e') ADVANCE(171); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(123); - if (lookahead == 's') ADVANCE(201); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'e') ADVANCE(122); END_STATE(); case 133: - if (lookahead == 'l') ADVANCE(118); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 134: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'x') ADVANCE(121); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'f') ADVANCE(243); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'f') ADVANCE(228); END_STATE(); case 137: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'f') ADVANCE(144); END_STATE(); case 138: - if (lookahead == 'n') ADVANCE(121); + if (lookahead == 'f') ADVANCE(146); END_STATE(); case 139: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'f') ADVANCE(132); END_STATE(); case 140: - if (lookahead == 'o') ADVANCE(137); + if (lookahead == 'f') ADVANCE(147); END_STATE(); case 141: - if (lookahead == 'o') ADVANCE(145); - if (lookahead == 'r') ADVANCE(112); + if (lookahead == 'h') ADVANCE(288); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(107); + if (lookahead == 'i') ADVANCE(184); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 143: - if (lookahead == 's') ADVANCE(202); + if (lookahead == 'i') ADVANCE(119); END_STATE(); case 144: - if (lookahead == 's') ADVANCE(113); + if (lookahead == 'i') ADVANCE(181); END_STATE(); case 145: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 146: - if (lookahead == 's') ADVANCE(149); + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(252); + if (lookahead == 'i') ADVANCE(183); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(122); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(264); + if (lookahead == 'l') ADVANCE(249); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(160); + if (lookahead == 'l') ADVANCE(143); + if (lookahead == 's') ADVANCE(226); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'l') ADVANCE(178); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 153: - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 154: - if (lookahead == 'u') ADVANCE(134); + if (lookahead == 'l') ADVANCE(133); END_STATE(); case 155: - if (lookahead == 'x') ADVANCE(108); + if (lookahead == 'l') ADVANCE(128); END_STATE(); case 156: - if (lookahead == 'x') ADVANCE(251); + if (lookahead == 'n') ADVANCE(286); END_STATE(); case 157: - if (lookahead == 'x') ADVANCE(250); + if (lookahead == 'n') ADVANCE(124); END_STATE(); case 158: - if (lookahead == 'x') ADVANCE(249); + if (lookahead == 'n') ADVANCE(170); END_STATE(); case 159: - if (lookahead == 'x') ADVANCE(129); + if (lookahead == 'n') ADVANCE(140); END_STATE(); case 160: - if (lookahead == 'y') ADVANCE(244); + if (lookahead == 'o') ADVANCE(284); END_STATE(); case 161: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(270); + if (lookahead == 'o') ADVANCE(123); END_STATE(); case 162: - if (set_contains(sym_qualified_id_character_set_1, 9, lookahead)) ADVANCE(91); + if (lookahead == 'o') ADVANCE(158); END_STATE(); case 163: - if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(92); + if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'r') ADVANCE(131); END_STATE(); case 164: + if (lookahead == 'r') ADVANCE(290); + END_STATE(); + case 165: + if (lookahead == 'r') ADVANCE(296); + END_STATE(); + case 166: + if (lookahead == 'r') ADVANCE(120); + END_STATE(); + case 167: + if (lookahead == 's') ADVANCE(227); + END_STATE(); + case 168: + if (lookahead == 's') ADVANCE(127); + END_STATE(); + case 169: + if (lookahead == 's') ADVANCE(177); + END_STATE(); + case 170: + if (lookahead == 's') ADVANCE(173); + END_STATE(); + case 171: + if (lookahead == 't') ADVANCE(282); + END_STATE(); + case 172: + if (lookahead == 't') ADVANCE(141); + END_STATE(); + case 173: + if (lookahead == 't') ADVANCE(294); + END_STATE(); + case 174: + if (lookahead == 't') ADVANCE(185); + END_STATE(); + case 175: + if (lookahead == 't') ADVANCE(301); + END_STATE(); + case 176: + if (lookahead == 't') ADVANCE(117); + END_STATE(); + case 177: + if (lookahead == 't') ADVANCE(138); + END_STATE(); + case 178: + if (lookahead == 'u') ADVANCE(125); + END_STATE(); + case 179: + if (lookahead == 'u') ADVANCE(155); + END_STATE(); + case 180: + if (lookahead == 'x') ADVANCE(121); + END_STATE(); + case 181: + if (lookahead == 'x') ADVANCE(281); + END_STATE(); + case 182: + if (lookahead == 'x') ADVANCE(280); + END_STATE(); + case 183: + if (lookahead == 'x') ADVANCE(279); + END_STATE(); + case 184: + if (lookahead == 'x') ADVANCE(148); + END_STATE(); + case 185: + if (lookahead == 'y') ADVANCE(274); + END_STATE(); + case 186: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(303); + END_STATE(); + case 187: + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead)) ADVANCE(102); + END_STATE(); + case 188: + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(103); + END_STATE(); + case 189: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); - case 165: + case 190: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(322); END_STATE(); - case 166: + case 191: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); END_STATE(); - case 167: + case 192: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); END_STATE(); - case 168: + case 193: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(192); END_STATE(); - case 169: + case 194: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(193); END_STATE(); - case 170: + case 195: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(194); END_STATE(); - case 171: + case 196: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(195); END_STATE(); - case 172: + case 197: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(196); END_STATE(); - case 173: + case 198: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(264); END_STATE(); - case 174: + case 199: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(332); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(374); END_STATE(); - case 175: + case 200: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); END_STATE(); - case 176: + case 201: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(199); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); END_STATE(); - case 177: + case 202: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); END_STATE(); - case 178: + case 203: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 179: + case 204: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(261); END_STATE(); - case 180: + case 205: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 181: - if (eof) ADVANCE(184); - if (lookahead == '\n') SKIP(183); + case 206: + if (eof) ADVANCE(209); + if (lookahead == '\n') SKIP(208); END_STATE(); - case 182: - if (eof) ADVANCE(184); - if (lookahead == '\n') SKIP(183); - if (lookahead == '\r') SKIP(181); + case 207: + if (eof) ADVANCE(209); + if (lookahead == '\n') SKIP(208); + if (lookahead == '\r') SKIP(206); END_STATE(); - case 183: - if (eof) ADVANCE(184); + case 208: + if (eof) ADVANCE(209); ADVANCE_MAP( - '!', 229, - '"', 277, - '#', 24, - '\'', 173, - '(', 188, - ')', 192, - '*', 189, - ',', 191, - '-', 103, - '.', 225, - '/', 93, - '0', 245, - ':', 220, - ';', 241, - '<', 96, - '=', 214, - '?', 267, - '[', 239, + '!', 259, + '"', 310, + '#', 26, + '\'', 198, + '(', 213, + ')', 217, + '*', 214, + ',', 216, + '-', 115, + '.', 252, + '/', 104, + '0', 275, + ':', 247, + ';', 271, + '<', 107, + '=', 240, + '?', 299, + '[', 269, ); - if (lookahead == '\\') SKIP(182); - if (lookahead == ']') ADVANCE(243); - if (lookahead == '_') ADVANCE(247); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'e') ADVANCE(155); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(139); - if (lookahead == 'o') ADVANCE(117); - if (lookahead == 'p') ADVANCE(141); - if (lookahead == 's') ADVANCE(111); - if (lookahead == 'u') ADVANCE(144); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(204); - if (lookahead == '|') ADVANCE(218); - if (lookahead == '}') ADVANCE(205); - if (lookahead == '~') ADVANCE(224); + if (lookahead == '\\') SKIP(207); + if (lookahead == ']') ADVANCE(273); + if (lookahead == '_') ADVANCE(277); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'c') ADVANCE(162); + if (lookahead == 'd') ADVANCE(116); + if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'h') ADVANCE(118); + if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'm') ADVANCE(161); + if (lookahead == 'o') ADVANCE(135); + if (lookahead == 'p') ADVANCE(163); + if (lookahead == 's') ADVANCE(126); + if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'w') ADVANCE(145); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(230); + if (lookahead == '~') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); + lookahead == ' ') SKIP(208); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(276); END_STATE(); - case 184: + case 209: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 185: + case 210: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 186: + case 211: ACCEPT_TOKEN(anon_sym_module); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 187: + case 212: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 188: + case 213: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(233); + if (lookahead == ')') ADVANCE(263); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(90); + lookahead == ' ') ADVANCE(101); END_STATE(); - case 189: + case 214: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 190: + case 215: ACCEPT_TOKEN(anon_sym_exclude); END_STATE(); - case 191: + case 216: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 192: + case 217: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 193: + case 218: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 194: + case 219: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 195: + case 220: ACCEPT_TOKEN(sym_module_annotation); END_STATE(); - case 196: + case 221: ACCEPT_TOKEN(sym_module_path); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(195); + if (lookahead == '/') ADVANCE(203); + if (lookahead == ':') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(196); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); END_STATE(); - case 197: + case 222: ACCEPT_TOKEN(sym_module_path); - if (lookahead == '/') ADVANCE(178); + if (lookahead == '/') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 198: + case 223: ACCEPT_TOKEN(sym_module_id); - if (lookahead == '!') ADVANCE(304); - if (lookahead == '#') ADVANCE(86); + if (lookahead == '!') ADVANCE(340); + if (lookahead == '#') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(198); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); END_STATE(); - case 199: + case 224: ACCEPT_TOKEN(sym_module_id); - if (lookahead == '#') ADVANCE(176); + if (lookahead == '#') ADVANCE(201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(199); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); END_STATE(); - case 200: + case 225: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 201: + case 226: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 202: + case 227: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 203: + case 228: ACCEPT_TOKEN(anon_sym_self); END_STATE(); - case 204: + case 229: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 205: + case 230: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 206: + case 231: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 207: + case 232: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(210); - if (lookahead == '\\') ADVANCE(207); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '\r') ADVANCE(235); + if (lookahead == '\\') ADVANCE(232); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 208: + case 233: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(210); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\r') ADVANCE(235); + if (lookahead == '\\') ADVANCE(233); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -8251,23 +9096,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(211); - if (lookahead != 0) ADVANCE(209); + lookahead == '|') ADVANCE(236); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 209: + case 234: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && - lookahead != '\n') ADVANCE(209); + lookahead != '\n') ADVANCE(234); END_STATE(); - case 210: + case 235: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(23); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '\\') ADVANCE(25); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 211: + case 236: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(290); + if (lookahead == '\\') ADVANCE(323); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -8275,398 +9120,434 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(211); + lookahead == '|') ADVANCE(236); if (lookahead != 0 && - lookahead != '\n') ADVANCE(209); + lookahead != '\n') ADVANCE(234); END_STATE(); - case 212: + case 237: ACCEPT_TOKEN(sym_comment); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 213: + case 238: ACCEPT_TOKEN(anon_sym_data); END_STATE(); - case 214: + case 239: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 215: + case 240: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(255); + END_STATE(); + case 241: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(256); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 216: + case 242: + ACCEPT_TOKEN(anon_sym_EQ); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(336); + END_STATE(); + case 243: ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 217: + case 244: ACCEPT_TOKEN(anon_sym_of); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 218: + case 245: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 219: + case 246: ACCEPT_TOKEN(anon_sym_PIPE); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 220: + case 247: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 221: + case 248: ACCEPT_TOKEN(anon_sym_COLON); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 222: + case 249: ACCEPT_TOKEN(anon_sym_forall); END_STATE(); - case 223: + case 250: ACCEPT_TOKEN(anon_sym_forall); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 224: + case 251: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 225: + case 252: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 226: + case 253: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 227: + case 254: ACCEPT_TOKEN(anon_sym_DASH_GT); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 228: + case 255: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_EQ_GT); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(336); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(336); + END_STATE(); + case 258: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 229: + case 259: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '{') ADVANCE(232); + if (lookahead == '{') ADVANCE(262); END_STATE(); - case 230: + case 260: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '{') ADVANCE(232); + if (lookahead == '{') ADVANCE(262); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 231: + case 261: ACCEPT_TOKEN(aux_sym_type_effect_suffix_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(261); END_STATE(); - case 232: + case 262: ACCEPT_TOKEN(anon_sym_BANG_LBRACE); END_STATE(); - case 233: + case 263: ACCEPT_TOKEN(aux_sym_type_unit_token1); END_STATE(); - case 234: + case 264: ACCEPT_TOKEN(sym_type_implicit_var); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(264); END_STATE(); - case 235: + case 265: ACCEPT_TOKEN(anon_sym_POUND_BANG_LPAREN); END_STATE(); - case 236: + case 266: ACCEPT_TOKEN(anon_sym_POUND_BANG); - if (lookahead == '(') ADVANCE(235); + if (lookahead == '(') ADVANCE(265); END_STATE(); - case 237: + case 267: ACCEPT_TOKEN(anon_sym_POUND_BANG); - if (lookahead == '(') ADVANCE(235); + if (lookahead == '(') ADVANCE(265); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 238: + case 268: ACCEPT_TOKEN(aux_sym_primitive_reverse_atom_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(268); END_STATE(); - case 239: + case 269: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 240: + case 270: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 241: + case 271: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(193); + if (lookahead == ';') ADVANCE(218); END_STATE(); - case 242: + case 272: ACCEPT_TOKEN(anon_sym_SEMI); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 243: + case 273: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 244: + case 274: ACCEPT_TOKEN(anon_sym_fixity); END_STATE(); - case 245: + case 275: ACCEPT_TOKEN(aux_sym_fixity_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(161); + lookahead == 'o') ADVANCE(186); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + lookahead == 'x') ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); END_STATE(); - case 246: + case 276: ACCEPT_TOKEN(aux_sym_fixity_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); END_STATE(); - case 247: + case 277: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 248: + case 278: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 249: + case 279: ACCEPT_TOKEN(anon_sym_infix); END_STATE(); - case 250: + case 280: ACCEPT_TOKEN(anon_sym_postfix); END_STATE(); - case 251: + case 281: ACCEPT_TOKEN(anon_sym_prefix); END_STATE(); - case 252: + case 282: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 253: + case 283: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 254: + case 284: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 255: + case 285: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_or); + case 286: + ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_or); + case 287: + ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_in); + case 288: + ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_in); + case 289: + ACCEPT_TOKEN(anon_sym_with); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_with); + case 290: + ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_with); + case 291: + ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 262: + case 292: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 263: + case 293: ACCEPT_TOKEN(anon_sym_LT_DASH); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 264: + case 294: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 265: + case 295: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 266: + case 296: + ACCEPT_TOKEN(anon_sym_handler); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_handler); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 298: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 267: + case 299: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 268: + case 300: ACCEPT_TOKEN(anon_sym_QMARK); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 269: + case 301: + ACCEPT_TOKEN(anon_sym_effect); + END_STATE(); + case 302: ACCEPT_TOKEN(sym_hex_integer); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 270: + case 303: ACCEPT_TOKEN(sym_octet_integer); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(270); + lookahead == '_') ADVANCE(303); END_STATE(); - case 271: + case 304: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(308); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(161); + lookahead == 'o') ADVANCE(186); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(180); + lookahead == 'x') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); + lookahead == '_') ADVANCE(305); END_STATE(); - case 272: + case 305: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); + lookahead == '_') ADVANCE(305); END_STATE(); - case 273: + case 306: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(161); + lookahead == 'o') ADVANCE(186); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(180); + lookahead == 'x') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(274); + lookahead == '_') ADVANCE(307); END_STATE(); - case 274: + case 307: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(274); + lookahead == '_') ADVANCE(307); END_STATE(); - case 275: + case 308: ACCEPT_TOKEN(sym_floating); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(275); + lookahead == '_') ADVANCE(308); END_STATE(); - case 276: + case 309: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); END_STATE(); - case 277: + case 310: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 278: + case 311: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '/') ADVANCE(282); + if (lookahead == '*') ADVANCE(313); + if (lookahead == '/') ADVANCE(315); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(315); END_STATE(); - case 279: + case 312: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(282); + if (lookahead == '*') ADVANCE(312); + if (lookahead == '/') ADVANCE(315); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(280); + lookahead != '\\') ADVANCE(313); END_STATE(); - case 280: + case 313: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(279); + if (lookahead == '*') ADVANCE(312); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(280); + lookahead != '\\') ADVANCE(313); END_STATE(); - case 281: + case 314: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '/') ADVANCE(278); + if (lookahead == '/') ADVANCE(311); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(281); + lookahead == ' ') ADVANCE(314); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(315); END_STATE(); - case 282: + case 315: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(282); + lookahead != '\\') ADVANCE(315); END_STATE(); - case 283: + case 316: ACCEPT_TOKEN(sym__escape_sequence); END_STATE(); - case 284: + case 317: ACCEPT_TOKEN(sym__escape_sequence); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '\\') ADVANCE(20); END_STATE(); - case 285: + case 318: ACCEPT_TOKEN(sym__escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); - case 286: + case 319: ACCEPT_TOKEN(sym__escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(318); END_STATE(); - case 287: + case 320: ACCEPT_TOKEN(sym__escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); - case 288: + case 321: ACCEPT_TOKEN(sym__escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(320); END_STATE(); - case 289: + case 322: ACCEPT_TOKEN(sym__escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(321); END_STATE(); - case 290: + case 323: ACCEPT_TOKEN(sym_operator); - if (lookahead == '\r') ADVANCE(210); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\r') ADVANCE(235); + if (lookahead == '\\') ADVANCE(233); if (lookahead == '!' || ('#' <= lookahead && lookahead <= '&') || lookahead == '*' || @@ -8674,13 +9555,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('-' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '|') ADVANCE(211); - if (lookahead != 0) ADVANCE(209); + lookahead == '|') ADVANCE(236); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 291: + case 324: ACCEPT_TOKEN(sym_operator); - if (lookahead == '!') ADVANCE(237); - if (lookahead == '#') ADVANCE(301); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '#') ADVANCE(337); if (('$' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || @@ -8688,14 +9569,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '\\' || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(372); END_STATE(); - case 292: + case 325: ACCEPT_TOKEN(sym_operator); - if (lookahead == '!') ADVANCE(237); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '#') ADVANCE(337); + if (('$' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(336); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym_operator); + if (lookahead == '!') ADVANCE(267); if (('#' <= lookahead && lookahead <= '&') || lookahead == '*' || lookahead == '+' || @@ -8703,300 +9600,360 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '\\' || lookahead == '^' || - lookahead == '|') ADVANCE(300); + lookahead == '|') ADVANCE(336); END_STATE(); - case 293: + case 327: ACCEPT_TOKEN(sym_operator); - if (lookahead == '#') ADVANCE(301); + if (lookahead == '#') ADVANCE(337); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(372); END_STATE(); - case 294: + case 328: ACCEPT_TOKEN(sym_operator); - if (lookahead == '*') ADVANCE(296); - if (lookahead == '/') ADVANCE(211); + if (lookahead == '*') ADVANCE(330); + if (lookahead == '/') ADVANCE(236); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 295: + case 329: ACCEPT_TOKEN(sym_operator); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '/') ADVANCE(212); + if (lookahead == '*') ADVANCE(329); + if (lookahead == '/') ADVANCE(237); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(296); - if (lookahead != 0) ADVANCE(95); + lookahead == ';') ADVANCE(330); + if (lookahead != 0) ADVANCE(106); END_STATE(); - case 296: + case 330: ACCEPT_TOKEN(sym_operator); - if (lookahead == '*') ADVANCE(295); + if (lookahead == '*') ADVANCE(329); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(296); - if (lookahead != 0) ADVANCE(95); + lookahead == ';') ADVANCE(330); + if (lookahead != 0) ADVANCE(106); END_STATE(); - case 297: + case 331: ACCEPT_TOKEN(sym_operator); - if (lookahead == '-') ADVANCE(263); + if (lookahead == '-') ADVANCE(293); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 298: + case 332: ACCEPT_TOKEN(sym_operator); - if (lookahead == ';') ADVANCE(194); - if (set_contains(sym_qualified_id_character_set_1, 9, lookahead)) ADVANCE(300); + if (lookahead == '.') ADVANCE(257); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(336); END_STATE(); - case 299: + case 333: + ACCEPT_TOKEN(sym_operator); + if (lookahead == ';') ADVANCE(219); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead)) ADVANCE(336); + END_STATE(); + case 334: ACCEPT_TOKEN(sym_operator); - if (lookahead == '>') ADVANCE(227); + if (lookahead == '>') ADVANCE(254); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 300: + case 335: ACCEPT_TOKEN(sym_operator); + if (lookahead == '>') ADVANCE(256); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); END_STATE(); - case 301: + case 336: ACCEPT_TOKEN(sym_operator); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_operator); + if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || + lookahead == ';') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(332); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(374); END_STATE(); - case 302: + case 338: ACCEPT_TOKEN(sym_operator); if (set_contains(sym_qualified_id_character_set_1, 9, lookahead) || - lookahead == ';') ADVANCE(300); + lookahead == ';') ADVANCE(336); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); END_STATE(); - case 303: + case 339: ACCEPT_TOKEN(sym_operator_id); END_STATE(); - case 304: + case 340: ACCEPT_TOKEN(sym_macro_id); END_STATE(); - case 305: + case 341: ACCEPT_TOKEN(sym_id); - if (lookahead == 'a') ADVANCE(314); + if (lookahead == 'a') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 306: + case 342: ACCEPT_TOKEN(sym_id); - if (lookahead == 'd') ADVANCE(327); + if (lookahead == 'a') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 307: + case 343: ACCEPT_TOKEN(sym_id); - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'd') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 308: + case 344: ACCEPT_TOKEN(sym_id); - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'd') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 309: + case 345: ACCEPT_TOKEN(sym_id); - if (lookahead == 'f') ADVANCE(217); + if (lookahead == 'e') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 310: + case 346: ACCEPT_TOKEN(sym_id); - if (lookahead == 'h') ADVANCE(261); + if (lookahead == 'e') ADVANCE(211); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 311: + case 347: ACCEPT_TOKEN(sym_id); - if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'e') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 312: + case 348: ACCEPT_TOKEN(sym_id); - if (lookahead == 'l') ADVANCE(223); + if (lookahead == 'f') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 313: + case 349: ACCEPT_TOKEN(sym_id); - if (lookahead == 'l') ADVANCE(308); + if (lookahead == 'h') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 314: + case 350: ACCEPT_TOKEN(sym_id); - if (lookahead == 'l') ADVANCE(312); + if (lookahead == 'i') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 315: + case 351: ACCEPT_TOKEN(sym_id); - if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'l') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 316: + case 352: ACCEPT_TOKEN(sym_id); - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'l') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 317: + case 353: ACCEPT_TOKEN(sym_id); - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'l') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 318: + case 354: ACCEPT_TOKEN(sym_id); - if (lookahead == 'o') ADVANCE(321); + if (lookahead == 'l') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 319: + case 355: ACCEPT_TOKEN(sym_id); - if (lookahead == 'o') ADVANCE(306); + if (lookahead == 'n') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 320: + case 356: ACCEPT_TOKEN(sym_id); - if (lookahead == 'o') ADVANCE(316); + if (lookahead == 'n') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 321: + case 357: ACCEPT_TOKEN(sym_id); - if (lookahead == 'r') ADVANCE(305); + if (lookahead == 'n') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 322: + case 358: ACCEPT_TOKEN(sym_id); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == 'o') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 323: + case 359: ACCEPT_TOKEN(sym_id); - if (lookahead == 's') ADVANCE(326); + if (lookahead == 'o') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 324: + case 360: ACCEPT_TOKEN(sym_id); - if (lookahead == 't') ADVANCE(253); + if (lookahead == 'o') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 325: + case 361: ACCEPT_TOKEN(sym_id); - if (lookahead == 't') ADVANCE(310); + if (lookahead == 'o') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 326: + case 362: ACCEPT_TOKEN(sym_id); - if (lookahead == 't') ADVANCE(265); + if (lookahead == 'r') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 327: + case 363: ACCEPT_TOKEN(sym_id); - if (lookahead == 'u') ADVANCE(313); + if (lookahead == 'r') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 328: + case 364: ACCEPT_TOKEN(sym_id); + if (lookahead == 'r') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); END_STATE(); - case 329: + case 365: + ACCEPT_TOKEN(sym_id); + if (lookahead == 's') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_id); + if (lookahead == 't') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym_id); + if (lookahead == 't') ADVANCE(349); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym_id); + if (lookahead == 't') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 369: + ACCEPT_TOKEN(sym_id); + if (lookahead == 'u') ADVANCE(353); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 370: + ACCEPT_TOKEN(sym_id); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(370); + END_STATE(); + case 371: ACCEPT_TOKEN(sym_qualified_id); END_STATE(); - case 330: + case 372: ACCEPT_TOKEN(sym_qualified_id); - if (lookahead == '!') ADVANCE(304); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '!') ADVANCE(340); + if (lookahead == '#') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(372); END_STATE(); - case 331: + case 373: ACCEPT_TOKEN(sym_qualified_id); - if (lookahead == '#') ADVANCE(88); + if (lookahead == '#') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(373); END_STATE(); - case 332: + case 374: ACCEPT_TOKEN(sym_force_id); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(332); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(374); END_STATE(); default: return false; @@ -9006,3513 +9963,3513 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, - [2] = {.lex_state = 25}, - [3] = {.lex_state = 25}, + [2] = {.lex_state = 27}, + [3] = {.lex_state = 27}, [4] = {.lex_state = 27}, [5] = {.lex_state = 27}, [6] = {.lex_state = 27}, [7] = {.lex_state = 27}, - [8] = {.lex_state = 25}, - [9] = {.lex_state = 25}, - [10] = {.lex_state = 25}, - [11] = {.lex_state = 25}, - [12] = {.lex_state = 25}, - [13] = {.lex_state = 25}, + [8] = {.lex_state = 27}, + [9] = {.lex_state = 27}, + [10] = {.lex_state = 27}, + [11] = {.lex_state = 27}, + [12] = {.lex_state = 27}, + [13] = {.lex_state = 27}, [14] = {.lex_state = 27}, [15] = {.lex_state = 27}, [16] = {.lex_state = 27}, [17] = {.lex_state = 27}, - [18] = {.lex_state = 25}, - [19] = {.lex_state = 27}, - [20] = {.lex_state = 25}, - [21] = {.lex_state = 25}, - [22] = {.lex_state = 25}, - [23] = {.lex_state = 25}, - [24] = {.lex_state = 25}, - [25] = {.lex_state = 25}, - [26] = {.lex_state = 25}, - [27] = {.lex_state = 27}, - [28] = {.lex_state = 27}, - [29] = {.lex_state = 27}, - [30] = {.lex_state = 27}, - [31] = {.lex_state = 27}, - [32] = {.lex_state = 27}, - [33] = {.lex_state = 27}, - [34] = {.lex_state = 25}, - [35] = {.lex_state = 27}, + [18] = {.lex_state = 27}, + [19] = {.lex_state = 29}, + [20] = {.lex_state = 29}, + [21] = {.lex_state = 29}, + [22] = {.lex_state = 29}, + [23] = {.lex_state = 29}, + [24] = {.lex_state = 28}, + [25] = {.lex_state = 29}, + [26] = {.lex_state = 29}, + [27] = {.lex_state = 28}, + [28] = {.lex_state = 29}, + [29] = {.lex_state = 29}, + [30] = {.lex_state = 29}, + [31] = {.lex_state = 28}, + [32] = {.lex_state = 28}, + [33] = {.lex_state = 29}, + [34] = {.lex_state = 28}, + [35] = {.lex_state = 28}, [36] = {.lex_state = 29}, [37] = {.lex_state = 28}, - [38] = {.lex_state = 28}, + [38] = {.lex_state = 29}, [39] = {.lex_state = 28}, [40] = {.lex_state = 28}, - [41] = {.lex_state = 29}, - [42] = {.lex_state = 29}, + [41] = {.lex_state = 28}, + [42] = {.lex_state = 28}, [43] = {.lex_state = 29}, - [44] = {.lex_state = 29}, - [45] = {.lex_state = 26}, - [46] = {.lex_state = 26}, - [47] = {.lex_state = 26}, - [48] = {.lex_state = 26}, - [49] = {.lex_state = 26}, - [50] = {.lex_state = 26}, - [51] = {.lex_state = 29}, - [52] = {.lex_state = 28}, - [53] = {.lex_state = 26}, - [54] = {.lex_state = 26}, - [55] = {.lex_state = 26}, - [56] = {.lex_state = 26}, - [57] = {.lex_state = 26}, - [58] = {.lex_state = 29}, - [59] = {.lex_state = 29}, - [60] = {.lex_state = 26}, - [61] = {.lex_state = 29}, - [62] = {.lex_state = 28}, - [63] = {.lex_state = 28}, - [64] = {.lex_state = 28}, - [65] = {.lex_state = 28}, - [66] = {.lex_state = 28}, - [67] = {.lex_state = 28}, - [68] = {.lex_state = 28}, - [69] = {.lex_state = 29}, - [70] = {.lex_state = 29}, - [71] = {.lex_state = 29}, - [72] = {.lex_state = 29}, - [73] = {.lex_state = 28}, - [74] = {.lex_state = 28}, - [75] = {.lex_state = 28}, - [76] = {.lex_state = 26}, - [77] = {.lex_state = 28}, - [78] = {.lex_state = 29}, - [79] = {.lex_state = 26}, - [80] = {.lex_state = 26}, - [81] = {.lex_state = 29}, - [82] = {.lex_state = 26}, - [83] = {.lex_state = 29}, - [84] = {.lex_state = 26}, - [85] = {.lex_state = 29}, - [86] = {.lex_state = 28}, - [87] = {.lex_state = 31}, - [88] = {.lex_state = 31}, - [89] = {.lex_state = 30}, - [90] = {.lex_state = 30}, + [44] = {.lex_state = 28}, + [45] = {.lex_state = 28}, + [46] = {.lex_state = 28}, + [47] = {.lex_state = 29}, + [48] = {.lex_state = 28}, + [49] = {.lex_state = 28}, + [50] = {.lex_state = 29}, + [51] = {.lex_state = 28}, + [52] = {.lex_state = 29}, + [53] = {.lex_state = 32}, + [54] = {.lex_state = 31}, + [55] = {.lex_state = 31}, + [56] = {.lex_state = 31}, + [57] = {.lex_state = 35}, + [58] = {.lex_state = 31}, + [59] = {.lex_state = 30}, + [60] = {.lex_state = 31}, + [61] = {.lex_state = 30}, + [62] = {.lex_state = 32}, + [63] = {.lex_state = 35}, + [64] = {.lex_state = 31}, + [65] = {.lex_state = 35}, + [66] = {.lex_state = 35}, + [67] = {.lex_state = 32}, + [68] = {.lex_state = 35}, + [69] = {.lex_state = 35}, + [70] = {.lex_state = 35}, + [71] = {.lex_state = 35}, + [72] = {.lex_state = 30}, + [73] = {.lex_state = 35}, + [74] = {.lex_state = 35}, + [75] = {.lex_state = 35}, + [76] = {.lex_state = 32}, + [77] = {.lex_state = 31}, + [78] = {.lex_state = 32}, + [79] = {.lex_state = 35}, + [80] = {.lex_state = 35}, + [81] = {.lex_state = 31}, + [82] = {.lex_state = 30}, + [83] = {.lex_state = 31}, + [84] = {.lex_state = 32}, + [85] = {.lex_state = 35}, + [86] = {.lex_state = 32}, + [87] = {.lex_state = 30}, + [88] = {.lex_state = 30}, + [89] = {.lex_state = 32}, + [90] = {.lex_state = 32}, [91] = {.lex_state = 30}, [92] = {.lex_state = 30}, - [93] = {.lex_state = 31}, - [94] = {.lex_state = 31}, - [95] = {.lex_state = 31}, + [93] = {.lex_state = 32}, + [94] = {.lex_state = 30}, + [95] = {.lex_state = 30}, [96] = {.lex_state = 31}, - [97] = {.lex_state = 30}, + [97] = {.lex_state = 31}, [98] = {.lex_state = 30}, - [99] = {.lex_state = 30}, + [99] = {.lex_state = 31}, [100] = {.lex_state = 30}, - [101] = {.lex_state = 30}, - [102] = {.lex_state = 31}, + [101] = {.lex_state = 32}, + [102] = {.lex_state = 30}, [103] = {.lex_state = 30}, - [104] = {.lex_state = 30}, + [104] = {.lex_state = 31}, [105] = {.lex_state = 31}, [106] = {.lex_state = 31}, - [107] = {.lex_state = 30}, - [108] = {.lex_state = 30}, - [109] = {.lex_state = 30}, - [110] = {.lex_state = 30}, - [111] = {.lex_state = 30}, - [112] = {.lex_state = 30}, + [107] = {.lex_state = 32}, + [108] = {.lex_state = 32}, + [109] = {.lex_state = 32}, + [110] = {.lex_state = 32}, + [111] = {.lex_state = 32}, + [112] = {.lex_state = 32}, [113] = {.lex_state = 31}, - [114] = {.lex_state = 31}, + [114] = {.lex_state = 30}, [115] = {.lex_state = 31}, - [116] = {.lex_state = 31}, - [117] = {.lex_state = 31}, - [118] = {.lex_state = 31}, - [119] = {.lex_state = 31}, - [120] = {.lex_state = 31}, - [121] = {.lex_state = 32}, - [122] = {.lex_state = 25}, - [123] = {.lex_state = 32}, - [124] = {.lex_state = 32}, - [125] = {.lex_state = 25}, - [126] = {.lex_state = 25}, - [127] = {.lex_state = 25}, - [128] = {.lex_state = 32}, - [129] = {.lex_state = 25}, - [130] = {.lex_state = 32}, - [131] = {.lex_state = 32}, - [132] = {.lex_state = 25}, - [133] = {.lex_state = 25}, - [134] = {.lex_state = 32}, - [135] = {.lex_state = 32}, - [136] = {.lex_state = 32}, - [137] = {.lex_state = 25}, - [138] = {.lex_state = 32}, - [139] = {.lex_state = 32}, - [140] = {.lex_state = 32}, - [141] = {.lex_state = 32}, - [142] = {.lex_state = 32}, - [143] = {.lex_state = 32}, - [144] = {.lex_state = 32}, - [145] = {.lex_state = 32}, - [146] = {.lex_state = 26}, - [147] = {.lex_state = 26}, - [148] = {.lex_state = 26}, - [149] = {.lex_state = 26}, - [150] = {.lex_state = 26}, - [151] = {.lex_state = 26}, - [152] = {.lex_state = 26}, - [153] = {.lex_state = 26}, - [154] = {.lex_state = 39}, - [155] = {.lex_state = 39}, - [156] = {.lex_state = 39}, - [157] = {.lex_state = 39}, - [158] = {.lex_state = 39}, - [159] = {.lex_state = 39}, - [160] = {.lex_state = 39}, - [161] = {.lex_state = 39}, - [162] = {.lex_state = 39}, - [163] = {.lex_state = 39}, - [164] = {.lex_state = 39}, - [165] = {.lex_state = 39}, - [166] = {.lex_state = 39}, - [167] = {.lex_state = 39}, - [168] = {.lex_state = 39}, - [169] = {.lex_state = 39}, - [170] = {.lex_state = 39}, - [171] = {.lex_state = 36}, - [172] = {.lex_state = 36}, - [173] = {.lex_state = 35}, - [174] = {.lex_state = 36}, - [175] = {.lex_state = 36}, - [176] = {.lex_state = 36}, - [177] = {.lex_state = 40}, - [178] = {.lex_state = 40}, - [179] = {.lex_state = 33}, - [180] = {.lex_state = 35}, - [181] = {.lex_state = 35}, - [182] = {.lex_state = 41}, - [183] = {.lex_state = 40}, - [184] = {.lex_state = 40}, - [185] = {.lex_state = 36}, - [186] = {.lex_state = 40}, - [187] = {.lex_state = 36}, - [188] = {.lex_state = 33}, - [189] = {.lex_state = 33}, - [190] = {.lex_state = 36}, - [191] = {.lex_state = 33}, - [192] = {.lex_state = 33}, - [193] = {.lex_state = 41}, - [194] = {.lex_state = 41}, - [195] = {.lex_state = 41}, - [196] = {.lex_state = 41}, - [197] = {.lex_state = 35}, - [198] = {.lex_state = 41}, - [199] = {.lex_state = 36}, + [116] = {.lex_state = 30}, + [117] = {.lex_state = 35}, + [118] = {.lex_state = 35}, + [119] = {.lex_state = 30}, + [120] = {.lex_state = 35}, + [121] = {.lex_state = 33}, + [122] = {.lex_state = 34}, + [123] = {.lex_state = 36}, + [124] = {.lex_state = 36}, + [125] = {.lex_state = 36}, + [126] = {.lex_state = 36}, + [127] = {.lex_state = 36}, + [128] = {.lex_state = 36}, + [129] = {.lex_state = 36}, + [130] = {.lex_state = 36}, + [131] = {.lex_state = 33}, + [132] = {.lex_state = 36}, + [133] = {.lex_state = 34}, + [134] = {.lex_state = 36}, + [135] = {.lex_state = 36}, + [136] = {.lex_state = 36}, + [137] = {.lex_state = 33}, + [138] = {.lex_state = 36}, + [139] = {.lex_state = 33}, + [140] = {.lex_state = 33}, + [141] = {.lex_state = 34}, + [142] = {.lex_state = 33}, + [143] = {.lex_state = 33}, + [144] = {.lex_state = 33}, + [145] = {.lex_state = 36}, + [146] = {.lex_state = 34}, + [147] = {.lex_state = 34}, + [148] = {.lex_state = 33}, + [149] = {.lex_state = 33}, + [150] = {.lex_state = 36}, + [151] = {.lex_state = 34}, + [152] = {.lex_state = 34}, + [153] = {.lex_state = 36}, + [154] = {.lex_state = 34}, + [155] = {.lex_state = 36}, + [156] = {.lex_state = 33}, + [157] = {.lex_state = 34}, + [158] = {.lex_state = 34}, + [159] = {.lex_state = 33}, + [160] = {.lex_state = 34}, + [161] = {.lex_state = 33}, + [162] = {.lex_state = 34}, + [163] = {.lex_state = 33}, + [164] = {.lex_state = 34}, + [165] = {.lex_state = 33}, + [166] = {.lex_state = 33}, + [167] = {.lex_state = 34}, + [168] = {.lex_state = 34}, + [169] = {.lex_state = 34}, + [170] = {.lex_state = 33}, + [171] = {.lex_state = 34}, + [172] = {.lex_state = 27}, + [173] = {.lex_state = 27}, + [174] = {.lex_state = 27}, + [175] = {.lex_state = 27}, + [176] = {.lex_state = 27}, + [177] = {.lex_state = 27}, + [178] = {.lex_state = 27}, + [179] = {.lex_state = 27}, + [180] = {.lex_state = 28}, + [181] = {.lex_state = 28}, + [182] = {.lex_state = 28}, + [183] = {.lex_state = 28}, + [184] = {.lex_state = 28}, + [185] = {.lex_state = 28}, + [186] = {.lex_state = 28}, + [187] = {.lex_state = 28}, + [188] = {.lex_state = 39}, + [189] = {.lex_state = 39}, + [190] = {.lex_state = 40}, + [191] = {.lex_state = 40}, + [192] = {.lex_state = 43}, + [193] = {.lex_state = 43}, + [194] = {.lex_state = 43}, + [195] = {.lex_state = 43}, + [196] = {.lex_state = 40}, + [197] = {.lex_state = 43}, + [198] = {.lex_state = 40}, + [199] = {.lex_state = 40}, [200] = {.lex_state = 40}, [201] = {.lex_state = 40}, - [202] = {.lex_state = 41}, - [203] = {.lex_state = 41}, - [204] = {.lex_state = 41}, - [205] = {.lex_state = 41}, - [206] = {.lex_state = 41}, - [207] = {.lex_state = 33}, - [208] = {.lex_state = 33}, - [209] = {.lex_state = 57}, - [210] = {.lex_state = 33}, + [202] = {.lex_state = 40}, + [203] = {.lex_state = 40}, + [204] = {.lex_state = 43}, + [205] = {.lex_state = 39}, + [206] = {.lex_state = 39}, + [207] = {.lex_state = 43}, + [208] = {.lex_state = 39}, + [209] = {.lex_state = 40}, + [210] = {.lex_state = 40}, [211] = {.lex_state = 40}, - [212] = {.lex_state = 33}, - [213] = {.lex_state = 33}, + [212] = {.lex_state = 43}, + [213] = {.lex_state = 43}, [214] = {.lex_state = 40}, - [215] = {.lex_state = 33}, - [216] = {.lex_state = 33}, - [217] = {.lex_state = 33}, - [218] = {.lex_state = 41}, - [219] = {.lex_state = 35}, - [220] = {.lex_state = 35}, - [221] = {.lex_state = 35}, - [222] = {.lex_state = 41}, - [223] = {.lex_state = 41}, - [224] = {.lex_state = 60}, - [225] = {.lex_state = 41}, - [226] = {.lex_state = 35}, - [227] = {.lex_state = 41}, - [228] = {.lex_state = 33}, - [229] = {.lex_state = 33}, - [230] = {.lex_state = 60}, - [231] = {.lex_state = 35}, - [232] = {.lex_state = 33}, - [233] = {.lex_state = 33}, - [234] = {.lex_state = 60}, - [235] = {.lex_state = 35}, - [236] = {.lex_state = 35}, - [237] = {.lex_state = 35}, - [238] = {.lex_state = 35}, - [239] = {.lex_state = 35}, - [240] = {.lex_state = 35}, - [241] = {.lex_state = 35}, - [242] = {.lex_state = 35}, - [243] = {.lex_state = 36}, - [244] = {.lex_state = 36}, - [245] = {.lex_state = 36}, - [246] = {.lex_state = 36}, - [247] = {.lex_state = 36}, - [248] = {.lex_state = 36}, - [249] = {.lex_state = 36}, - [250] = {.lex_state = 36}, - [251] = {.lex_state = 40}, - [252] = {.lex_state = 40}, - [253] = {.lex_state = 40}, - [254] = {.lex_state = 40}, - [255] = {.lex_state = 40}, - [256] = {.lex_state = 40}, - [257] = {.lex_state = 40}, - [258] = {.lex_state = 40}, - [259] = {.lex_state = 57}, - [260] = {.lex_state = 41}, - [261] = {.lex_state = 27}, - [262] = {.lex_state = 62}, - [263] = {.lex_state = 58}, - [264] = {.lex_state = 58}, - [265] = {.lex_state = 62}, + [215] = {.lex_state = 43}, + [216] = {.lex_state = 43}, + [217] = {.lex_state = 39}, + [218] = {.lex_state = 43}, + [219] = {.lex_state = 43}, + [220] = {.lex_state = 43}, + [221] = {.lex_state = 43}, + [222] = {.lex_state = 40}, + [223] = {.lex_state = 39}, + [224] = {.lex_state = 39}, + [225] = {.lex_state = 39}, + [226] = {.lex_state = 43}, + [227] = {.lex_state = 43}, + [228] = {.lex_state = 40}, + [229] = {.lex_state = 39}, + [230] = {.lex_state = 39}, + [231] = {.lex_state = 39}, + [232] = {.lex_state = 39}, + [233] = {.lex_state = 40}, + [234] = {.lex_state = 40}, + [235] = {.lex_state = 39}, + [236] = {.lex_state = 39}, + [237] = {.lex_state = 39}, + [238] = {.lex_state = 39}, + [239] = {.lex_state = 42}, + [240] = {.lex_state = 42}, + [241] = {.lex_state = 44}, + [242] = {.lex_state = 44}, + [243] = {.lex_state = 44}, + [244] = {.lex_state = 44}, + [245] = {.lex_state = 44}, + [246] = {.lex_state = 42}, + [247] = {.lex_state = 42}, + [248] = {.lex_state = 44}, + [249] = {.lex_state = 44}, + [250] = {.lex_state = 44}, + [251] = {.lex_state = 42}, + [252] = {.lex_state = 42}, + [253] = {.lex_state = 42}, + [254] = {.lex_state = 44}, + [255] = {.lex_state = 42}, + [256] = {.lex_state = 44}, + [257] = {.lex_state = 44}, + [258] = {.lex_state = 44}, + [259] = {.lex_state = 42}, + [260] = {.lex_state = 44}, + [261] = {.lex_state = 42}, + [262] = {.lex_state = 44}, + [263] = {.lex_state = 44}, + [264] = {.lex_state = 44}, + [265] = {.lex_state = 37}, [266] = {.lex_state = 42}, - [267] = {.lex_state = 62}, - [268] = {.lex_state = 38}, - [269] = {.lex_state = 62}, - [270] = {.lex_state = 42}, - [271] = {.lex_state = 34}, - [272] = {.lex_state = 62}, - [273] = {.lex_state = 34}, - [274] = {.lex_state = 34}, - [275] = {.lex_state = 62}, - [276] = {.lex_state = 34}, - [277] = {.lex_state = 58}, - [278] = {.lex_state = 38}, - [279] = {.lex_state = 62}, - [280] = {.lex_state = 62}, - [281] = {.lex_state = 37}, - [282] = {.lex_state = 38}, - [283] = {.lex_state = 38}, - [284] = {.lex_state = 62}, + [267] = {.lex_state = 44}, + [268] = {.lex_state = 42}, + [269] = {.lex_state = 41}, + [270] = {.lex_state = 41}, + [271] = {.lex_state = 41}, + [272] = {.lex_state = 41}, + [273] = {.lex_state = 41}, + [274] = {.lex_state = 41}, + [275] = {.lex_state = 41}, + [276] = {.lex_state = 41}, + [277] = {.lex_state = 42}, + [278] = {.lex_state = 41}, + [279] = {.lex_state = 42}, + [280] = {.lex_state = 42}, + [281] = {.lex_state = 41}, + [282] = {.lex_state = 37}, + [283] = {.lex_state = 41}, + [284] = {.lex_state = 37}, [285] = {.lex_state = 42}, - [286] = {.lex_state = 42}, - [287] = {.lex_state = 62}, - [288] = {.lex_state = 25}, - [289] = {.lex_state = 37}, - [290] = {.lex_state = 58}, + [286] = {.lex_state = 41}, + [287] = {.lex_state = 42}, + [288] = {.lex_state = 37}, + [289] = {.lex_state = 41}, + [290] = {.lex_state = 37}, [291] = {.lex_state = 37}, - [292] = {.lex_state = 25}, - [293] = {.lex_state = 58}, - [294] = {.lex_state = 62}, + [292] = {.lex_state = 37}, + [293] = {.lex_state = 37}, + [294] = {.lex_state = 41}, [295] = {.lex_state = 37}, - [296] = {.lex_state = 58}, - [297] = {.lex_state = 58}, - [298] = {.lex_state = 58}, - [299] = {.lex_state = 58}, - [300] = {.lex_state = 58}, - [301] = {.lex_state = 58}, - [302] = {.lex_state = 62}, - [303] = {.lex_state = 58}, - [304] = {.lex_state = 58}, - [305] = {.lex_state = 58}, - [306] = {.lex_state = 62}, - [307] = {.lex_state = 25}, - [308] = {.lex_state = 25}, - [309] = {.lex_state = 34}, - [310] = {.lex_state = 62}, - [311] = {.lex_state = 34}, - [312] = {.lex_state = 34}, - [313] = {.lex_state = 34}, - [314] = {.lex_state = 25}, - [315] = {.lex_state = 25}, - [316] = {.lex_state = 25}, - [317] = {.lex_state = 42}, - [318] = {.lex_state = 25}, - [319] = {.lex_state = 25}, - [320] = {.lex_state = 42}, - [321] = {.lex_state = 25}, - [322] = {.lex_state = 25}, - [323] = {.lex_state = 25}, - [324] = {.lex_state = 62}, - [325] = {.lex_state = 42}, + [296] = {.lex_state = 37}, + [297] = {.lex_state = 37}, + [298] = {.lex_state = 37}, + [299] = {.lex_state = 37}, + [300] = {.lex_state = 37}, + [301] = {.lex_state = 37}, + [302] = {.lex_state = 37}, + [303] = {.lex_state = 37}, + [304] = {.lex_state = 41}, + [305] = {.lex_state = 41}, + [306] = {.lex_state = 41}, + [307] = {.lex_state = 38}, + [308] = {.lex_state = 63}, + [309] = {.lex_state = 38}, + [310] = {.lex_state = 38}, + [311] = {.lex_state = 38}, + [312] = {.lex_state = 38}, + [313] = {.lex_state = 38}, + [314] = {.lex_state = 38}, + [315] = {.lex_state = 38}, + [316] = {.lex_state = 27}, + [317] = {.lex_state = 38}, + [318] = {.lex_state = 38}, + [319] = {.lex_state = 27}, + [320] = {.lex_state = 38}, + [321] = {.lex_state = 38}, + [322] = {.lex_state = 63}, + [323] = {.lex_state = 38}, + [324] = {.lex_state = 38}, + [325] = {.lex_state = 38}, [326] = {.lex_state = 27}, - [327] = {.lex_state = 42}, - [328] = {.lex_state = 58}, - [329] = {.lex_state = 37}, - [330] = {.lex_state = 37}, - [331] = {.lex_state = 37}, - [332] = {.lex_state = 62}, + [327] = {.lex_state = 27}, + [328] = {.lex_state = 27}, + [329] = {.lex_state = 27}, + [330] = {.lex_state = 27}, + [331] = {.lex_state = 27}, + [332] = {.lex_state = 27}, [333] = {.lex_state = 27}, - [334] = {.lex_state = 62}, - [335] = {.lex_state = 62}, - [336] = {.lex_state = 37}, - [337] = {.lex_state = 62}, - [338] = {.lex_state = 62}, - [339] = {.lex_state = 37}, - [340] = {.lex_state = 62}, - [341] = {.lex_state = 62}, - [342] = {.lex_state = 37}, - [343] = {.lex_state = 62}, - [344] = {.lex_state = 62}, - [345] = {.lex_state = 62}, - [346] = {.lex_state = 62}, - [347] = {.lex_state = 62}, - [348] = {.lex_state = 62}, - [349] = {.lex_state = 62}, - [350] = {.lex_state = 62}, - [351] = {.lex_state = 62}, - [352] = {.lex_state = 62}, - [353] = {.lex_state = 62}, - [354] = {.lex_state = 62}, - [355] = {.lex_state = 62}, - [356] = {.lex_state = 62}, - [357] = {.lex_state = 62}, - [358] = {.lex_state = 62}, - [359] = {.lex_state = 62}, - [360] = {.lex_state = 62}, - [361] = {.lex_state = 62}, - [362] = {.lex_state = 62}, - [363] = {.lex_state = 62}, - [364] = {.lex_state = 62}, - [365] = {.lex_state = 62}, - [366] = {.lex_state = 62}, - [367] = {.lex_state = 62}, - [368] = {.lex_state = 38}, - [369] = {.lex_state = 38}, - [370] = {.lex_state = 37}, - [371] = {.lex_state = 37}, - [372] = {.lex_state = 37}, - [373] = {.lex_state = 37}, - [374] = {.lex_state = 38}, - [375] = {.lex_state = 38}, - [376] = {.lex_state = 61}, - [377] = {.lex_state = 38}, - [378] = {.lex_state = 38}, - [379] = {.lex_state = 38}, - [380] = {.lex_state = 38}, - [381] = {.lex_state = 38}, - [382] = {.lex_state = 42}, - [383] = {.lex_state = 42}, - [384] = {.lex_state = 42}, - [385] = {.lex_state = 57}, - [386] = {.lex_state = 42}, - [387] = {.lex_state = 34}, - [388] = {.lex_state = 34}, - [389] = {.lex_state = 34}, - [390] = {.lex_state = 34}, - [391] = {.lex_state = 38}, - [392] = {.lex_state = 61}, - [393] = {.lex_state = 38}, - [394] = {.lex_state = 38}, - [395] = {.lex_state = 38}, - [396] = {.lex_state = 27}, - [397] = {.lex_state = 27}, - [398] = {.lex_state = 42}, - [399] = {.lex_state = 42}, - [400] = {.lex_state = 62}, - [401] = {.lex_state = 42}, - [402] = {.lex_state = 42}, - [403] = {.lex_state = 42}, - [404] = {.lex_state = 62}, - [405] = {.lex_state = 27}, - [406] = {.lex_state = 27}, - [407] = {.lex_state = 27}, - [408] = {.lex_state = 27}, - [409] = {.lex_state = 62}, - [410] = {.lex_state = 27}, - [411] = {.lex_state = 34}, - [412] = {.lex_state = 27}, - [413] = {.lex_state = 34}, - [414] = {.lex_state = 58}, - [415] = {.lex_state = 58}, - [416] = {.lex_state = 62}, - [417] = {.lex_state = 58}, - [418] = {.lex_state = 34}, - [419] = {.lex_state = 34}, - [420] = {.lex_state = 27}, - [421] = {.lex_state = 58}, - [422] = {.lex_state = 58}, - [423] = {.lex_state = 62}, - [424] = {.lex_state = 34}, - [425] = {.lex_state = 58}, - [426] = {.lex_state = 58}, - [427] = {.lex_state = 62}, - [428] = {.lex_state = 58}, - [429] = {.lex_state = 58}, - [430] = {.lex_state = 58}, - [431] = {.lex_state = 58}, - [432] = {.lex_state = 58}, - [433] = {.lex_state = 58}, - [434] = {.lex_state = 62}, - [435] = {.lex_state = 58}, - [436] = {.lex_state = 58}, - [437] = {.lex_state = 58}, - [438] = {.lex_state = 58}, - [439] = {.lex_state = 58}, - [440] = {.lex_state = 58}, - [441] = {.lex_state = 58}, - [442] = {.lex_state = 58}, - [443] = {.lex_state = 58}, - [444] = {.lex_state = 58}, - [445] = {.lex_state = 58}, - [446] = {.lex_state = 62}, - [447] = {.lex_state = 58}, - [448] = {.lex_state = 62}, - [449] = {.lex_state = 58}, - [450] = {.lex_state = 58}, - [451] = {.lex_state = 58}, - [452] = {.lex_state = 61}, - [453] = {.lex_state = 37}, - [454] = {.lex_state = 62}, - [455] = {.lex_state = 37}, - [456] = {.lex_state = 37}, - [457] = {.lex_state = 29}, - [458] = {.lex_state = 63}, - [459] = {.lex_state = 63}, - [460] = {.lex_state = 64}, - [461] = {.lex_state = 63}, - [462] = {.lex_state = 64}, - [463] = {.lex_state = 63}, - [464] = {.lex_state = 64}, - [465] = {.lex_state = 63}, + [334] = {.lex_state = 27}, + [335] = {.lex_state = 27}, + [336] = {.lex_state = 27}, + [337] = {.lex_state = 27}, + [338] = {.lex_state = 27}, + [339] = {.lex_state = 27}, + [340] = {.lex_state = 38}, + [341] = {.lex_state = 27}, + [342] = {.lex_state = 38}, + [343] = {.lex_state = 27}, + [344] = {.lex_state = 27}, + [345] = {.lex_state = 29}, + [346] = {.lex_state = 64}, + [347] = {.lex_state = 28}, + [348] = {.lex_state = 28}, + [349] = {.lex_state = 28}, + [350] = {.lex_state = 28}, + [351] = {.lex_state = 28}, + [352] = {.lex_state = 28}, + [353] = {.lex_state = 28}, + [354] = {.lex_state = 64}, + [355] = {.lex_state = 28}, + [356] = {.lex_state = 28}, + [357] = {.lex_state = 64}, + [358] = {.lex_state = 64}, + [359] = {.lex_state = 28}, + [360] = {.lex_state = 28}, + [361] = {.lex_state = 28}, + [362] = {.lex_state = 64}, + [363] = {.lex_state = 28}, + [364] = {.lex_state = 28}, + [365] = {.lex_state = 63}, + [366] = {.lex_state = 29}, + [367] = {.lex_state = 29}, + [368] = {.lex_state = 64}, + [369] = {.lex_state = 28}, + [370] = {.lex_state = 29}, + [371] = {.lex_state = 64}, + [372] = {.lex_state = 64}, + [373] = {.lex_state = 29}, + [374] = {.lex_state = 29}, + [375] = {.lex_state = 29}, + [376] = {.lex_state = 66}, + [377] = {.lex_state = 29}, + [378] = {.lex_state = 64}, + [379] = {.lex_state = 66}, + [380] = {.lex_state = 64}, + [381] = {.lex_state = 29}, + [382] = {.lex_state = 29}, + [383] = {.lex_state = 29}, + [384] = {.lex_state = 28}, + [385] = {.lex_state = 29}, + [386] = {.lex_state = 64}, + [387] = {.lex_state = 29}, + [388] = {.lex_state = 29}, + [389] = {.lex_state = 64}, + [390] = {.lex_state = 28}, + [391] = {.lex_state = 64}, + [392] = {.lex_state = 29}, + [393] = {.lex_state = 64}, + [394] = {.lex_state = 29}, + [395] = {.lex_state = 64}, + [396] = {.lex_state = 29}, + [397] = {.lex_state = 66}, + [398] = {.lex_state = 29}, + [399] = {.lex_state = 63}, + [400] = {.lex_state = 64}, + [401] = {.lex_state = 29}, + [402] = {.lex_state = 64}, + [403] = {.lex_state = 64}, + [404] = {.lex_state = 64}, + [405] = {.lex_state = 28}, + [406] = {.lex_state = 64}, + [407] = {.lex_state = 64}, + [408] = {.lex_state = 28}, + [409] = {.lex_state = 64}, + [410] = {.lex_state = 31}, + [411] = {.lex_state = 32}, + [412] = {.lex_state = 31}, + [413] = {.lex_state = 31}, + [414] = {.lex_state = 31}, + [415] = {.lex_state = 65}, + [416] = {.lex_state = 35}, + [417] = {.lex_state = 31}, + [418] = {.lex_state = 64}, + [419] = {.lex_state = 69}, + [420] = {.lex_state = 69}, + [421] = {.lex_state = 69}, + [422] = {.lex_state = 31}, + [423] = {.lex_state = 69}, + [424] = {.lex_state = 78}, + [425] = {.lex_state = 69}, + [426] = {.lex_state = 69}, + [427] = {.lex_state = 69}, + [428] = {.lex_state = 31}, + [429] = {.lex_state = 69}, + [430] = {.lex_state = 67}, + [431] = {.lex_state = 30}, + [432] = {.lex_state = 32}, + [433] = {.lex_state = 69}, + [434] = {.lex_state = 32}, + [435] = {.lex_state = 65}, + [436] = {.lex_state = 32}, + [437] = {.lex_state = 30}, + [438] = {.lex_state = 69}, + [439] = {.lex_state = 35}, + [440] = {.lex_state = 32}, + [441] = {.lex_state = 64}, + [442] = {.lex_state = 32}, + [443] = {.lex_state = 78}, + [444] = {.lex_state = 32}, + [445] = {.lex_state = 32}, + [446] = {.lex_state = 69}, + [447] = {.lex_state = 32}, + [448] = {.lex_state = 30}, + [449] = {.lex_state = 30}, + [450] = {.lex_state = 64}, + [451] = {.lex_state = 69}, + [452] = {.lex_state = 69}, + [453] = {.lex_state = 32}, + [454] = {.lex_state = 31}, + [455] = {.lex_state = 31}, + [456] = {.lex_state = 32}, + [457] = {.lex_state = 30}, + [458] = {.lex_state = 31}, + [459] = {.lex_state = 67}, + [460] = {.lex_state = 32}, + [461] = {.lex_state = 31}, + [462] = {.lex_state = 31}, + [463] = {.lex_state = 32}, + [464] = {.lex_state = 31}, + [465] = {.lex_state = 64}, [466] = {.lex_state = 64}, - [467] = {.lex_state = 63}, - [468] = {.lex_state = 64}, - [469] = {.lex_state = 63}, - [470] = {.lex_state = 64}, - [471] = {.lex_state = 63}, - [472] = {.lex_state = 64}, - [473] = {.lex_state = 63}, - [474] = {.lex_state = 64}, - [475] = {.lex_state = 63}, - [476] = {.lex_state = 64}, - [477] = {.lex_state = 63}, - [478] = {.lex_state = 64}, - [479] = {.lex_state = 64}, - [480] = {.lex_state = 64}, - [481] = {.lex_state = 63}, - [482] = {.lex_state = 26}, - [483] = {.lex_state = 63}, - [484] = {.lex_state = 63}, - [485] = {.lex_state = 64}, - [486] = {.lex_state = 63}, - [487] = {.lex_state = 64}, - [488] = {.lex_state = 28}, - [489] = {.lex_state = 69}, - [490] = {.lex_state = 66}, - [491] = {.lex_state = 26}, - [492] = {.lex_state = 26}, - [493] = {.lex_state = 28}, - [494] = {.lex_state = 28}, + [467] = {.lex_state = 32}, + [468] = {.lex_state = 30}, + [469] = {.lex_state = 31}, + [470] = {.lex_state = 31}, + [471] = {.lex_state = 69}, + [472] = {.lex_state = 31}, + [473] = {.lex_state = 31}, + [474] = {.lex_state = 35}, + [475] = {.lex_state = 69}, + [476] = {.lex_state = 35}, + [477] = {.lex_state = 69}, + [478] = {.lex_state = 35}, + [479] = {.lex_state = 35}, + [480] = {.lex_state = 69}, + [481] = {.lex_state = 30}, + [482] = {.lex_state = 35}, + [483] = {.lex_state = 30}, + [484] = {.lex_state = 68}, + [485] = {.lex_state = 30}, + [486] = {.lex_state = 68}, + [487] = {.lex_state = 69}, + [488] = {.lex_state = 69}, + [489] = {.lex_state = 35}, + [490] = {.lex_state = 64}, + [491] = {.lex_state = 31}, + [492] = {.lex_state = 64}, + [493] = {.lex_state = 35}, + [494] = {.lex_state = 32}, [495] = {.lex_state = 64}, - [496] = {.lex_state = 28}, - [497] = {.lex_state = 28}, - [498] = {.lex_state = 28}, - [499] = {.lex_state = 28}, - [500] = {.lex_state = 64}, - [501] = {.lex_state = 28}, - [502] = {.lex_state = 28}, - [503] = {.lex_state = 28}, - [504] = {.lex_state = 28}, - [505] = {.lex_state = 28}, - [506] = {.lex_state = 59}, - [507] = {.lex_state = 59}, - [508] = {.lex_state = 59}, - [509] = {.lex_state = 59}, - [510] = {.lex_state = 59}, - [511] = {.lex_state = 64}, - [512] = {.lex_state = 59}, - [513] = {.lex_state = 58}, - [514] = {.lex_state = 59}, - [515] = {.lex_state = 69}, + [496] = {.lex_state = 64}, + [497] = {.lex_state = 35}, + [498] = {.lex_state = 35}, + [499] = {.lex_state = 64}, + [500] = {.lex_state = 32}, + [501] = {.lex_state = 35}, + [502] = {.lex_state = 65}, + [503] = {.lex_state = 69}, + [504] = {.lex_state = 64}, + [505] = {.lex_state = 30}, + [506] = {.lex_state = 31}, + [507] = {.lex_state = 78}, + [508] = {.lex_state = 35}, + [509] = {.lex_state = 65}, + [510] = {.lex_state = 64}, + [511] = {.lex_state = 30}, + [512] = {.lex_state = 69}, + [513] = {.lex_state = 35}, + [514] = {.lex_state = 35}, + [515] = {.lex_state = 64}, [516] = {.lex_state = 64}, - [517] = {.lex_state = 58}, - [518] = {.lex_state = 59}, - [519] = {.lex_state = 58}, - [520] = {.lex_state = 59}, - [521] = {.lex_state = 64}, - [522] = {.lex_state = 63}, - [523] = {.lex_state = 58}, - [524] = {.lex_state = 63}, - [525] = {.lex_state = 59}, - [526] = {.lex_state = 63}, - [527] = {.lex_state = 59}, - [528] = {.lex_state = 58}, - [529] = {.lex_state = 63}, - [530] = {.lex_state = 59}, - [531] = {.lex_state = 66}, - [532] = {.lex_state = 63}, - [533] = {.lex_state = 58}, - [534] = {.lex_state = 59}, - [535] = {.lex_state = 63}, - [536] = {.lex_state = 59}, - [537] = {.lex_state = 58}, - [538] = {.lex_state = 63}, - [539] = {.lex_state = 66}, - [540] = {.lex_state = 58}, - [541] = {.lex_state = 63}, - [542] = {.lex_state = 29}, - [543] = {.lex_state = 58}, - [544] = {.lex_state = 63}, - [545] = {.lex_state = 60}, - [546] = {.lex_state = 63}, - [547] = {.lex_state = 58}, - [548] = {.lex_state = 29}, - [549] = {.lex_state = 29}, - [550] = {.lex_state = 64}, - [551] = {.lex_state = 63}, - [552] = {.lex_state = 29}, - [553] = {.lex_state = 58}, - [554] = {.lex_state = 29}, - [555] = {.lex_state = 29}, - [556] = {.lex_state = 26}, - [557] = {.lex_state = 59}, - [558] = {.lex_state = 58}, - [559] = {.lex_state = 63}, - [560] = {.lex_state = 29}, - [561] = {.lex_state = 69}, - [562] = {.lex_state = 63}, - [563] = {.lex_state = 63}, - [564] = {.lex_state = 63}, - [565] = {.lex_state = 58}, - [566] = {.lex_state = 63}, - [567] = {.lex_state = 29}, - [568] = {.lex_state = 29}, - [569] = {.lex_state = 63}, - [570] = {.lex_state = 64}, - [571] = {.lex_state = 29}, - [572] = {.lex_state = 64}, - [573] = {.lex_state = 26}, - [574] = {.lex_state = 29}, - [575] = {.lex_state = 63}, - [576] = {.lex_state = 63}, - [577] = {.lex_state = 63}, - [578] = {.lex_state = 63}, + [517] = {.lex_state = 69}, + [518] = {.lex_state = 35}, + [519] = {.lex_state = 35}, + [520] = {.lex_state = 30}, + [521] = {.lex_state = 30}, + [522] = {.lex_state = 30}, + [523] = {.lex_state = 30}, + [524] = {.lex_state = 30}, + [525] = {.lex_state = 30}, + [526] = {.lex_state = 35}, + [527] = {.lex_state = 65}, + [528] = {.lex_state = 69}, + [529] = {.lex_state = 30}, + [530] = {.lex_state = 32}, + [531] = {.lex_state = 65}, + [532] = {.lex_state = 65}, + [533] = {.lex_state = 67}, + [534] = {.lex_state = 69}, + [535] = {.lex_state = 32}, + [536] = {.lex_state = 69}, + [537] = {.lex_state = 69}, + [538] = {.lex_state = 65}, + [539] = {.lex_state = 32}, + [540] = {.lex_state = 69}, + [541] = {.lex_state = 69}, + [542] = {.lex_state = 68}, + [543] = {.lex_state = 30}, + [544] = {.lex_state = 69}, + [545] = {.lex_state = 35}, + [546] = {.lex_state = 70}, + [547] = {.lex_state = 71}, + [548] = {.lex_state = 72}, + [549] = {.lex_state = 79}, + [550] = {.lex_state = 70}, + [551] = {.lex_state = 72}, + [552] = {.lex_state = 34}, + [553] = {.lex_state = 34}, + [554] = {.lex_state = 34}, + [555] = {.lex_state = 72}, + [556] = {.lex_state = 34}, + [557] = {.lex_state = 34}, + [558] = {.lex_state = 34}, + [559] = {.lex_state = 72}, + [560] = {.lex_state = 34}, + [561] = {.lex_state = 34}, + [562] = {.lex_state = 34}, + [563] = {.lex_state = 34}, + [564] = {.lex_state = 70}, + [565] = {.lex_state = 34}, + [566] = {.lex_state = 34}, + [567] = {.lex_state = 34}, + [568] = {.lex_state = 34}, + [569] = {.lex_state = 72}, + [570] = {.lex_state = 72}, + [571] = {.lex_state = 34}, + [572] = {.lex_state = 34}, + [573] = {.lex_state = 34}, + [574] = {.lex_state = 70}, + [575] = {.lex_state = 33}, + [576] = {.lex_state = 34}, + [577] = {.lex_state = 34}, + [578] = {.lex_state = 72}, [579] = {.lex_state = 63}, - [580] = {.lex_state = 63}, - [581] = {.lex_state = 63}, - [582] = {.lex_state = 63}, - [583] = {.lex_state = 64}, - [584] = {.lex_state = 63}, - [585] = {.lex_state = 64}, - [586] = {.lex_state = 63}, - [587] = {.lex_state = 63}, - [588] = {.lex_state = 58}, - [589] = {.lex_state = 63}, - [590] = {.lex_state = 63}, - [591] = {.lex_state = 63}, - [592] = {.lex_state = 63}, - [593] = {.lex_state = 63}, - [594] = {.lex_state = 64}, - [595] = {.lex_state = 63}, - [596] = {.lex_state = 63}, - [597] = {.lex_state = 26}, - [598] = {.lex_state = 57}, - [599] = {.lex_state = 26}, - [600] = {.lex_state = 63}, - [601] = {.lex_state = 63}, - [602] = {.lex_state = 64}, - [603] = {.lex_state = 26}, - [604] = {.lex_state = 26}, - [605] = {.lex_state = 63}, - [606] = {.lex_state = 63}, - [607] = {.lex_state = 64}, - [608] = {.lex_state = 64}, - [609] = {.lex_state = 26}, - [610] = {.lex_state = 26}, - [611] = {.lex_state = 26}, - [612] = {.lex_state = 63}, - [613] = {.lex_state = 64}, - [614] = {.lex_state = 63}, - [615] = {.lex_state = 63}, - [616] = {.lex_state = 58}, - [617] = {.lex_state = 58}, - [618] = {.lex_state = 58}, - [619] = {.lex_state = 67}, - [620] = {.lex_state = 58}, - [621] = {.lex_state = 58}, - [622] = {.lex_state = 67}, - [623] = {.lex_state = 58}, - [624] = {.lex_state = 67}, - [625] = {.lex_state = 58}, - [626] = {.lex_state = 67}, - [627] = {.lex_state = 58}, - [628] = {.lex_state = 67}, - [629] = {.lex_state = 58}, - [630] = {.lex_state = 67}, - [631] = {.lex_state = 58}, - [632] = {.lex_state = 67}, - [633] = {.lex_state = 58}, - [634] = {.lex_state = 67}, - [635] = {.lex_state = 58}, - [636] = {.lex_state = 67}, - [637] = {.lex_state = 58}, - [638] = {.lex_state = 67}, - [639] = {.lex_state = 58}, - [640] = {.lex_state = 67}, - [641] = {.lex_state = 67}, - [642] = {.lex_state = 67}, - [643] = {.lex_state = 67}, - [644] = {.lex_state = 65}, - [645] = {.lex_state = 67}, - [646] = {.lex_state = 67}, - [647] = {.lex_state = 59}, - [648] = {.lex_state = 67}, - [649] = {.lex_state = 70}, - [650] = {.lex_state = 67}, - [651] = {.lex_state = 70}, - [652] = {.lex_state = 70}, - [653] = {.lex_state = 65}, - [654] = {.lex_state = 70}, - [655] = {.lex_state = 70}, - [656] = {.lex_state = 62}, - [657] = {.lex_state = 62}, - [658] = {.lex_state = 70}, - [659] = {.lex_state = 62}, + [580] = {.lex_state = 72}, + [581] = {.lex_state = 75}, + [582] = {.lex_state = 33}, + [583] = {.lex_state = 33}, + [584] = {.lex_state = 70}, + [585] = {.lex_state = 33}, + [586] = {.lex_state = 79}, + [587] = {.lex_state = 33}, + [588] = {.lex_state = 70}, + [589] = {.lex_state = 79}, + [590] = {.lex_state = 33}, + [591] = {.lex_state = 33}, + [592] = {.lex_state = 70}, + [593] = {.lex_state = 70}, + [594] = {.lex_state = 72}, + [595] = {.lex_state = 33}, + [596] = {.lex_state = 79}, + [597] = {.lex_state = 65}, + [598] = {.lex_state = 33}, + [599] = {.lex_state = 33}, + [600] = {.lex_state = 33}, + [601] = {.lex_state = 79}, + [602] = {.lex_state = 65}, + [603] = {.lex_state = 65}, + [604] = {.lex_state = 33}, + [605] = {.lex_state = 65}, + [606] = {.lex_state = 33}, + [607] = {.lex_state = 79}, + [608] = {.lex_state = 65}, + [609] = {.lex_state = 33}, + [610] = {.lex_state = 33}, + [611] = {.lex_state = 65}, + [612] = {.lex_state = 66}, + [613] = {.lex_state = 33}, + [614] = {.lex_state = 72}, + [615] = {.lex_state = 65}, + [616] = {.lex_state = 71}, + [617] = {.lex_state = 71}, + [618] = {.lex_state = 79}, + [619] = {.lex_state = 36}, + [620] = {.lex_state = 33}, + [621] = {.lex_state = 36}, + [622] = {.lex_state = 79}, + [623] = {.lex_state = 33}, + [624] = {.lex_state = 79}, + [625] = {.lex_state = 79}, + [626] = {.lex_state = 79}, + [627] = {.lex_state = 72}, + [628] = {.lex_state = 79}, + [629] = {.lex_state = 79}, + [630] = {.lex_state = 79}, + [631] = {.lex_state = 71}, + [632] = {.lex_state = 79}, + [633] = {.lex_state = 71}, + [634] = {.lex_state = 71}, + [635] = {.lex_state = 79}, + [636] = {.lex_state = 79}, + [637] = {.lex_state = 79}, + [638] = {.lex_state = 71}, + [639] = {.lex_state = 79}, + [640] = {.lex_state = 72}, + [641] = {.lex_state = 79}, + [642] = {.lex_state = 79}, + [643] = {.lex_state = 71}, + [644] = {.lex_state = 79}, + [645] = {.lex_state = 71}, + [646] = {.lex_state = 75}, + [647] = {.lex_state = 33}, + [648] = {.lex_state = 79}, + [649] = {.lex_state = 79}, + [650] = {.lex_state = 79}, + [651] = {.lex_state = 79}, + [652] = {.lex_state = 65}, + [653] = {.lex_state = 36}, + [654] = {.lex_state = 79}, + [655] = {.lex_state = 65}, + [656] = {.lex_state = 79}, + [657] = {.lex_state = 36}, + [658] = {.lex_state = 79}, + [659] = {.lex_state = 36}, [660] = {.lex_state = 70}, - [661] = {.lex_state = 62}, - [662] = {.lex_state = 59}, - [663] = {.lex_state = 67}, - [664] = {.lex_state = 70}, - [665] = {.lex_state = 62}, - [666] = {.lex_state = 70}, - [667] = {.lex_state = 70}, - [668] = {.lex_state = 62}, - [669] = {.lex_state = 70}, - [670] = {.lex_state = 62}, - [671] = {.lex_state = 70}, - [672] = {.lex_state = 62}, + [661] = {.lex_state = 65}, + [662] = {.lex_state = 71}, + [663] = {.lex_state = 71}, + [664] = {.lex_state = 36}, + [665] = {.lex_state = 36}, + [666] = {.lex_state = 71}, + [667] = {.lex_state = 36}, + [668] = {.lex_state = 70}, + [669] = {.lex_state = 36}, + [670] = {.lex_state = 70}, + [671] = {.lex_state = 65}, + [672] = {.lex_state = 70}, [673] = {.lex_state = 70}, - [674] = {.lex_state = 62}, - [675] = {.lex_state = 70}, - [676] = {.lex_state = 62}, - [677] = {.lex_state = 70}, - [678] = {.lex_state = 67}, - [679] = {.lex_state = 70}, - [680] = {.lex_state = 62}, - [681] = {.lex_state = 70}, - [682] = {.lex_state = 67}, - [683] = {.lex_state = 59}, - [684] = {.lex_state = 67}, + [674] = {.lex_state = 72}, + [675] = {.lex_state = 71}, + [676] = {.lex_state = 36}, + [677] = {.lex_state = 36}, + [678] = {.lex_state = 70}, + [679] = {.lex_state = 36}, + [680] = {.lex_state = 70}, + [681] = {.lex_state = 71}, + [682] = {.lex_state = 70}, + [683] = {.lex_state = 36}, + [684] = {.lex_state = 70}, [685] = {.lex_state = 65}, [686] = {.lex_state = 70}, [687] = {.lex_state = 70}, - [688] = {.lex_state = 70}, - [689] = {.lex_state = 62}, - [690] = {.lex_state = 67}, - [691] = {.lex_state = 67}, - [692] = {.lex_state = 65}, - [693] = {.lex_state = 70}, - [694] = {.lex_state = 70}, - [695] = {.lex_state = 59}, - [696] = {.lex_state = 65}, + [688] = {.lex_state = 36}, + [689] = {.lex_state = 70}, + [690] = {.lex_state = 72}, + [691] = {.lex_state = 70}, + [692] = {.lex_state = 70}, + [693] = {.lex_state = 36}, + [694] = {.lex_state = 72}, + [695] = {.lex_state = 70}, + [696] = {.lex_state = 70}, [697] = {.lex_state = 70}, - [698] = {.lex_state = 62}, - [699] = {.lex_state = 70}, + [698] = {.lex_state = 70}, + [699] = {.lex_state = 36}, [700] = {.lex_state = 70}, - [701] = {.lex_state = 70}, + [701] = {.lex_state = 36}, [702] = {.lex_state = 70}, - [703] = {.lex_state = 65}, - [704] = {.lex_state = 62}, - [705] = {.lex_state = 70}, - [706] = {.lex_state = 70}, - [707] = {.lex_state = 59}, - [708] = {.lex_state = 67}, + [703] = {.lex_state = 70}, + [704] = {.lex_state = 65}, + [705] = {.lex_state = 71}, + [706] = {.lex_state = 75}, + [707] = {.lex_state = 71}, + [708] = {.lex_state = 71}, [709] = {.lex_state = 65}, - [710] = {.lex_state = 67}, - [711] = {.lex_state = 67}, - [712] = {.lex_state = 67}, - [713] = {.lex_state = 67}, - [714] = {.lex_state = 67}, - [715] = {.lex_state = 67}, - [716] = {.lex_state = 67}, - [717] = {.lex_state = 67}, - [718] = {.lex_state = 59}, - [719] = {.lex_state = 67}, - [720] = {.lex_state = 67}, - [721] = {.lex_state = 67}, - [722] = {.lex_state = 67}, - [723] = {.lex_state = 67}, - [724] = {.lex_state = 67}, - [725] = {.lex_state = 65}, - [726] = {.lex_state = 67}, - [727] = {.lex_state = 30}, - [728] = {.lex_state = 59}, - [729] = {.lex_state = 67}, - [730] = {.lex_state = 30}, - [731] = {.lex_state = 30}, - [732] = {.lex_state = 30}, - [733] = {.lex_state = 65}, - [734] = {.lex_state = 67}, - [735] = {.lex_state = 30}, - [736] = {.lex_state = 59}, - [737] = {.lex_state = 65}, - [738] = {.lex_state = 65}, - [739] = {.lex_state = 30}, - [740] = {.lex_state = 59}, - [741] = {.lex_state = 67}, - [742] = {.lex_state = 65}, - [743] = {.lex_state = 65}, - [744] = {.lex_state = 59}, - [745] = {.lex_state = 65}, - [746] = {.lex_state = 30}, - [747] = {.lex_state = 70}, - [748] = {.lex_state = 59}, - [749] = {.lex_state = 65}, - [750] = {.lex_state = 70}, - [751] = {.lex_state = 30}, - [752] = {.lex_state = 59}, - [753] = {.lex_state = 70}, - [754] = {.lex_state = 70}, - [755] = {.lex_state = 70}, - [756] = {.lex_state = 59}, - [757] = {.lex_state = 70}, - [758] = {.lex_state = 70}, - [759] = {.lex_state = 70}, - [760] = {.lex_state = 59}, - [761] = {.lex_state = 70}, - [762] = {.lex_state = 70}, - [763] = {.lex_state = 70}, - [764] = {.lex_state = 30}, - [765] = {.lex_state = 65}, - [766] = {.lex_state = 70}, - [767] = {.lex_state = 70}, - [768] = {.lex_state = 30}, - [769] = {.lex_state = 53}, - [770] = {.lex_state = 53}, - [771] = {.lex_state = 53}, - [772] = {.lex_state = 30}, - [773] = {.lex_state = 70}, - [774] = {.lex_state = 67}, - [775] = {.lex_state = 67}, - [776] = {.lex_state = 67}, - [777] = {.lex_state = 30}, - [778] = {.lex_state = 67}, - [779] = {.lex_state = 67}, - [780] = {.lex_state = 67}, - [781] = {.lex_state = 70}, - [782] = {.lex_state = 67}, - [783] = {.lex_state = 70}, - [784] = {.lex_state = 70}, - [785] = {.lex_state = 67}, - [786] = {.lex_state = 70}, - [787] = {.lex_state = 70}, - [788] = {.lex_state = 67}, - [789] = {.lex_state = 70}, - [790] = {.lex_state = 70}, - [791] = {.lex_state = 67}, - [792] = {.lex_state = 70}, - [793] = {.lex_state = 31}, - [794] = {.lex_state = 67}, - [795] = {.lex_state = 31}, - [796] = {.lex_state = 31}, - [797] = {.lex_state = 31}, - [798] = {.lex_state = 70}, - [799] = {.lex_state = 70}, - [800] = {.lex_state = 31}, - [801] = {.lex_state = 67}, - [802] = {.lex_state = 31}, - [803] = {.lex_state = 31}, - [804] = {.lex_state = 31}, - [805] = {.lex_state = 67}, - [806] = {.lex_state = 31}, - [807] = {.lex_state = 70}, - [808] = {.lex_state = 70}, - [809] = {.lex_state = 31}, - [810] = {.lex_state = 70}, - [811] = {.lex_state = 31}, - [812] = {.lex_state = 67}, - [813] = {.lex_state = 70}, - [814] = {.lex_state = 31}, + [710] = {.lex_state = 71}, + [711] = {.lex_state = 71}, + [712] = {.lex_state = 71}, + [713] = {.lex_state = 71}, + [714] = {.lex_state = 71}, + [715] = {.lex_state = 71}, + [716] = {.lex_state = 36}, + [717] = {.lex_state = 71}, + [718] = {.lex_state = 71}, + [719] = {.lex_state = 71}, + [720] = {.lex_state = 71}, + [721] = {.lex_state = 71}, + [722] = {.lex_state = 71}, + [723] = {.lex_state = 36}, + [724] = {.lex_state = 80}, + [725] = {.lex_state = 80}, + [726] = {.lex_state = 73}, + [727] = {.lex_state = 64}, + [728] = {.lex_state = 64}, + [729] = {.lex_state = 73}, + [730] = {.lex_state = 64}, + [731] = {.lex_state = 64}, + [732] = {.lex_state = 73}, + [733] = {.lex_state = 76}, + [734] = {.lex_state = 73}, + [735] = {.lex_state = 64}, + [736] = {.lex_state = 73}, + [737] = {.lex_state = 64}, + [738] = {.lex_state = 73}, + [739] = {.lex_state = 73}, + [740] = {.lex_state = 64}, + [741] = {.lex_state = 76}, + [742] = {.lex_state = 69}, + [743] = {.lex_state = 76}, + [744] = {.lex_state = 76}, + [745] = {.lex_state = 76}, + [746] = {.lex_state = 76}, + [747] = {.lex_state = 73}, + [748] = {.lex_state = 73}, + [749] = {.lex_state = 76}, + [750] = {.lex_state = 76}, + [751] = {.lex_state = 80}, + [752] = {.lex_state = 76}, + [753] = {.lex_state = 73}, + [754] = {.lex_state = 73}, + [755] = {.lex_state = 73}, + [756] = {.lex_state = 69}, + [757] = {.lex_state = 73}, + [758] = {.lex_state = 76}, + [759] = {.lex_state = 80}, + [760] = {.lex_state = 69}, + [761] = {.lex_state = 73}, + [762] = {.lex_state = 80}, + [763] = {.lex_state = 74}, + [764] = {.lex_state = 76}, + [765] = {.lex_state = 80}, + [766] = {.lex_state = 76}, + [767] = {.lex_state = 69}, + [768] = {.lex_state = 74}, + [769] = {.lex_state = 76}, + [770] = {.lex_state = 80}, + [771] = {.lex_state = 69}, + [772] = {.lex_state = 80}, + [773] = {.lex_state = 74}, + [774] = {.lex_state = 69}, + [775] = {.lex_state = 80}, + [776] = {.lex_state = 76}, + [777] = {.lex_state = 76}, + [778] = {.lex_state = 76}, + [779] = {.lex_state = 74}, + [780] = {.lex_state = 76}, + [781] = {.lex_state = 76}, + [782] = {.lex_state = 74}, + [783] = {.lex_state = 76}, + [784] = {.lex_state = 74}, + [785] = {.lex_state = 76}, + [786] = {.lex_state = 74}, + [787] = {.lex_state = 74}, + [788] = {.lex_state = 76}, + [789] = {.lex_state = 76}, + [790] = {.lex_state = 76}, + [791] = {.lex_state = 80}, + [792] = {.lex_state = 76}, + [793] = {.lex_state = 74}, + [794] = {.lex_state = 74}, + [795] = {.lex_state = 74}, + [796] = {.lex_state = 80}, + [797] = {.lex_state = 74}, + [798] = {.lex_state = 76}, + [799] = {.lex_state = 80}, + [800] = {.lex_state = 76}, + [801] = {.lex_state = 73}, + [802] = {.lex_state = 80}, + [803] = {.lex_state = 69}, + [804] = {.lex_state = 76}, + [805] = {.lex_state = 74}, + [806] = {.lex_state = 80}, + [807] = {.lex_state = 80}, + [808] = {.lex_state = 76}, + [809] = {.lex_state = 74}, + [810] = {.lex_state = 76}, + [811] = {.lex_state = 74}, + [812] = {.lex_state = 72}, + [813] = {.lex_state = 65}, + [814] = {.lex_state = 65}, [815] = {.lex_state = 65}, - [816] = {.lex_state = 65}, + [816] = {.lex_state = 81}, [817] = {.lex_state = 65}, [818] = {.lex_state = 65}, [819] = {.lex_state = 65}, [820] = {.lex_state = 65}, [821] = {.lex_state = 65}, - [822] = {.lex_state = 65}, + [822] = {.lex_state = 59}, [823] = {.lex_state = 65}, - [824] = {.lex_state = 65}, - [825] = {.lex_state = 65}, + [824] = {.lex_state = 59}, + [825] = {.lex_state = 59}, [826] = {.lex_state = 65}, [827] = {.lex_state = 65}, - [828] = {.lex_state = 32}, - [829] = {.lex_state = 32}, - [830] = {.lex_state = 72}, - [831] = {.lex_state = 72}, - [832] = {.lex_state = 72}, - [833] = {.lex_state = 72}, - [834] = {.lex_state = 72}, - [835] = {.lex_state = 72}, - [836] = {.lex_state = 72}, - [837] = {.lex_state = 72}, - [838] = {.lex_state = 72}, - [839] = {.lex_state = 72}, - [840] = {.lex_state = 72}, - [841] = {.lex_state = 72}, - [842] = {.lex_state = 72}, - [843] = {.lex_state = 71}, - [844] = {.lex_state = 72}, - [845] = {.lex_state = 72}, - [846] = {.lex_state = 71}, - [847] = {.lex_state = 71}, - [848] = {.lex_state = 71}, - [849] = {.lex_state = 71}, - [850] = {.lex_state = 71}, - [851] = {.lex_state = 71}, - [852] = {.lex_state = 71}, - [853] = {.lex_state = 71}, - [854] = {.lex_state = 71}, - [855] = {.lex_state = 71}, - [856] = {.lex_state = 71}, - [857] = {.lex_state = 71}, - [858] = {.lex_state = 72}, - [859] = {.lex_state = 71}, - [860] = {.lex_state = 71}, - [861] = {.lex_state = 71}, - [862] = {.lex_state = 71}, - [863] = {.lex_state = 71}, - [864] = {.lex_state = 71}, - [865] = {.lex_state = 71}, - [866] = {.lex_state = 72}, - [867] = {.lex_state = 71}, - [868] = {.lex_state = 71}, - [869] = {.lex_state = 71}, - [870] = {.lex_state = 72}, - [871] = {.lex_state = 71}, - [872] = {.lex_state = 71}, - [873] = {.lex_state = 72}, - [874] = {.lex_state = 71}, - [875] = {.lex_state = 71}, - [876] = {.lex_state = 71}, - [877] = {.lex_state = 72}, - [878] = {.lex_state = 72}, - [879] = {.lex_state = 72}, - [880] = {.lex_state = 55}, - [881] = {.lex_state = 59}, - [882] = {.lex_state = 59}, - [883] = {.lex_state = 59}, - [884] = {.lex_state = 59}, - [885] = {.lex_state = 59}, - [886] = {.lex_state = 59}, - [887] = {.lex_state = 59}, - [888] = {.lex_state = 59}, - [889] = {.lex_state = 59}, - [890] = {.lex_state = 72}, - [891] = {.lex_state = 59}, - [892] = {.lex_state = 59}, - [893] = {.lex_state = 59}, - [894] = {.lex_state = 72}, - [895] = {.lex_state = 72}, - [896] = {.lex_state = 55}, - [897] = {.lex_state = 55}, - [898] = {.lex_state = 72}, - [899] = {.lex_state = 59}, - [900] = {.lex_state = 59}, - [901] = {.lex_state = 72}, - [902] = {.lex_state = 72}, - [903] = {.lex_state = 72}, - [904] = {.lex_state = 72}, - [905] = {.lex_state = 55}, - [906] = {.lex_state = 72}, - [907] = {.lex_state = 55}, - [908] = {.lex_state = 55}, + [828] = {.lex_state = 65}, + [829] = {.lex_state = 65}, + [830] = {.lex_state = 65}, + [831] = {.lex_state = 65}, + [832] = {.lex_state = 65}, + [833] = {.lex_state = 65}, + [834] = {.lex_state = 65}, + [835] = {.lex_state = 65}, + [836] = {.lex_state = 65}, + [837] = {.lex_state = 65}, + [838] = {.lex_state = 81}, + [839] = {.lex_state = 65}, + [840] = {.lex_state = 65}, + [841] = {.lex_state = 65}, + [842] = {.lex_state = 51}, + [843] = {.lex_state = 81}, + [844] = {.lex_state = 65}, + [845] = {.lex_state = 51}, + [846] = {.lex_state = 65}, + [847] = {.lex_state = 51}, + [848] = {.lex_state = 65}, + [849] = {.lex_state = 77}, + [850] = {.lex_state = 65}, + [851] = {.lex_state = 51}, + [852] = {.lex_state = 65}, + [853] = {.lex_state = 77}, + [854] = {.lex_state = 65}, + [855] = {.lex_state = 65}, + [856] = {.lex_state = 65}, + [857] = {.lex_state = 65}, + [858] = {.lex_state = 65}, + [859] = {.lex_state = 65}, + [860] = {.lex_state = 51}, + [861] = {.lex_state = 65}, + [862] = {.lex_state = 77}, + [863] = {.lex_state = 65}, + [864] = {.lex_state = 81}, + [865] = {.lex_state = 51}, + [866] = {.lex_state = 81}, + [867] = {.lex_state = 77}, + [868] = {.lex_state = 51}, + [869] = {.lex_state = 65}, + [870] = {.lex_state = 77}, + [871] = {.lex_state = 65}, + [872] = {.lex_state = 51}, + [873] = {.lex_state = 77}, + [874] = {.lex_state = 51}, + [875] = {.lex_state = 51}, + [876] = {.lex_state = 65}, + [877] = {.lex_state = 77}, + [878] = {.lex_state = 65}, + [879] = {.lex_state = 65}, + [880] = {.lex_state = 65}, + [881] = {.lex_state = 65}, + [882] = {.lex_state = 65}, + [883] = {.lex_state = 65}, + [884] = {.lex_state = 65}, + [885] = {.lex_state = 65}, + [886] = {.lex_state = 77}, + [887] = {.lex_state = 65}, + [888] = {.lex_state = 65}, + [889] = {.lex_state = 51}, + [890] = {.lex_state = 65}, + [891] = {.lex_state = 65}, + [892] = {.lex_state = 65}, + [893] = {.lex_state = 51}, + [894] = {.lex_state = 81}, + [895] = {.lex_state = 51}, + [896] = {.lex_state = 72}, + [897] = {.lex_state = 65}, + [898] = {.lex_state = 51}, + [899] = {.lex_state = 77}, + [900] = {.lex_state = 51}, + [901] = {.lex_state = 65}, + [902] = {.lex_state = 65}, + [903] = {.lex_state = 77}, + [904] = {.lex_state = 65}, + [905] = {.lex_state = 65}, + [906] = {.lex_state = 77}, + [907] = {.lex_state = 65}, + [908] = {.lex_state = 65}, [909] = {.lex_state = 72}, - [910] = {.lex_state = 72}, - [911] = {.lex_state = 64}, - [912] = {.lex_state = 64}, - [913] = {.lex_state = 68}, - [914] = {.lex_state = 72}, - [915] = {.lex_state = 72}, - [916] = {.lex_state = 64}, - [917] = {.lex_state = 64}, - [918] = {.lex_state = 64}, - [919] = {.lex_state = 64}, - [920] = {.lex_state = 64}, - [921] = {.lex_state = 64}, - [922] = {.lex_state = 53}, - [923] = {.lex_state = 64}, - [924] = {.lex_state = 68}, - [925] = {.lex_state = 68}, - [926] = {.lex_state = 53}, - [927] = {.lex_state = 53}, - [928] = {.lex_state = 64}, - [929] = {.lex_state = 53}, - [930] = {.lex_state = 53}, - [931] = {.lex_state = 64}, - [932] = {.lex_state = 53}, - [933] = {.lex_state = 53}, - [934] = {.lex_state = 53}, - [935] = {.lex_state = 53}, - [936] = {.lex_state = 64}, - [937] = {.lex_state = 53}, - [938] = {.lex_state = 68}, - [939] = {.lex_state = 64}, - [940] = {.lex_state = 64}, - [941] = {.lex_state = 68}, - [942] = {.lex_state = 68}, - [943] = {.lex_state = 32}, - [944] = {.lex_state = 68}, - [945] = {.lex_state = 53}, - [946] = {.lex_state = 72}, - [947] = {.lex_state = 68}, - [948] = {.lex_state = 68}, - [949] = {.lex_state = 68}, - [950] = {.lex_state = 68}, - [951] = {.lex_state = 68}, - [952] = {.lex_state = 68}, - [953] = {.lex_state = 68}, - [954] = {.lex_state = 68}, - [955] = {.lex_state = 68}, - [956] = {.lex_state = 68}, - [957] = {.lex_state = 68}, - [958] = {.lex_state = 71}, - [959] = {.lex_state = 68}, - [960] = {.lex_state = 72}, - [961] = {.lex_state = 72}, - [962] = {.lex_state = 72}, - [963] = {.lex_state = 68}, - [964] = {.lex_state = 68}, - [965] = {.lex_state = 72}, - [966] = {.lex_state = 72}, - [967] = {.lex_state = 55}, - [968] = {.lex_state = 68}, - [969] = {.lex_state = 55}, - [970] = {.lex_state = 55}, - [971] = {.lex_state = 68}, - [972] = {.lex_state = 72}, - [973] = {.lex_state = 72}, - [974] = {.lex_state = 68}, - [975] = {.lex_state = 72}, - [976] = {.lex_state = 72}, - [977] = {.lex_state = 68}, - [978] = {.lex_state = 72}, - [979] = {.lex_state = 72}, - [980] = {.lex_state = 68}, - [981] = {.lex_state = 72}, - [982] = {.lex_state = 32}, - [983] = {.lex_state = 68}, - [984] = {.lex_state = 53}, - [985] = {.lex_state = 32}, - [986] = {.lex_state = 68}, - [987] = {.lex_state = 53}, - [988] = {.lex_state = 32}, - [989] = {.lex_state = 68}, - [990] = {.lex_state = 53}, - [991] = {.lex_state = 32}, - [992] = {.lex_state = 32}, - [993] = {.lex_state = 32}, - [994] = {.lex_state = 32}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 53}, - [997] = {.lex_state = 72}, - [998] = {.lex_state = 72}, - [999] = {.lex_state = 53}, - [1000] = {.lex_state = 72}, - [1001] = {.lex_state = 32}, - [1002] = {.lex_state = 53}, - [1003] = {.lex_state = 32}, - [1004] = {.lex_state = 53}, - [1005] = {.lex_state = 53}, - [1006] = {.lex_state = 59}, - [1007] = {.lex_state = 55}, - [1008] = {.lex_state = 59}, - [1009] = {.lex_state = 53}, + [910] = {.lex_state = 65}, + [911] = {.lex_state = 65}, + [912] = {.lex_state = 65}, + [913] = {.lex_state = 65}, + [914] = {.lex_state = 65}, + [915] = {.lex_state = 77}, + [916] = {.lex_state = 65}, + [917] = {.lex_state = 72}, + [918] = {.lex_state = 65}, + [919] = {.lex_state = 65}, + [920] = {.lex_state = 65}, + [921] = {.lex_state = 77}, + [922] = {.lex_state = 72}, + [923] = {.lex_state = 81}, + [924] = {.lex_state = 72}, + [925] = {.lex_state = 65}, + [926] = {.lex_state = 51}, + [927] = {.lex_state = 72}, + [928] = {.lex_state = 51}, + [929] = {.lex_state = 77}, + [930] = {.lex_state = 77}, + [931] = {.lex_state = 65}, + [932] = {.lex_state = 65}, + [933] = {.lex_state = 56}, + [934] = {.lex_state = 54}, + [935] = {.lex_state = 58}, + [936] = {.lex_state = 45}, + [937] = {.lex_state = 58}, + [938] = {.lex_state = 81}, + [939] = {.lex_state = 49}, + [940] = {.lex_state = 65}, + [941] = {.lex_state = 58}, + [942] = {.lex_state = 56}, + [943] = {.lex_state = 58}, + [944] = {.lex_state = 65}, + [945] = {.lex_state = 56}, + [946] = {.lex_state = 49}, + [947] = {.lex_state = 54}, + [948] = {.lex_state = 65}, + [949] = {.lex_state = 58}, + [950] = {.lex_state = 48}, + [951] = {.lex_state = 65}, + [952] = {.lex_state = 65}, + [953] = {.lex_state = 45}, + [954] = {.lex_state = 56}, + [955] = {.lex_state = 56}, + [956] = {.lex_state = 45}, + [957] = {.lex_state = 45}, + [958] = {.lex_state = 56}, + [959] = {.lex_state = 45}, + [960] = {.lex_state = 49}, + [961] = {.lex_state = 56}, + [962] = {.lex_state = 54}, + [963] = {.lex_state = 48}, + [964] = {.lex_state = 65}, + [965] = {.lex_state = 45}, + [966] = {.lex_state = 56}, + [967] = {.lex_state = 65}, + [968] = {.lex_state = 45}, + [969] = {.lex_state = 45}, + [970] = {.lex_state = 48}, + [971] = {.lex_state = 56}, + [972] = {.lex_state = 56}, + [973] = {.lex_state = 48}, + [974] = {.lex_state = 65}, + [975] = {.lex_state = 54}, + [976] = {.lex_state = 48}, + [977] = {.lex_state = 56}, + [978] = {.lex_state = 49}, + [979] = {.lex_state = 48}, + [980] = {.lex_state = 58}, + [981] = {.lex_state = 49}, + [982] = {.lex_state = 59}, + [983] = {.lex_state = 59}, + [984] = {.lex_state = 48}, + [985] = {.lex_state = 45}, + [986] = {.lex_state = 48}, + [987] = {.lex_state = 45}, + [988] = {.lex_state = 48}, + [989] = {.lex_state = 49}, + [990] = {.lex_state = 48}, + [991] = {.lex_state = 58}, + [992] = {.lex_state = 65}, + [993] = {.lex_state = 48}, + [994] = {.lex_state = 58}, + [995] = {.lex_state = 65}, + [996] = {.lex_state = 59}, + [997] = {.lex_state = 45}, + [998] = {.lex_state = 48}, + [999] = {.lex_state = 65}, + [1000] = {.lex_state = 56}, + [1001] = {.lex_state = 65}, + [1002] = {.lex_state = 45}, + [1003] = {.lex_state = 48}, + [1004] = {.lex_state = 45}, + [1005] = {.lex_state = 49}, + [1006] = {.lex_state = 54}, + [1007] = {.lex_state = 59}, + [1008] = {.lex_state = 45}, + [1009] = {.lex_state = 54}, [1010] = {.lex_state = 59}, - [1011] = {.lex_state = 53}, - [1012] = {.lex_state = 59}, - [1013] = {.lex_state = 59}, - [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 53}, - [1016] = {.lex_state = 53}, + [1011] = {.lex_state = 59}, + [1012] = {.lex_state = 49}, + [1013] = {.lex_state = 56}, + [1014] = {.lex_state = 48}, + [1015] = {.lex_state = 45}, + [1016] = {.lex_state = 58}, [1017] = {.lex_state = 59}, [1018] = {.lex_state = 59}, - [1019] = {.lex_state = 59}, - [1020] = {.lex_state = 55}, - [1021] = {.lex_state = 55}, - [1022] = {.lex_state = 55}, - [1023] = {.lex_state = 55}, - [1024] = {.lex_state = 55}, - [1025] = {.lex_state = 55}, - [1026] = {.lex_state = 55}, - [1027] = {.lex_state = 55}, - [1028] = {.lex_state = 55}, - [1029] = {.lex_state = 53}, - [1030] = {.lex_state = 53}, - [1031] = {.lex_state = 55}, - [1032] = {.lex_state = 53}, - [1033] = {.lex_state = 59}, - [1034] = {.lex_state = 55}, + [1019] = {.lex_state = 49}, + [1020] = {.lex_state = 65}, + [1021] = {.lex_state = 54}, + [1022] = {.lex_state = 59}, + [1023] = {.lex_state = 59}, + [1024] = {.lex_state = 58}, + [1025] = {.lex_state = 59}, + [1026] = {.lex_state = 49}, + [1027] = {.lex_state = 54}, + [1028] = {.lex_state = 65}, + [1029] = {.lex_state = 48}, + [1030] = {.lex_state = 45}, + [1031] = {.lex_state = 45}, + [1032] = {.lex_state = 59}, + [1033] = {.lex_state = 56}, + [1034] = {.lex_state = 54}, [1035] = {.lex_state = 59}, - [1036] = {.lex_state = 55}, - [1037] = {.lex_state = 55}, - [1038] = {.lex_state = 59}, - [1039] = {.lex_state = 59}, - [1040] = {.lex_state = 53}, - [1041] = {.lex_state = 55}, - [1042] = {.lex_state = 53}, - [1043] = {.lex_state = 72}, - [1044] = {.lex_state = 53}, - [1045] = {.lex_state = 55}, - [1046] = {.lex_state = 55}, - [1047] = {.lex_state = 55}, - [1048] = {.lex_state = 55}, - [1049] = {.lex_state = 55}, - [1050] = {.lex_state = 53}, - [1051] = {.lex_state = 55}, - [1052] = {.lex_state = 55}, - [1053] = {.lex_state = 55}, - [1054] = {.lex_state = 55}, - [1055] = {.lex_state = 55}, - [1056] = {.lex_state = 55}, - [1057] = {.lex_state = 55}, - [1058] = {.lex_state = 55}, - [1059] = {.lex_state = 55}, - [1060] = {.lex_state = 55}, - [1061] = {.lex_state = 55}, - [1062] = {.lex_state = 55}, + [1036] = {.lex_state = 49}, + [1037] = {.lex_state = 59}, + [1038] = {.lex_state = 54}, + [1039] = {.lex_state = 56}, + [1040] = {.lex_state = 65}, + [1041] = {.lex_state = 48}, + [1042] = {.lex_state = 54}, + [1043] = {.lex_state = 65}, + [1044] = {.lex_state = 58}, + [1045] = {.lex_state = 54}, + [1046] = {.lex_state = 65}, + [1047] = {.lex_state = 59}, + [1048] = {.lex_state = 58}, + [1049] = {.lex_state = 59}, + [1050] = {.lex_state = 59}, + [1051] = {.lex_state = 65}, + [1052] = {.lex_state = 54}, + [1053] = {.lex_state = 54}, + [1054] = {.lex_state = 49}, + [1055] = {.lex_state = 54}, + [1056] = {.lex_state = 58}, + [1057] = {.lex_state = 59}, + [1058] = {.lex_state = 58}, + [1059] = {.lex_state = 49}, + [1060] = {.lex_state = 65}, + [1061] = {.lex_state = 49}, + [1062] = {.lex_state = 48}, [1063] = {.lex_state = 59}, - [1064] = {.lex_state = 59}, - [1065] = {.lex_state = 53}, - [1066] = {.lex_state = 55}, - [1067] = {.lex_state = 53}, - [1068] = {.lex_state = 55}, - [1069] = {.lex_state = 53}, - [1070] = {.lex_state = 55}, - [1071] = {.lex_state = 59}, - [1072] = {.lex_state = 55}, - [1073] = {.lex_state = 55}, - [1074] = {.lex_state = 55}, - [1075] = {.lex_state = 59}, - [1076] = {.lex_state = 55}, - [1077] = {.lex_state = 59}, - [1078] = {.lex_state = 55}, - [1079] = {.lex_state = 53}, - [1080] = {.lex_state = 55}, - [1081] = {.lex_state = 55}, - [1082] = {.lex_state = 55}, - [1083] = {.lex_state = 53}, - [1084] = {.lex_state = 55}, - [1085] = {.lex_state = 53}, - [1086] = {.lex_state = 59}, - [1087] = {.lex_state = 59}, - [1088] = {.lex_state = 59}, - [1089] = {.lex_state = 59}, - [1090] = {.lex_state = 59}, - [1091] = {.lex_state = 59}, - [1092] = {.lex_state = 59}, - [1093] = {.lex_state = 53}, - [1094] = {.lex_state = 59}, - [1095] = {.lex_state = 59}, - [1096] = {.lex_state = 59}, - [1097] = {.lex_state = 59}, - [1098] = {.lex_state = 59}, - [1099] = {.lex_state = 59}, - [1100] = {.lex_state = 59}, - [1101] = {.lex_state = 59}, - [1102] = {.lex_state = 59}, - [1103] = {.lex_state = 59}, - [1104] = {.lex_state = 59}, - [1105] = {.lex_state = 59}, - [1106] = {.lex_state = 59}, - [1107] = {.lex_state = 59}, - [1108] = {.lex_state = 59}, - [1109] = {.lex_state = 59}, - [1110] = {.lex_state = 59}, - [1111] = {.lex_state = 59}, - [1112] = {.lex_state = 59}, - [1113] = {.lex_state = 59}, - [1114] = {.lex_state = 53}, - [1115] = {.lex_state = 55}, - [1116] = {.lex_state = 55}, - [1117] = {.lex_state = 53}, - [1118] = {.lex_state = 59}, - [1119] = {.lex_state = 55}, - [1120] = {.lex_state = 55}, - [1121] = {.lex_state = 59}, - [1122] = {.lex_state = 59}, - [1123] = {.lex_state = 59}, - [1124] = {.lex_state = 59}, - [1125] = {.lex_state = 59}, - [1126] = {.lex_state = 59}, - [1127] = {.lex_state = 55}, - [1128] = {.lex_state = 59}, - [1129] = {.lex_state = 59}, - [1130] = {.lex_state = 59}, - [1131] = {.lex_state = 59}, - [1132] = {.lex_state = 59}, - [1133] = {.lex_state = 59}, - [1134] = {.lex_state = 59}, - [1135] = {.lex_state = 59}, - [1136] = {.lex_state = 59}, - [1137] = {.lex_state = 59}, - [1138] = {.lex_state = 59}, - [1139] = {.lex_state = 53}, + [1064] = {.lex_state = 54}, + [1065] = {.lex_state = 58}, + [1066] = {.lex_state = 65}, + [1067] = {.lex_state = 58}, + [1068] = {.lex_state = 56}, + [1069] = {.lex_state = 59}, + [1070] = {.lex_state = 58}, + [1071] = {.lex_state = 49}, + [1072] = {.lex_state = 54}, + [1073] = {.lex_state = 49}, + [1074] = {.lex_state = 56}, + [1075] = {.lex_state = 65}, + [1076] = {.lex_state = 49}, + [1077] = {.lex_state = 53}, + [1078] = {.lex_state = 65}, + [1079] = {.lex_state = 65}, + [1080] = {.lex_state = 65}, + [1081] = {.lex_state = 65}, + [1082] = {.lex_state = 50}, + [1083] = {.lex_state = 65}, + [1084] = {.lex_state = 53}, + [1085] = {.lex_state = 65}, + [1086] = {.lex_state = 53}, + [1087] = {.lex_state = 65}, + [1088] = {.lex_state = 65}, + [1089] = {.lex_state = 50}, + [1090] = {.lex_state = 50}, + [1091] = {.lex_state = 65}, + [1092] = {.lex_state = 50}, + [1093] = {.lex_state = 50}, + [1094] = {.lex_state = 65}, + [1095] = {.lex_state = 50}, + [1096] = {.lex_state = 53}, + [1097] = {.lex_state = 53}, + [1098] = {.lex_state = 65}, + [1099] = {.lex_state = 50}, + [1100] = {.lex_state = 53}, + [1101] = {.lex_state = 50}, + [1102] = {.lex_state = 55}, + [1103] = {.lex_state = 55}, + [1104] = {.lex_state = 55}, + [1105] = {.lex_state = 65}, + [1106] = {.lex_state = 55}, + [1107] = {.lex_state = 55}, + [1108] = {.lex_state = 53}, + [1109] = {.lex_state = 53}, + [1110] = {.lex_state = 65}, + [1111] = {.lex_state = 55}, + [1112] = {.lex_state = 65}, + [1113] = {.lex_state = 55}, + [1114] = {.lex_state = 55}, + [1115] = {.lex_state = 57}, + [1116] = {.lex_state = 65}, + [1117] = {.lex_state = 65}, + [1118] = {.lex_state = 65}, + [1119] = {.lex_state = 65}, + [1120] = {.lex_state = 65}, + [1121] = {.lex_state = 65}, + [1122] = {.lex_state = 65}, + [1123] = {.lex_state = 65}, + [1124] = {.lex_state = 65}, + [1125] = {.lex_state = 65}, + [1126] = {.lex_state = 65}, + [1127] = {.lex_state = 65}, + [1128] = {.lex_state = 65}, + [1129] = {.lex_state = 65}, + [1130] = {.lex_state = 65}, + [1131] = {.lex_state = 65}, + [1132] = {.lex_state = 65}, + [1133] = {.lex_state = 65}, + [1134] = {.lex_state = 65}, + [1135] = {.lex_state = 65}, + [1136] = {.lex_state = 65}, + [1137] = {.lex_state = 65}, + [1138] = {.lex_state = 65}, + [1139] = {.lex_state = 65}, [1140] = {.lex_state = 59}, - [1141] = {.lex_state = 55}, - [1142] = {.lex_state = 55}, + [1141] = {.lex_state = 65}, + [1142] = {.lex_state = 59}, [1143] = {.lex_state = 59}, - [1144] = {.lex_state = 59}, - [1145] = {.lex_state = 55}, - [1146] = {.lex_state = 59}, - [1147] = {.lex_state = 55}, - [1148] = {.lex_state = 59}, - [1149] = {.lex_state = 55}, - [1150] = {.lex_state = 59}, - [1151] = {.lex_state = 53}, - [1152] = {.lex_state = 59}, - [1153] = {.lex_state = 59}, - [1154] = {.lex_state = 59}, - [1155] = {.lex_state = 55}, - [1156] = {.lex_state = 59}, - [1157] = {.lex_state = 59}, - [1158] = {.lex_state = 59}, - [1159] = {.lex_state = 59}, - [1160] = {.lex_state = 59}, - [1161] = {.lex_state = 59}, - [1162] = {.lex_state = 55}, - [1163] = {.lex_state = 55}, - [1164] = {.lex_state = 55}, - [1165] = {.lex_state = 55}, - [1166] = {.lex_state = 59}, - [1167] = {.lex_state = 59}, - [1168] = {.lex_state = 59}, - [1169] = {.lex_state = 55}, - [1170] = {.lex_state = 59}, - [1171] = {.lex_state = 59}, + [1144] = {.lex_state = 65}, + [1145] = {.lex_state = 65}, + [1146] = {.lex_state = 52}, + [1147] = {.lex_state = 52}, + [1148] = {.lex_state = 52}, + [1149] = {.lex_state = 52}, + [1150] = {.lex_state = 52}, + [1151] = {.lex_state = 52}, + [1152] = {.lex_state = 52}, + [1153] = {.lex_state = 52}, + [1154] = {.lex_state = 65}, + [1155] = {.lex_state = 65}, + [1156] = {.lex_state = 65}, + [1157] = {.lex_state = 65}, + [1158] = {.lex_state = 65}, + [1159] = {.lex_state = 65}, + [1160] = {.lex_state = 65}, + [1161] = {.lex_state = 65}, + [1162] = {.lex_state = 65}, + [1163] = {.lex_state = 65}, + [1164] = {.lex_state = 65}, + [1165] = {.lex_state = 65}, + [1166] = {.lex_state = 65}, + [1167] = {.lex_state = 65}, + [1168] = {.lex_state = 65}, + [1169] = {.lex_state = 65}, + [1170] = {.lex_state = 65}, + [1171] = {.lex_state = 65}, [1172] = {.lex_state = 59}, [1173] = {.lex_state = 59}, - [1174] = {.lex_state = 59}, - [1175] = {.lex_state = 59}, - [1176] = {.lex_state = 55}, - [1177] = {.lex_state = 59}, - [1178] = {.lex_state = 55}, + [1174] = {.lex_state = 65}, + [1175] = {.lex_state = 65}, + [1176] = {.lex_state = 65}, + [1177] = {.lex_state = 65}, + [1178] = {.lex_state = 57}, [1179] = {.lex_state = 59}, - [1180] = {.lex_state = 59}, - [1181] = {.lex_state = 59}, - [1182] = {.lex_state = 59}, - [1183] = {.lex_state = 59}, - [1184] = {.lex_state = 55}, - [1185] = {.lex_state = 59}, - [1186] = {.lex_state = 59}, - [1187] = {.lex_state = 59}, - [1188] = {.lex_state = 59}, - [1189] = {.lex_state = 59}, - [1190] = {.lex_state = 59}, - [1191] = {.lex_state = 59}, - [1192] = {.lex_state = 59}, - [1193] = {.lex_state = 59}, - [1194] = {.lex_state = 55}, - [1195] = {.lex_state = 55}, - [1196] = {.lex_state = 55}, - [1197] = {.lex_state = 59}, - [1198] = {.lex_state = 59}, - [1199] = {.lex_state = 59}, - [1200] = {.lex_state = 59}, - [1201] = {.lex_state = 59}, - [1202] = {.lex_state = 59}, - [1203] = {.lex_state = 59}, - [1204] = {.lex_state = 59}, - [1205] = {.lex_state = 59}, - [1206] = {.lex_state = 59}, + [1180] = {.lex_state = 65}, + [1181] = {.lex_state = 65}, + [1182] = {.lex_state = 65}, + [1183] = {.lex_state = 65}, + [1184] = {.lex_state = 65}, + [1185] = {.lex_state = 65}, + [1186] = {.lex_state = 65}, + [1187] = {.lex_state = 65}, + [1188] = {.lex_state = 65}, + [1189] = {.lex_state = 65}, + [1190] = {.lex_state = 65}, + [1191] = {.lex_state = 65}, + [1192] = {.lex_state = 65}, + [1193] = {.lex_state = 65}, + [1194] = {.lex_state = 65}, + [1195] = {.lex_state = 65}, + [1196] = {.lex_state = 65}, + [1197] = {.lex_state = 65}, + [1198] = {.lex_state = 65}, + [1199] = {.lex_state = 53}, + [1200] = {.lex_state = 65}, + [1201] = {.lex_state = 65}, + [1202] = {.lex_state = 65}, + [1203] = {.lex_state = 65}, + [1204] = {.lex_state = 65}, + [1205] = {.lex_state = 65}, + [1206] = {.lex_state = 65}, [1207] = {.lex_state = 59}, - [1208] = {.lex_state = 55}, - [1209] = {.lex_state = 55}, - [1210] = {.lex_state = 59}, - [1211] = {.lex_state = 59}, - [1212] = {.lex_state = 53}, - [1213] = {.lex_state = 59}, - [1214] = {.lex_state = 59}, - [1215] = {.lex_state = 59}, - [1216] = {.lex_state = 55}, + [1208] = {.lex_state = 59}, + [1209] = {.lex_state = 59}, + [1210] = {.lex_state = 65}, + [1211] = {.lex_state = 65}, + [1212] = {.lex_state = 65}, + [1213] = {.lex_state = 65}, + [1214] = {.lex_state = 65}, + [1215] = {.lex_state = 65}, + [1216] = {.lex_state = 65}, [1217] = {.lex_state = 59}, [1218] = {.lex_state = 59}, [1219] = {.lex_state = 59}, - [1220] = {.lex_state = 53}, - [1221] = {.lex_state = 55}, - [1222] = {.lex_state = 59}, - [1223] = {.lex_state = 53}, - [1224] = {.lex_state = 59}, - [1225] = {.lex_state = 53}, - [1226] = {.lex_state = 53}, - [1227] = {.lex_state = 59}, - [1228] = {.lex_state = 53}, - [1229] = {.lex_state = 53}, - [1230] = {.lex_state = 59}, + [1220] = {.lex_state = 65}, + [1221] = {.lex_state = 65}, + [1222] = {.lex_state = 65}, + [1223] = {.lex_state = 65}, + [1224] = {.lex_state = 65}, + [1225] = {.lex_state = 65}, + [1226] = {.lex_state = 65}, + [1227] = {.lex_state = 65}, + [1228] = {.lex_state = 65}, + [1229] = {.lex_state = 65}, + [1230] = {.lex_state = 65}, [1231] = {.lex_state = 59}, - [1232] = {.lex_state = 53}, - [1233] = {.lex_state = 53}, - [1234] = {.lex_state = 59}, - [1235] = {.lex_state = 59}, + [1232] = {.lex_state = 50}, + [1233] = {.lex_state = 59}, + [1234] = {.lex_state = 53}, + [1235] = {.lex_state = 65}, [1236] = {.lex_state = 59}, - [1237] = {.lex_state = 59}, - [1238] = {.lex_state = 59}, - [1239] = {.lex_state = 59}, - [1240] = {.lex_state = 59}, - [1241] = {.lex_state = 59}, - [1242] = {.lex_state = 53}, - [1243] = {.lex_state = 59}, - [1244] = {.lex_state = 59}, + [1237] = {.lex_state = 53}, + [1238] = {.lex_state = 57}, + [1239] = {.lex_state = 57}, + [1240] = {.lex_state = 53}, + [1241] = {.lex_state = 57}, + [1242] = {.lex_state = 65}, + [1243] = {.lex_state = 65}, + [1244] = {.lex_state = 53}, [1245] = {.lex_state = 53}, - [1246] = {.lex_state = 59}, - [1247] = {.lex_state = 59}, - [1248] = {.lex_state = 59}, - [1249] = {.lex_state = 59}, - [1250] = {.lex_state = 53}, - [1251] = {.lex_state = 59}, - [1252] = {.lex_state = 59}, - [1253] = {.lex_state = 53}, - [1254] = {.lex_state = 53}, - [1255] = {.lex_state = 59}, - [1256] = {.lex_state = 53}, - [1257] = {.lex_state = 59}, - [1258] = {.lex_state = 53}, - [1259] = {.lex_state = 53}, - [1260] = {.lex_state = 59}, - [1261] = {.lex_state = 53}, - [1262] = {.lex_state = 53}, - [1263] = {.lex_state = 59}, - [1264] = {.lex_state = 53}, - [1265] = {.lex_state = 59}, - [1266] = {.lex_state = 59}, - [1267] = {.lex_state = 59}, - [1268] = {.lex_state = 59}, - [1269] = {.lex_state = 59}, - [1270] = {.lex_state = 59}, - [1271] = {.lex_state = 59}, - [1272] = {.lex_state = 55}, - [1273] = {.lex_state = 59}, - [1274] = {.lex_state = 59}, - [1275] = {.lex_state = 59}, - [1276] = {.lex_state = 59}, - [1277] = {.lex_state = 59}, - [1278] = {.lex_state = 59}, - [1279] = {.lex_state = 59}, - [1280] = {.lex_state = 59}, - [1281] = {.lex_state = 59}, - [1282] = {.lex_state = 53}, - [1283] = {.lex_state = 59}, - [1284] = {.lex_state = 59}, - [1285] = {.lex_state = 59}, - [1286] = {.lex_state = 53}, - [1287] = {.lex_state = 59}, - [1288] = {.lex_state = 53}, - [1289] = {.lex_state = 59}, - [1290] = {.lex_state = 59}, - [1291] = {.lex_state = 53}, - [1292] = {.lex_state = 59}, - [1293] = {.lex_state = 59}, - [1294] = {.lex_state = 53}, - [1295] = {.lex_state = 55}, - [1296] = {.lex_state = 59}, + [1246] = {.lex_state = 53}, + [1247] = {.lex_state = 53}, + [1248] = {.lex_state = 65}, + [1249] = {.lex_state = 53}, + [1250] = {.lex_state = 65}, + [1251] = {.lex_state = 55}, + [1252] = {.lex_state = 65}, + [1253] = {.lex_state = 65}, + [1254] = {.lex_state = 65}, + [1255] = {.lex_state = 65}, + [1256] = {.lex_state = 65}, + [1257] = {.lex_state = 65}, + [1258] = {.lex_state = 65}, + [1259] = {.lex_state = 65}, + [1260] = {.lex_state = 65}, + [1261] = {.lex_state = 65}, + [1262] = {.lex_state = 65}, + [1263] = {.lex_state = 65}, + [1264] = {.lex_state = 65}, + [1265] = {.lex_state = 65}, + [1266] = {.lex_state = 65}, + [1267] = {.lex_state = 65}, + [1268] = {.lex_state = 65}, + [1269] = {.lex_state = 65}, + [1270] = {.lex_state = 65}, + [1271] = {.lex_state = 65}, + [1272] = {.lex_state = 65}, + [1273] = {.lex_state = 65}, + [1274] = {.lex_state = 65}, + [1275] = {.lex_state = 65}, + [1276] = {.lex_state = 57}, + [1277] = {.lex_state = 57}, + [1278] = {.lex_state = 57}, + [1279] = {.lex_state = 65}, + [1280] = {.lex_state = 65}, + [1281] = {.lex_state = 57}, + [1282] = {.lex_state = 65}, + [1283] = {.lex_state = 65}, + [1284] = {.lex_state = 65}, + [1285] = {.lex_state = 65}, + [1286] = {.lex_state = 65}, + [1287] = {.lex_state = 65}, + [1288] = {.lex_state = 65}, + [1289] = {.lex_state = 65}, + [1290] = {.lex_state = 65}, + [1291] = {.lex_state = 65}, + [1292] = {.lex_state = 65}, + [1293] = {.lex_state = 65}, + [1294] = {.lex_state = 65}, + [1295] = {.lex_state = 59}, + [1296] = {.lex_state = 65}, [1297] = {.lex_state = 59}, [1298] = {.lex_state = 59}, - [1299] = {.lex_state = 59}, - [1300] = {.lex_state = 53}, - [1301] = {.lex_state = 53}, - [1302] = {.lex_state = 59}, - [1303] = {.lex_state = 59}, - [1304] = {.lex_state = 59}, - [1305] = {.lex_state = 59}, - [1306] = {.lex_state = 59}, - [1307] = {.lex_state = 59}, - [1308] = {.lex_state = 59}, - [1309] = {.lex_state = 59}, - [1310] = {.lex_state = 59}, - [1311] = {.lex_state = 59}, - [1312] = {.lex_state = 59}, - [1313] = {.lex_state = 59}, - [1314] = {.lex_state = 59}, - [1315] = {.lex_state = 59}, - [1316] = {.lex_state = 59}, - [1317] = {.lex_state = 53}, - [1318] = {.lex_state = 59}, - [1319] = {.lex_state = 59}, - [1320] = {.lex_state = 59}, - [1321] = {.lex_state = 59}, - [1322] = {.lex_state = 59}, - [1323] = {.lex_state = 59}, - [1324] = {.lex_state = 59}, - [1325] = {.lex_state = 59}, - [1326] = {.lex_state = 59}, - [1327] = {.lex_state = 59}, - [1328] = {.lex_state = 59}, - [1329] = {.lex_state = 59}, - [1330] = {.lex_state = 59}, - [1331] = {.lex_state = 59}, - [1332] = {.lex_state = 59}, - [1333] = {.lex_state = 59}, - [1334] = {.lex_state = 59}, - [1335] = {.lex_state = 59}, - [1336] = {.lex_state = 59}, - [1337] = {.lex_state = 59}, - [1338] = {.lex_state = 59}, - [1339] = {.lex_state = 59}, - [1340] = {.lex_state = 59}, - [1341] = {.lex_state = 59}, - [1342] = {.lex_state = 59}, - [1343] = {.lex_state = 59}, - [1344] = {.lex_state = 59}, - [1345] = {.lex_state = 59}, - [1346] = {.lex_state = 59}, - [1347] = {.lex_state = 59}, - [1348] = {.lex_state = 59}, - [1349] = {.lex_state = 59}, - [1350] = {.lex_state = 59}, - [1351] = {.lex_state = 59}, - [1352] = {.lex_state = 59}, - [1353] = {.lex_state = 59}, - [1354] = {.lex_state = 59}, - [1355] = {.lex_state = 59}, - [1356] = {.lex_state = 59}, - [1357] = {.lex_state = 59}, - [1358] = {.lex_state = 59}, - [1359] = {.lex_state = 59}, - [1360] = {.lex_state = 59}, - [1361] = {.lex_state = 59}, - [1362] = {.lex_state = 59}, - [1363] = {.lex_state = 59}, - [1364] = {.lex_state = 59}, - [1365] = {.lex_state = 59}, - [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 59}, - [1368] = {.lex_state = 59}, - [1369] = {.lex_state = 59}, - [1370] = {.lex_state = 59}, - [1371] = {.lex_state = 59}, - [1372] = {.lex_state = 59}, - [1373] = {.lex_state = 59}, - [1374] = {.lex_state = 59}, - [1375] = {.lex_state = 59}, - [1376] = {.lex_state = 59}, - [1377] = {.lex_state = 59}, - [1378] = {.lex_state = 59}, - [1379] = {.lex_state = 59}, - [1380] = {.lex_state = 59}, - [1381] = {.lex_state = 59}, - [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 59}, - [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 59}, - [1386] = {.lex_state = 59}, - [1387] = {.lex_state = 59}, - [1388] = {.lex_state = 59}, - [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 59}, - [1392] = {.lex_state = 59}, - [1393] = {.lex_state = 59}, - [1394] = {.lex_state = 59}, - [1395] = {.lex_state = 59}, - [1396] = {.lex_state = 59}, - [1397] = {.lex_state = 59}, - [1398] = {.lex_state = 59}, - [1399] = {.lex_state = 59}, - [1400] = {.lex_state = 59}, - [1401] = {.lex_state = 59}, - [1402] = {.lex_state = 59}, - [1403] = {.lex_state = 59}, - [1404] = {.lex_state = 59}, - [1405] = {.lex_state = 59}, - [1406] = {.lex_state = 59}, - [1407] = {.lex_state = 59}, - [1408] = {.lex_state = 59}, - [1409] = {.lex_state = 59}, - [1410] = {.lex_state = 59}, - [1411] = {.lex_state = 59}, - [1412] = {.lex_state = 59}, - [1413] = {.lex_state = 59}, - [1414] = {.lex_state = 59}, - [1415] = {.lex_state = 59}, - [1416] = {.lex_state = 59}, - [1417] = {.lex_state = 59}, - [1418] = {.lex_state = 59}, - [1419] = {.lex_state = 59}, - [1420] = {.lex_state = 59}, - [1421] = {.lex_state = 59}, - [1422] = {.lex_state = 59}, - [1423] = {.lex_state = 59}, - [1424] = {.lex_state = 59}, - [1425] = {.lex_state = 59}, + [1299] = {.lex_state = 65}, + [1300] = {.lex_state = 65}, + [1301] = {.lex_state = 65}, + [1302] = {.lex_state = 65}, + [1303] = {.lex_state = 65}, + [1304] = {.lex_state = 65}, + [1305] = {.lex_state = 65}, + [1306] = {.lex_state = 65}, + [1307] = {.lex_state = 65}, + [1308] = {.lex_state = 65}, + [1309] = {.lex_state = 65}, + [1310] = {.lex_state = 65}, + [1311] = {.lex_state = 65}, + [1312] = {.lex_state = 65}, + [1313] = {.lex_state = 65}, + [1314] = {.lex_state = 65}, + [1315] = {.lex_state = 65}, + [1316] = {.lex_state = 65}, + [1317] = {.lex_state = 50}, + [1318] = {.lex_state = 65}, + [1319] = {.lex_state = 65}, + [1320] = {.lex_state = 65}, + [1321] = {.lex_state = 65}, + [1322] = {.lex_state = 65}, + [1323] = {.lex_state = 50}, + [1324] = {.lex_state = 65}, + [1325] = {.lex_state = 65}, + [1326] = {.lex_state = 65}, + [1327] = {.lex_state = 65}, + [1328] = {.lex_state = 50}, + [1329] = {.lex_state = 65}, + [1330] = {.lex_state = 65}, + [1331] = {.lex_state = 65}, + [1332] = {.lex_state = 50}, + [1333] = {.lex_state = 65}, + [1334] = {.lex_state = 65}, + [1335] = {.lex_state = 50}, + [1336] = {.lex_state = 65}, + [1337] = {.lex_state = 65}, + [1338] = {.lex_state = 65}, + [1339] = {.lex_state = 65}, + [1340] = {.lex_state = 50}, + [1341] = {.lex_state = 52}, + [1342] = {.lex_state = 50}, + [1343] = {.lex_state = 65}, + [1344] = {.lex_state = 65}, + [1345] = {.lex_state = 65}, + [1346] = {.lex_state = 65}, + [1347] = {.lex_state = 50}, + [1348] = {.lex_state = 65}, + [1349] = {.lex_state = 65}, + [1350] = {.lex_state = 52}, + [1351] = {.lex_state = 52}, + [1352] = {.lex_state = 65}, + [1353] = {.lex_state = 65}, + [1354] = {.lex_state = 65}, + [1355] = {.lex_state = 65}, + [1356] = {.lex_state = 65}, + [1357] = {.lex_state = 65}, + [1358] = {.lex_state = 65}, + [1359] = {.lex_state = 52}, + [1360] = {.lex_state = 65}, + [1361] = {.lex_state = 65}, + [1362] = {.lex_state = 52}, + [1363] = {.lex_state = 65}, + [1364] = {.lex_state = 52}, + [1365] = {.lex_state = 65}, + [1366] = {.lex_state = 52}, + [1367] = {.lex_state = 65}, + [1368] = {.lex_state = 65}, + [1369] = {.lex_state = 65}, + [1370] = {.lex_state = 65}, + [1371] = {.lex_state = 65}, + [1372] = {.lex_state = 65}, + [1373] = {.lex_state = 65}, + [1374] = {.lex_state = 55}, + [1375] = {.lex_state = 65}, + [1376] = {.lex_state = 55}, + [1377] = {.lex_state = 52}, + [1378] = {.lex_state = 52}, + [1379] = {.lex_state = 57}, + [1380] = {.lex_state = 55}, + [1381] = {.lex_state = 55}, + [1382] = {.lex_state = 55}, + [1383] = {.lex_state = 65}, + [1384] = {.lex_state = 65}, + [1385] = {.lex_state = 65}, + [1386] = {.lex_state = 55}, + [1387] = {.lex_state = 65}, + [1388] = {.lex_state = 65}, + [1389] = {.lex_state = 57}, + [1390] = {.lex_state = 65}, + [1391] = {.lex_state = 57}, + [1392] = {.lex_state = 65}, + [1393] = {.lex_state = 65}, + [1394] = {.lex_state = 65}, + [1395] = {.lex_state = 57}, + [1396] = {.lex_state = 55}, + [1397] = {.lex_state = 55}, + [1398] = {.lex_state = 57}, + [1399] = {.lex_state = 57}, + [1400] = {.lex_state = 57}, + [1401] = {.lex_state = 65}, + [1402] = {.lex_state = 65}, + [1403] = {.lex_state = 57}, + [1404] = {.lex_state = 65}, + [1405] = {.lex_state = 65}, + [1406] = {.lex_state = 65}, + [1407] = {.lex_state = 65}, + [1408] = {.lex_state = 65}, + [1409] = {.lex_state = 65}, + [1410] = {.lex_state = 65}, + [1411] = {.lex_state = 65}, + [1412] = {.lex_state = 65}, + [1413] = {.lex_state = 65}, + [1414] = {.lex_state = 65}, + [1415] = {.lex_state = 65}, + [1416] = {.lex_state = 65}, + [1417] = {.lex_state = 65}, + [1418] = {.lex_state = 65}, + [1419] = {.lex_state = 65}, + [1420] = {.lex_state = 65}, + [1421] = {.lex_state = 65}, + [1422] = {.lex_state = 65}, + [1423] = {.lex_state = 65}, + [1424] = {.lex_state = 65}, + [1425] = {.lex_state = 65}, [1426] = {.lex_state = 59}, - [1427] = {.lex_state = 59}, + [1427] = {.lex_state = 39}, [1428] = {.lex_state = 59}, - [1429] = {.lex_state = 59}, - [1430] = {.lex_state = 59}, + [1429] = {.lex_state = 39}, + [1430] = {.lex_state = 93}, [1431] = {.lex_state = 59}, - [1432] = {.lex_state = 59}, + [1432] = {.lex_state = 39}, [1433] = {.lex_state = 59}, - [1434] = {.lex_state = 59}, - [1435] = {.lex_state = 59}, + [1434] = {.lex_state = 39}, + [1435] = {.lex_state = 39}, [1436] = {.lex_state = 59}, - [1437] = {.lex_state = 59}, + [1437] = {.lex_state = 39}, [1438] = {.lex_state = 59}, - [1439] = {.lex_state = 53}, - [1440] = {.lex_state = 59}, - [1441] = {.lex_state = 59}, - [1442] = {.lex_state = 59}, - [1443] = {.lex_state = 59}, - [1444] = {.lex_state = 59}, - [1445] = {.lex_state = 59}, - [1446] = {.lex_state = 59}, - [1447] = {.lex_state = 59}, - [1448] = {.lex_state = 59}, - [1449] = {.lex_state = 59}, - [1450] = {.lex_state = 59}, - [1451] = {.lex_state = 59}, - [1452] = {.lex_state = 59}, - [1453] = {.lex_state = 59}, + [1439] = {.lex_state = 43}, + [1440] = {.lex_state = 61}, + [1441] = {.lex_state = 93}, + [1442] = {.lex_state = 61}, + [1443] = {.lex_state = 93}, + [1444] = {.lex_state = 43}, + [1445] = {.lex_state = 39}, + [1446] = {.lex_state = 93}, + [1447] = {.lex_state = 39}, + [1448] = {.lex_state = 93}, + [1449] = {.lex_state = 93}, + [1450] = {.lex_state = 93}, + [1451] = {.lex_state = 39}, + [1452] = {.lex_state = 39}, + [1453] = {.lex_state = 39}, [1454] = {.lex_state = 59}, - [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 59}, - [1457] = {.lex_state = 59}, + [1455] = {.lex_state = 59}, + [1456] = {.lex_state = 61}, + [1457] = {.lex_state = 61}, [1458] = {.lex_state = 59}, - [1459] = {.lex_state = 59}, + [1459] = {.lex_state = 61}, [1460] = {.lex_state = 59}, [1461] = {.lex_state = 59}, [1462] = {.lex_state = 59}, - [1463] = {.lex_state = 59}, - [1464] = {.lex_state = 59}, + [1463] = {.lex_state = 39}, + [1464] = {.lex_state = 61}, [1465] = {.lex_state = 59}, [1466] = {.lex_state = 59}, [1467] = {.lex_state = 59}, - [1468] = {.lex_state = 59}, - [1469] = {.lex_state = 53}, + [1468] = {.lex_state = 39}, + [1469] = {.lex_state = 63}, [1470] = {.lex_state = 59}, - [1471] = {.lex_state = 53}, + [1471] = {.lex_state = 43}, [1472] = {.lex_state = 59}, [1473] = {.lex_state = 59}, - [1474] = {.lex_state = 59}, - [1475] = {.lex_state = 59}, - [1476] = {.lex_state = 59}, - [1477] = {.lex_state = 53}, + [1474] = {.lex_state = 43}, + [1475] = {.lex_state = 43}, + [1476] = {.lex_state = 43}, + [1477] = {.lex_state = 59}, [1478] = {.lex_state = 59}, [1479] = {.lex_state = 59}, [1480] = {.lex_state = 59}, - [1481] = {.lex_state = 53}, - [1482] = {.lex_state = 53}, + [1481] = {.lex_state = 43}, + [1482] = {.lex_state = 43}, [1483] = {.lex_state = 59}, - [1484] = {.lex_state = 53}, + [1484] = {.lex_state = 93}, [1485] = {.lex_state = 59}, [1486] = {.lex_state = 59}, - [1487] = {.lex_state = 59}, - [1488] = {.lex_state = 59}, - [1489] = {.lex_state = 59}, + [1487] = {.lex_state = 43}, + [1488] = {.lex_state = 43}, + [1489] = {.lex_state = 93}, [1490] = {.lex_state = 59}, - [1491] = {.lex_state = 59}, + [1491] = {.lex_state = 43}, [1492] = {.lex_state = 59}, - [1493] = {.lex_state = 59}, - [1494] = {.lex_state = 59}, - [1495] = {.lex_state = 59}, - [1496] = {.lex_state = 53}, - [1497] = {.lex_state = 53}, + [1493] = {.lex_state = 43}, + [1494] = {.lex_state = 43}, + [1495] = {.lex_state = 43}, + [1496] = {.lex_state = 43}, + [1497] = {.lex_state = 59}, [1498] = {.lex_state = 59}, [1499] = {.lex_state = 59}, - [1500] = {.lex_state = 59}, - [1501] = {.lex_state = 59}, - [1502] = {.lex_state = 59}, - [1503] = {.lex_state = 53}, - [1504] = {.lex_state = 59}, - [1505] = {.lex_state = 53}, - [1506] = {.lex_state = 53}, + [1500] = {.lex_state = 43}, + [1501] = {.lex_state = 39}, + [1502] = {.lex_state = 61}, + [1503] = {.lex_state = 59}, + [1504] = {.lex_state = 43}, + [1505] = {.lex_state = 61}, + [1506] = {.lex_state = 59}, [1507] = {.lex_state = 59}, [1508] = {.lex_state = 59}, - [1509] = {.lex_state = 59}, - [1510] = {.lex_state = 53}, - [1511] = {.lex_state = 59}, - [1512] = {.lex_state = 53}, - [1513] = {.lex_state = 53}, - [1514] = {.lex_state = 59}, - [1515] = {.lex_state = 59}, - [1516] = {.lex_state = 59}, - [1517] = {.lex_state = 55}, - [1518] = {.lex_state = 59}, - [1519] = {.lex_state = 59}, - [1520] = {.lex_state = 59}, - [1521] = {.lex_state = 53}, + [1509] = {.lex_state = 93}, + [1510] = {.lex_state = 40}, + [1511] = {.lex_state = 40}, + [1512] = {.lex_state = 39}, + [1513] = {.lex_state = 40}, + [1514] = {.lex_state = 40}, + [1515] = {.lex_state = 93}, + [1516] = {.lex_state = 93}, + [1517] = {.lex_state = 40}, + [1518] = {.lex_state = 40}, + [1519] = {.lex_state = 93}, + [1520] = {.lex_state = 40}, + [1521] = {.lex_state = 40}, [1522] = {.lex_state = 59}, [1523] = {.lex_state = 59}, - [1524] = {.lex_state = 59}, - [1525] = {.lex_state = 59}, - [1526] = {.lex_state = 55}, - [1527] = {.lex_state = 59}, - [1528] = {.lex_state = 59}, + [1524] = {.lex_state = 40}, + [1525] = {.lex_state = 40}, + [1526] = {.lex_state = 59}, + [1527] = {.lex_state = 40}, + [1528] = {.lex_state = 61}, [1529] = {.lex_state = 59}, - [1530] = {.lex_state = 55}, + [1530] = {.lex_state = 40}, [1531] = {.lex_state = 59}, - [1532] = {.lex_state = 59}, + [1532] = {.lex_state = 40}, [1533] = {.lex_state = 59}, [1534] = {.lex_state = 59}, - [1535] = {.lex_state = 59}, - [1536] = {.lex_state = 59}, + [1535] = {.lex_state = 40}, + [1536] = {.lex_state = 40}, [1537] = {.lex_state = 59}, [1538] = {.lex_state = 59}, - [1539] = {.lex_state = 59}, - [1540] = {.lex_state = 59}, - [1541] = {.lex_state = 59}, + [1539] = {.lex_state = 93}, + [1540] = {.lex_state = 39}, + [1541] = {.lex_state = 40}, [1542] = {.lex_state = 59}, - [1543] = {.lex_state = 59}, - [1544] = {.lex_state = 59}, - [1545] = {.lex_state = 59}, - [1546] = {.lex_state = 53}, - [1547] = {.lex_state = 53}, + [1543] = {.lex_state = 93}, + [1544] = {.lex_state = 93}, + [1545] = {.lex_state = 93}, + [1546] = {.lex_state = 93}, + [1547] = {.lex_state = 43}, [1548] = {.lex_state = 59}, - [1549] = {.lex_state = 59}, - [1550] = {.lex_state = 59}, - [1551] = {.lex_state = 59}, - [1552] = {.lex_state = 59}, - [1553] = {.lex_state = 55}, - [1554] = {.lex_state = 59}, - [1555] = {.lex_state = 59}, - [1556] = {.lex_state = 55}, - [1557] = {.lex_state = 59}, - [1558] = {.lex_state = 55}, - [1559] = {.lex_state = 55}, - [1560] = {.lex_state = 59}, + [1549] = {.lex_state = 93}, + [1550] = {.lex_state = 39}, + [1551] = {.lex_state = 39}, + [1552] = {.lex_state = 43}, + [1553] = {.lex_state = 93}, + [1554] = {.lex_state = 93}, + [1555] = {.lex_state = 93}, + [1556] = {.lex_state = 39}, + [1557] = {.lex_state = 93}, + [1558] = {.lex_state = 93}, + [1559] = {.lex_state = 59}, + [1560] = {.lex_state = 93}, [1561] = {.lex_state = 59}, [1562] = {.lex_state = 59}, - [1563] = {.lex_state = 55}, - [1564] = {.lex_state = 55}, - [1565] = {.lex_state = 59}, - [1566] = {.lex_state = 59}, - [1567] = {.lex_state = 59}, - [1568] = {.lex_state = 55}, + [1563] = {.lex_state = 40}, + [1564] = {.lex_state = 59}, + [1565] = {.lex_state = 40}, + [1566] = {.lex_state = 63}, + [1567] = {.lex_state = 63}, + [1568] = {.lex_state = 59}, [1569] = {.lex_state = 59}, - [1570] = {.lex_state = 59}, - [1571] = {.lex_state = 55}, - [1572] = {.lex_state = 59}, - [1573] = {.lex_state = 59}, - [1574] = {.lex_state = 59}, + [1570] = {.lex_state = 93}, + [1571] = {.lex_state = 93}, + [1572] = {.lex_state = 93}, + [1573] = {.lex_state = 93}, + [1574] = {.lex_state = 63}, [1575] = {.lex_state = 59}, [1576] = {.lex_state = 59}, [1577] = {.lex_state = 59}, - [1578] = {.lex_state = 53}, - [1579] = {.lex_state = 59}, - [1580] = {.lex_state = 59}, - [1581] = {.lex_state = 53}, - [1582] = {.lex_state = 53}, - [1583] = {.lex_state = 53}, - [1584] = {.lex_state = 50}, - [1585] = {.lex_state = 53}, - [1586] = {.lex_state = 57}, - [1587] = {.lex_state = 57}, - [1588] = {.lex_state = 39}, - [1589] = {.lex_state = 53}, - [1590] = {.lex_state = 50}, - [1591] = {.lex_state = 45}, - [1592] = {.lex_state = 53}, - [1593] = {.lex_state = 53}, - [1594] = {.lex_state = 39}, - [1595] = {.lex_state = 50}, - [1596] = {.lex_state = 50}, - [1597] = {.lex_state = 39}, - [1598] = {.lex_state = 50}, - [1599] = {.lex_state = 51}, - [1600] = {.lex_state = 51}, - [1601] = {.lex_state = 50}, - [1602] = {.lex_state = 50}, - [1603] = {.lex_state = 53}, - [1604] = {.lex_state = 50}, - [1605] = {.lex_state = 45}, - [1606] = {.lex_state = 39}, - [1607] = {.lex_state = 50}, - [1608] = {.lex_state = 53}, - [1609] = {.lex_state = 39}, - [1610] = {.lex_state = 39}, - [1611] = {.lex_state = 53}, - [1612] = {.lex_state = 39}, - [1613] = {.lex_state = 39}, - [1614] = {.lex_state = 45}, - [1615] = {.lex_state = 39}, - [1616] = {.lex_state = 55}, - [1617] = {.lex_state = 39}, - [1618] = {.lex_state = 39}, - [1619] = {.lex_state = 55}, - [1620] = {.lex_state = 53}, - [1621] = {.lex_state = 39}, - [1622] = {.lex_state = 60}, - [1623] = {.lex_state = 60}, - [1624] = {.lex_state = 53}, - [1625] = {.lex_state = 53}, - [1626] = {.lex_state = 51}, - [1627] = {.lex_state = 53}, - [1628] = {.lex_state = 53}, - [1629] = {.lex_state = 51}, - [1630] = {.lex_state = 45}, - [1631] = {.lex_state = 50}, - [1632] = {.lex_state = 55}, - [1633] = {.lex_state = 53}, - [1634] = {.lex_state = 50}, - [1635] = {.lex_state = 55}, - [1636] = {.lex_state = 51}, - [1637] = {.lex_state = 53}, - [1638] = {.lex_state = 53}, - [1639] = {.lex_state = 55}, - [1640] = {.lex_state = 53}, - [1641] = {.lex_state = 53}, - [1642] = {.lex_state = 55}, - [1643] = {.lex_state = 45}, - [1644] = {.lex_state = 53}, - [1645] = {.lex_state = 55}, - [1646] = {.lex_state = 55}, - [1647] = {.lex_state = 53}, - [1648] = {.lex_state = 45}, - [1649] = {.lex_state = 55}, - [1650] = {.lex_state = 55}, - [1651] = {.lex_state = 55}, - [1652] = {.lex_state = 55}, - [1653] = {.lex_state = 53}, - [1654] = {.lex_state = 53}, - [1655] = {.lex_state = 53}, - [1656] = {.lex_state = 43}, - [1657] = {.lex_state = 53}, - [1658] = {.lex_state = 53}, - [1659] = {.lex_state = 53}, - [1660] = {.lex_state = 43}, - [1661] = {.lex_state = 47}, - [1662] = {.lex_state = 43}, - [1663] = {.lex_state = 47}, - [1664] = {.lex_state = 47}, - [1665] = {.lex_state = 47}, - [1666] = {.lex_state = 53}, - [1667] = {.lex_state = 57}, - [1668] = {.lex_state = 51}, - [1669] = {.lex_state = 47}, - [1670] = {.lex_state = 47}, - [1671] = {.lex_state = 47}, - [1672] = {.lex_state = 43}, - [1673] = {.lex_state = 47}, - [1674] = {.lex_state = 51}, - [1675] = {.lex_state = 43}, - [1676] = {.lex_state = 47}, - [1677] = {.lex_state = 51}, - [1678] = {.lex_state = 53}, - [1679] = {.lex_state = 53}, - [1680] = {.lex_state = 53}, - [1681] = {.lex_state = 47}, - [1682] = {.lex_state = 47}, - [1683] = {.lex_state = 47}, - [1684] = {.lex_state = 53}, - [1685] = {.lex_state = 43}, - [1686] = {.lex_state = 47}, - [1687] = {.lex_state = 43}, - [1688] = {.lex_state = 51}, - [1689] = {.lex_state = 45}, - [1690] = {.lex_state = 57}, - [1691] = {.lex_state = 43}, - [1692] = {.lex_state = 43}, - [1693] = {.lex_state = 43}, - [1694] = {.lex_state = 51}, - [1695] = {.lex_state = 55}, - [1696] = {.lex_state = 45}, - [1697] = {.lex_state = 50}, - [1698] = {.lex_state = 51}, - [1699] = {.lex_state = 45}, - [1700] = {.lex_state = 43}, - [1701] = {.lex_state = 53}, - [1702] = {.lex_state = 53}, - [1703] = {.lex_state = 53}, - [1704] = {.lex_state = 53}, - [1705] = {.lex_state = 53}, - [1706] = {.lex_state = 50}, - [1707] = {.lex_state = 53}, - [1708] = {.lex_state = 51}, - [1709] = {.lex_state = 50}, - [1710] = {.lex_state = 53}, - [1711] = {.lex_state = 53}, - [1712] = {.lex_state = 45}, - [1713] = {.lex_state = 53}, - [1714] = {.lex_state = 45}, - [1715] = {.lex_state = 45}, - [1716] = {.lex_state = 45}, - [1717] = {.lex_state = 60}, - [1718] = {.lex_state = 43}, - [1719] = {.lex_state = 50}, - [1720] = {.lex_state = 43}, - [1721] = {.lex_state = 55}, - [1722] = {.lex_state = 45}, - [1723] = {.lex_state = 50}, - [1724] = {.lex_state = 43}, - [1725] = {.lex_state = 45}, - [1726] = {.lex_state = 43}, - [1727] = {.lex_state = 43}, - [1728] = {.lex_state = 55}, - [1729] = {.lex_state = 50}, - [1730] = {.lex_state = 53}, - [1731] = {.lex_state = 53}, - [1732] = {.lex_state = 43}, - [1733] = {.lex_state = 51}, - [1734] = {.lex_state = 53}, - [1735] = {.lex_state = 53}, - [1736] = {.lex_state = 53}, - [1737] = {.lex_state = 51}, - [1738] = {.lex_state = 53}, - [1739] = {.lex_state = 51}, - [1740] = {.lex_state = 55}, - [1741] = {.lex_state = 55}, - [1742] = {.lex_state = 51}, - [1743] = {.lex_state = 51}, - [1744] = {.lex_state = 53}, - [1745] = {.lex_state = 53}, - [1746] = {.lex_state = 53}, - [1747] = {.lex_state = 53}, - [1748] = {.lex_state = 53}, - [1749] = {.lex_state = 53}, - [1750] = {.lex_state = 47}, - [1751] = {.lex_state = 53}, - [1752] = {.lex_state = 55}, - [1753] = {.lex_state = 55}, - [1754] = {.lex_state = 47}, - [1755] = {.lex_state = 53}, - [1756] = {.lex_state = 53}, - [1757] = {.lex_state = 55}, - [1758] = {.lex_state = 53}, - [1759] = {.lex_state = 45}, - [1760] = {.lex_state = 53}, - [1761] = {.lex_state = 53}, - [1762] = {.lex_state = 47}, - [1763] = {.lex_state = 53}, - [1764] = {.lex_state = 47}, - [1765] = {.lex_state = 55}, - [1766] = {.lex_state = 53}, - [1767] = {.lex_state = 45}, - [1768] = {.lex_state = 60}, - [1769] = {.lex_state = 53}, - [1770] = {.lex_state = 53}, - [1771] = {.lex_state = 58}, - [1772] = {.lex_state = 41}, - [1773] = {.lex_state = 48}, - [1774] = {.lex_state = 49}, - [1775] = {.lex_state = 49}, - [1776] = {.lex_state = 49}, - [1777] = {.lex_state = 49}, - [1778] = {.lex_state = 49}, - [1779] = {.lex_state = 35}, - [1780] = {.lex_state = 52}, - [1781] = {.lex_state = 52}, - [1782] = {.lex_state = 48}, - [1783] = {.lex_state = 35}, - [1784] = {.lex_state = 35}, - [1785] = {.lex_state = 46}, - [1786] = {.lex_state = 35}, - [1787] = {.lex_state = 49}, - [1788] = {.lex_state = 52}, - [1789] = {.lex_state = 35}, - [1790] = {.lex_state = 35}, - [1791] = {.lex_state = 52}, - [1792] = {.lex_state = 35}, - [1793] = {.lex_state = 46}, - [1794] = {.lex_state = 49}, - [1795] = {.lex_state = 48}, - [1796] = {.lex_state = 49}, - [1797] = {.lex_state = 46}, - [1798] = {.lex_state = 46}, - [1799] = {.lex_state = 62}, - [1800] = {.lex_state = 46}, - [1801] = {.lex_state = 49}, - [1802] = {.lex_state = 48}, - [1803] = {.lex_state = 46}, - [1804] = {.lex_state = 48}, - [1805] = {.lex_state = 46}, - [1806] = {.lex_state = 48}, - [1807] = {.lex_state = 33}, - [1808] = {.lex_state = 48}, - [1809] = {.lex_state = 35}, - [1810] = {.lex_state = 46}, - [1811] = {.lex_state = 46}, - [1812] = {.lex_state = 58}, - [1813] = {.lex_state = 49}, - [1814] = {.lex_state = 61}, - [1815] = {.lex_state = 61}, - [1816] = {.lex_state = 58}, - [1817] = {.lex_state = 58}, - [1818] = {.lex_state = 46}, - [1819] = {.lex_state = 58}, - [1820] = {.lex_state = 49}, - [1821] = {.lex_state = 46}, - [1822] = {.lex_state = 58}, - [1823] = {.lex_state = 58}, - [1824] = {.lex_state = 35}, - [1825] = {.lex_state = 58}, - [1826] = {.lex_state = 58}, - [1827] = {.lex_state = 58}, - [1828] = {.lex_state = 58}, - [1829] = {.lex_state = 58}, - [1830] = {.lex_state = 41}, - [1831] = {.lex_state = 52}, - [1832] = {.lex_state = 52}, - [1833] = {.lex_state = 58}, - [1834] = {.lex_state = 36}, - [1835] = {.lex_state = 52}, - [1836] = {.lex_state = 49}, - [1837] = {.lex_state = 33}, - [1838] = {.lex_state = 33}, - [1839] = {.lex_state = 52}, - [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 36}, - [1842] = {.lex_state = 36}, - [1843] = {.lex_state = 48}, - [1844] = {.lex_state = 36}, - [1845] = {.lex_state = 52}, - [1846] = {.lex_state = 58}, - [1847] = {.lex_state = 46}, - [1848] = {.lex_state = 36}, - [1849] = {.lex_state = 36}, - [1850] = {.lex_state = 46}, - [1851] = {.lex_state = 36}, - [1852] = {.lex_state = 52}, - [1853] = {.lex_state = 36}, - [1854] = {.lex_state = 35}, - [1855] = {.lex_state = 46}, - [1856] = {.lex_state = 40}, - [1857] = {.lex_state = 35}, - [1858] = {.lex_state = 48}, - [1859] = {.lex_state = 48}, - [1860] = {.lex_state = 48}, - [1861] = {.lex_state = 52}, - [1862] = {.lex_state = 46}, - [1863] = {.lex_state = 40}, - [1864] = {.lex_state = 40}, - [1865] = {.lex_state = 46}, - [1866] = {.lex_state = 40}, - [1867] = {.lex_state = 52}, - [1868] = {.lex_state = 36}, - [1869] = {.lex_state = 46}, - [1870] = {.lex_state = 40}, - [1871] = {.lex_state = 40}, - [1872] = {.lex_state = 41}, - [1873] = {.lex_state = 40}, - [1874] = {.lex_state = 52}, - [1875] = {.lex_state = 40}, - [1876] = {.lex_state = 52}, - [1877] = {.lex_state = 33}, - [1878] = {.lex_state = 48}, - [1879] = {.lex_state = 61}, - [1880] = {.lex_state = 61}, - [1881] = {.lex_state = 35}, - [1882] = {.lex_state = 48}, - [1883] = {.lex_state = 52}, - [1884] = {.lex_state = 52}, - [1885] = {.lex_state = 33}, - [1886] = {.lex_state = 33}, - [1887] = {.lex_state = 52}, - [1888] = {.lex_state = 33}, - [1889] = {.lex_state = 33}, - [1890] = {.lex_state = 40}, - [1891] = {.lex_state = 62}, - [1892] = {.lex_state = 62}, - [1893] = {.lex_state = 62}, - [1894] = {.lex_state = 62}, - [1895] = {.lex_state = 62}, - [1896] = {.lex_state = 62}, - [1897] = {.lex_state = 62}, - [1898] = {.lex_state = 36}, - [1899] = {.lex_state = 62}, - [1900] = {.lex_state = 62}, - [1901] = {.lex_state = 36}, - [1902] = {.lex_state = 62}, - [1903] = {.lex_state = 62}, - [1904] = {.lex_state = 62}, - [1905] = {.lex_state = 41}, - [1906] = {.lex_state = 58}, - [1907] = {.lex_state = 33}, - [1908] = {.lex_state = 62}, - [1909] = {.lex_state = 33}, - [1910] = {.lex_state = 33}, - [1911] = {.lex_state = 40}, - [1912] = {.lex_state = 48}, - [1913] = {.lex_state = 33}, - [1914] = {.lex_state = 62}, - [1915] = {.lex_state = 58}, - [1916] = {.lex_state = 48}, - [1917] = {.lex_state = 41}, - [1918] = {.lex_state = 58}, - [1919] = {.lex_state = 62}, - [1920] = {.lex_state = 40}, - [1921] = {.lex_state = 49}, - [1922] = {.lex_state = 41}, - [1923] = {.lex_state = 40}, - [1924] = {.lex_state = 49}, - [1925] = {.lex_state = 36}, - [1926] = {.lex_state = 49}, - [1927] = {.lex_state = 62}, - [1928] = {.lex_state = 41}, - [1929] = {.lex_state = 41}, - [1930] = {.lex_state = 41}, - [1931] = {.lex_state = 49}, - [1932] = {.lex_state = 41}, - [1933] = {.lex_state = 49}, - [1934] = {.lex_state = 48}, - [1935] = {.lex_state = 41}, - [1936] = {.lex_state = 41}, - [1937] = {.lex_state = 59}, - [1938] = {.lex_state = 64}, - [1939] = {.lex_state = 63}, - [1940] = {.lex_state = 63}, - [1941] = {.lex_state = 38}, - [1942] = {.lex_state = 63}, - [1943] = {.lex_state = 53}, - [1944] = {.lex_state = 63}, - [1945] = {.lex_state = 53}, - [1946] = {.lex_state = 63}, - [1947] = {.lex_state = 38}, - [1948] = {.lex_state = 66}, - [1949] = {.lex_state = 66}, - [1950] = {.lex_state = 63}, - [1951] = {.lex_state = 38}, - [1952] = {.lex_state = 53}, - [1953] = {.lex_state = 59}, - [1954] = {.lex_state = 63}, - [1955] = {.lex_state = 63}, - [1956] = {.lex_state = 38}, - [1957] = {.lex_state = 42}, - [1958] = {.lex_state = 66}, - [1959] = {.lex_state = 66}, - [1960] = {.lex_state = 53}, - [1961] = {.lex_state = 53}, - [1962] = {.lex_state = 34}, - [1963] = {.lex_state = 53}, - [1964] = {.lex_state = 63}, - [1965] = {.lex_state = 63}, - [1966] = {.lex_state = 42}, - [1967] = {.lex_state = 59}, - [1968] = {.lex_state = 53}, - [1969] = {.lex_state = 38}, - [1970] = {.lex_state = 34}, - [1971] = {.lex_state = 59}, - [1972] = {.lex_state = 63}, - [1973] = {.lex_state = 38}, - [1974] = {.lex_state = 59}, - [1975] = {.lex_state = 63}, - [1976] = {.lex_state = 63}, - [1977] = {.lex_state = 38}, - [1978] = {.lex_state = 53}, - [1979] = {.lex_state = 59}, - [1980] = {.lex_state = 37}, - [1981] = {.lex_state = 42}, - [1982] = {.lex_state = 37}, - [1983] = {.lex_state = 64}, - [1984] = {.lex_state = 37}, - [1985] = {.lex_state = 53}, - [1986] = {.lex_state = 38}, - [1987] = {.lex_state = 59}, - [1988] = {.lex_state = 63}, - [1989] = {.lex_state = 37}, - [1990] = {.lex_state = 59}, - [1991] = {.lex_state = 42}, - [1992] = {.lex_state = 42}, - [1993] = {.lex_state = 42}, - [1994] = {.lex_state = 38}, - [1995] = {.lex_state = 59}, - [1996] = {.lex_state = 42}, - [1997] = {.lex_state = 59}, - [1998] = {.lex_state = 42}, - [1999] = {.lex_state = 53}, - [2000] = {.lex_state = 63}, - [2001] = {.lex_state = 53}, - [2002] = {.lex_state = 53}, - [2003] = {.lex_state = 64}, - [2004] = {.lex_state = 63}, - [2005] = {.lex_state = 64}, - [2006] = {.lex_state = 64}, - [2007] = {.lex_state = 34}, - [2008] = {.lex_state = 37}, - [2009] = {.lex_state = 53}, - [2010] = {.lex_state = 53}, - [2011] = {.lex_state = 64}, - [2012] = {.lex_state = 53}, - [2013] = {.lex_state = 53}, - [2014] = {.lex_state = 59}, - [2015] = {.lex_state = 42}, - [2016] = {.lex_state = 53}, - [2017] = {.lex_state = 34}, - [2018] = {.lex_state = 53}, - [2019] = {.lex_state = 64}, - [2020] = {.lex_state = 37}, - [2021] = {.lex_state = 53}, - [2022] = {.lex_state = 59}, - [2023] = {.lex_state = 53}, - [2024] = {.lex_state = 63}, - [2025] = {.lex_state = 38}, - [2026] = {.lex_state = 34}, - [2027] = {.lex_state = 42}, - [2028] = {.lex_state = 34}, - [2029] = {.lex_state = 34}, - [2030] = {.lex_state = 53}, - [2031] = {.lex_state = 69}, - [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 64}, - [2034] = {.lex_state = 64}, - [2035] = {.lex_state = 42}, - [2036] = {.lex_state = 53}, - [2037] = {.lex_state = 42}, - [2038] = {.lex_state = 59}, - [2039] = {.lex_state = 64}, - [2040] = {.lex_state = 34}, - [2041] = {.lex_state = 34}, - [2042] = {.lex_state = 64}, - [2043] = {.lex_state = 34}, - [2044] = {.lex_state = 34}, - [2045] = {.lex_state = 64}, - [2046] = {.lex_state = 53}, - [2047] = {.lex_state = 53}, - [2048] = {.lex_state = 34}, - [2049] = {.lex_state = 64}, - [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 38}, - [2052] = {.lex_state = 38}, - [2053] = {.lex_state = 69}, - [2054] = {.lex_state = 37}, - [2055] = {.lex_state = 37}, - [2056] = {.lex_state = 37}, - [2057] = {.lex_state = 37}, - [2058] = {.lex_state = 37}, - [2059] = {.lex_state = 37}, - [2060] = {.lex_state = 59}, - [2061] = {.lex_state = 64}, - [2062] = {.lex_state = 53}, - [2063] = {.lex_state = 53}, - [2064] = {.lex_state = 53}, - [2065] = {.lex_state = 53}, - [2066] = {.lex_state = 53}, - [2067] = {.lex_state = 67}, - [2068] = {.lex_state = 53}, - [2069] = {.lex_state = 53}, - [2070] = {.lex_state = 53}, - [2071] = {.lex_state = 53}, - [2072] = {.lex_state = 53}, - [2073] = {.lex_state = 53}, - [2074] = {.lex_state = 53}, - [2075] = {.lex_state = 53}, - [2076] = {.lex_state = 53}, - [2077] = {.lex_state = 53}, - [2078] = {.lex_state = 53}, - [2079] = {.lex_state = 53}, - [2080] = {.lex_state = 53}, - [2081] = {.lex_state = 53}, - [2082] = {.lex_state = 53}, - [2083] = {.lex_state = 53}, - [2084] = {.lex_state = 53}, - [2085] = {.lex_state = 53}, - [2086] = {.lex_state = 53}, - [2087] = {.lex_state = 53}, - [2088] = {.lex_state = 53}, - [2089] = {.lex_state = 53}, - [2090] = {.lex_state = 53}, - [2091] = {.lex_state = 53}, - [2092] = {.lex_state = 53}, - [2093] = {.lex_state = 53}, - [2094] = {.lex_state = 53}, - [2095] = {.lex_state = 53}, - [2096] = {.lex_state = 53}, - [2097] = {.lex_state = 53}, - [2098] = {.lex_state = 53}, - [2099] = {.lex_state = 53}, - [2100] = {.lex_state = 53}, - [2101] = {.lex_state = 53}, - [2102] = {.lex_state = 53}, - [2103] = {.lex_state = 53}, - [2104] = {.lex_state = 53}, - [2105] = {.lex_state = 53}, - [2106] = {.lex_state = 53}, - [2107] = {.lex_state = 53}, - [2108] = {.lex_state = 70}, - [2109] = {.lex_state = 70}, - [2110] = {.lex_state = 70}, - [2111] = {.lex_state = 53}, - [2112] = {.lex_state = 53}, - [2113] = {.lex_state = 53}, - [2114] = {.lex_state = 53}, - [2115] = {.lex_state = 70}, - [2116] = {.lex_state = 70}, - [2117] = {.lex_state = 53}, - [2118] = {.lex_state = 53}, - [2119] = {.lex_state = 53}, - [2120] = {.lex_state = 53}, - [2121] = {.lex_state = 53}, - [2122] = {.lex_state = 53}, - [2123] = {.lex_state = 53}, - [2124] = {.lex_state = 53}, - [2125] = {.lex_state = 70}, - [2126] = {.lex_state = 53}, - [2127] = {.lex_state = 53}, - [2128] = {.lex_state = 53}, - [2129] = {.lex_state = 53}, - [2130] = {.lex_state = 53}, - [2131] = {.lex_state = 53}, - [2132] = {.lex_state = 67}, - [2133] = {.lex_state = 67}, - [2134] = {.lex_state = 53}, - [2135] = {.lex_state = 53}, - [2136] = {.lex_state = 53}, - [2137] = {.lex_state = 53}, - [2138] = {.lex_state = 53}, - [2139] = {.lex_state = 53}, - [2140] = {.lex_state = 53}, - [2141] = {.lex_state = 53}, - [2142] = {.lex_state = 53}, - [2143] = {.lex_state = 53}, - [2144] = {.lex_state = 70}, - [2145] = {.lex_state = 53}, - [2146] = {.lex_state = 53}, - [2147] = {.lex_state = 53}, - [2148] = {.lex_state = 53}, - [2149] = {.lex_state = 53}, - [2150] = {.lex_state = 70}, - [2151] = {.lex_state = 70}, - [2152] = {.lex_state = 53}, - [2153] = {.lex_state = 53}, - [2154] = {.lex_state = 53}, - [2155] = {.lex_state = 53}, - [2156] = {.lex_state = 53}, - [2157] = {.lex_state = 53}, - [2158] = {.lex_state = 53}, - [2159] = {.lex_state = 53}, - [2160] = {.lex_state = 53}, - [2161] = {.lex_state = 53}, - [2162] = {.lex_state = 53}, - [2163] = {.lex_state = 53}, - [2164] = {.lex_state = 53}, - [2165] = {.lex_state = 53}, - [2166] = {.lex_state = 53}, - [2167] = {.lex_state = 53}, - [2168] = {.lex_state = 53}, - [2169] = {.lex_state = 53}, - [2170] = {.lex_state = 65}, - [2171] = {.lex_state = 53}, - [2172] = {.lex_state = 53}, - [2173] = {.lex_state = 53}, - [2174] = {.lex_state = 53}, - [2175] = {.lex_state = 53}, - [2176] = {.lex_state = 53}, - [2177] = {.lex_state = 53}, - [2178] = {.lex_state = 53}, - [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 53}, - [2181] = {.lex_state = 53}, - [2182] = {.lex_state = 53}, - [2183] = {.lex_state = 53}, - [2184] = {.lex_state = 53}, - [2185] = {.lex_state = 53}, - [2186] = {.lex_state = 53}, - [2187] = {.lex_state = 53}, - [2188] = {.lex_state = 53}, - [2189] = {.lex_state = 53}, - [2190] = {.lex_state = 53}, - [2191] = {.lex_state = 53}, - [2192] = {.lex_state = 70}, - [2193] = {.lex_state = 53}, - [2194] = {.lex_state = 53}, - [2195] = {.lex_state = 53}, - [2196] = {.lex_state = 70}, - [2197] = {.lex_state = 53}, - [2198] = {.lex_state = 70}, - [2199] = {.lex_state = 53}, - [2200] = {.lex_state = 53}, - [2201] = {.lex_state = 53}, - [2202] = {.lex_state = 53}, - [2203] = {.lex_state = 53}, - [2204] = {.lex_state = 53}, - [2205] = {.lex_state = 53}, - [2206] = {.lex_state = 70}, - [2207] = {.lex_state = 53}, - [2208] = {.lex_state = 53}, - [2209] = {.lex_state = 53}, - [2210] = {.lex_state = 53}, - [2211] = {.lex_state = 53}, - [2212] = {.lex_state = 53}, - [2213] = {.lex_state = 53}, - [2214] = {.lex_state = 53}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 65}, - [2218] = {.lex_state = 53}, - [2219] = {.lex_state = 53}, - [2220] = {.lex_state = 65}, - [2221] = {.lex_state = 70}, - [2222] = {.lex_state = 70}, - [2223] = {.lex_state = 53}, - [2224] = {.lex_state = 65}, - [2225] = {.lex_state = 65}, - [2226] = {.lex_state = 43}, - [2227] = {.lex_state = 53}, - [2228] = {.lex_state = 53}, - [2229] = {.lex_state = 65}, - [2230] = {.lex_state = 65}, - [2231] = {.lex_state = 70}, - [2232] = {.lex_state = 65}, - [2233] = {.lex_state = 65}, - [2234] = {.lex_state = 65}, - [2235] = {.lex_state = 53}, - [2236] = {.lex_state = 65}, - [2237] = {.lex_state = 65}, - [2238] = {.lex_state = 65}, - [2239] = {.lex_state = 43}, - [2240] = {.lex_state = 53}, - [2241] = {.lex_state = 53}, - [2242] = {.lex_state = 53}, - [2243] = {.lex_state = 65}, - [2244] = {.lex_state = 53}, - [2245] = {.lex_state = 53}, - [2246] = {.lex_state = 53}, - [2247] = {.lex_state = 53}, - [2248] = {.lex_state = 53}, - [2249] = {.lex_state = 53}, - [2250] = {.lex_state = 70}, - [2251] = {.lex_state = 53}, - [2252] = {.lex_state = 43}, - [2253] = {.lex_state = 43}, - [2254] = {.lex_state = 53}, - [2255] = {.lex_state = 53}, - [2256] = {.lex_state = 53}, - [2257] = {.lex_state = 53}, - [2258] = {.lex_state = 53}, - [2259] = {.lex_state = 53}, - [2260] = {.lex_state = 53}, - [2261] = {.lex_state = 53}, - [2262] = {.lex_state = 53}, - [2263] = {.lex_state = 53}, - [2264] = {.lex_state = 67}, - [2265] = {.lex_state = 53}, - [2266] = {.lex_state = 53}, - [2267] = {.lex_state = 53}, - [2268] = {.lex_state = 53}, - [2269] = {.lex_state = 53}, - [2270] = {.lex_state = 53}, - [2271] = {.lex_state = 53}, - [2272] = {.lex_state = 53}, - [2273] = {.lex_state = 43}, - [2274] = {.lex_state = 53}, - [2275] = {.lex_state = 43}, - [2276] = {.lex_state = 53}, - [2277] = {.lex_state = 43}, - [2278] = {.lex_state = 67}, - [2279] = {.lex_state = 43}, - [2280] = {.lex_state = 67}, - [2281] = {.lex_state = 53}, - [2282] = {.lex_state = 53}, - [2283] = {.lex_state = 53}, - [2284] = {.lex_state = 53}, - [2285] = {.lex_state = 53}, - [2286] = {.lex_state = 67}, - [2287] = {.lex_state = 53}, - [2288] = {.lex_state = 53}, - [2289] = {.lex_state = 53}, - [2290] = {.lex_state = 67}, - [2291] = {.lex_state = 53}, - [2292] = {.lex_state = 53}, - [2293] = {.lex_state = 67}, - [2294] = {.lex_state = 67}, - [2295] = {.lex_state = 53}, - [2296] = {.lex_state = 67}, - [2297] = {.lex_state = 67}, - [2298] = {.lex_state = 67}, - [2299] = {.lex_state = 67}, - [2300] = {.lex_state = 53}, - [2301] = {.lex_state = 67}, - [2302] = {.lex_state = 67}, - [2303] = {.lex_state = 67}, - [2304] = {.lex_state = 68}, - [2305] = {.lex_state = 71}, - [2306] = {.lex_state = 71}, - [2307] = {.lex_state = 71}, - [2308] = {.lex_state = 71}, - [2309] = {.lex_state = 68}, - [2310] = {.lex_state = 71}, - [2311] = {.lex_state = 71}, - [2312] = {.lex_state = 71}, - [2313] = {.lex_state = 71}, - [2314] = {.lex_state = 71}, - [2315] = {.lex_state = 71}, - [2316] = {.lex_state = 68}, - [2317] = {.lex_state = 71}, - [2318] = {.lex_state = 71}, - [2319] = {.lex_state = 71}, - [2320] = {.lex_state = 71}, - [2321] = {.lex_state = 68}, - [2322] = {.lex_state = 68}, - [2323] = {.lex_state = 68}, - [2324] = {.lex_state = 68}, - [2325] = {.lex_state = 68}, - [2326] = {.lex_state = 68}, - [2327] = {.lex_state = 68}, - [2328] = {.lex_state = 68}, - [2329] = {.lex_state = 68}, - [2330] = {.lex_state = 53}, - [2331] = {.lex_state = 68}, - [2332] = {.lex_state = 68}, - [2333] = {.lex_state = 53}, - [2334] = {.lex_state = 53}, - [2335] = {.lex_state = 53}, - [2336] = {.lex_state = 53}, - [2337] = {.lex_state = 53}, - [2338] = {.lex_state = 53}, - [2339] = {.lex_state = 53}, - [2340] = {.lex_state = 53}, - [2341] = {.lex_state = 53}, - [2342] = {.lex_state = 55}, - [2343] = {.lex_state = 55}, - [2344] = {.lex_state = 55}, - [2345] = {.lex_state = 53}, - [2346] = {.lex_state = 55}, - [2347] = {.lex_state = 53}, - [2348] = {.lex_state = 53}, - [2349] = {.lex_state = 55}, - [2350] = {.lex_state = 53}, - [2351] = {.lex_state = 53}, - [2352] = {.lex_state = 53}, - [2353] = {.lex_state = 53}, - [2354] = {.lex_state = 53}, - [2355] = {.lex_state = 53}, - [2356] = {.lex_state = 75}, - [2357] = {.lex_state = 75}, - [2358] = {.lex_state = 75}, - [2359] = {.lex_state = 75}, - [2360] = {.lex_state = 75}, - [2361] = {.lex_state = 75}, - [2362] = {.lex_state = 75}, - [2363] = {.lex_state = 75}, - [2364] = {.lex_state = 75}, - [2365] = {.lex_state = 75}, - [2366] = {.lex_state = 75}, - [2367] = {.lex_state = 75}, - [2368] = {.lex_state = 75}, - [2369] = {.lex_state = 75}, - [2370] = {.lex_state = 75}, - [2371] = {.lex_state = 75}, - [2372] = {.lex_state = 75}, - [2373] = {.lex_state = 75}, - [2374] = {.lex_state = 75}, - [2375] = {.lex_state = 75}, - [2376] = {.lex_state = 75}, - [2377] = {.lex_state = 75}, - [2378] = {.lex_state = 75}, - [2379] = {.lex_state = 75}, - [2380] = {.lex_state = 75}, - [2381] = {.lex_state = 75}, - [2382] = {.lex_state = 75}, - [2383] = {.lex_state = 75}, - [2384] = {.lex_state = 75}, - [2385] = {.lex_state = 75}, - [2386] = {.lex_state = 75}, - [2387] = {.lex_state = 75}, - [2388] = {.lex_state = 75}, - [2389] = {.lex_state = 75}, - [2390] = {.lex_state = 75}, - [2391] = {.lex_state = 75}, - [2392] = {.lex_state = 75}, - [2393] = {.lex_state = 75}, - [2394] = {.lex_state = 75}, - [2395] = {.lex_state = 75}, - [2396] = {.lex_state = 75}, - [2397] = {.lex_state = 75}, - [2398] = {.lex_state = 75}, - [2399] = {.lex_state = 75}, - [2400] = {.lex_state = 75}, - [2401] = {.lex_state = 75}, - [2402] = {.lex_state = 75}, - [2403] = {.lex_state = 75}, - [2404] = {.lex_state = 75}, - [2405] = {.lex_state = 75}, - [2406] = {.lex_state = 75}, - [2407] = {.lex_state = 75}, - [2408] = {.lex_state = 75}, - [2409] = {.lex_state = 75}, - [2410] = {.lex_state = 75}, - [2411] = {.lex_state = 75}, - [2412] = {.lex_state = 75}, - [2413] = {.lex_state = 75}, - [2414] = {.lex_state = 75}, - [2415] = {.lex_state = 75}, - [2416] = {.lex_state = 75}, - [2417] = {.lex_state = 55}, - [2418] = {.lex_state = 75}, - [2419] = {.lex_state = 75}, - [2420] = {.lex_state = 75}, - [2421] = {.lex_state = 75}, - [2422] = {.lex_state = 55}, - [2423] = {.lex_state = 75}, - [2424] = {.lex_state = 75}, - [2425] = {.lex_state = 75}, - [2426] = {.lex_state = 75}, - [2427] = {.lex_state = 75}, - [2428] = {.lex_state = 75}, - [2429] = {.lex_state = 75}, - [2430] = {.lex_state = 75}, - [2431] = {.lex_state = 75}, - [2432] = {.lex_state = 75}, - [2433] = {.lex_state = 75}, - [2434] = {.lex_state = 75}, - [2435] = {.lex_state = 75}, - [2436] = {.lex_state = 75}, - [2437] = {.lex_state = 75}, - [2438] = {.lex_state = 75}, - [2439] = {.lex_state = 75}, - [2440] = {.lex_state = 75}, - [2441] = {.lex_state = 75}, - [2442] = {.lex_state = 75}, - [2443] = {.lex_state = 75}, - [2444] = {.lex_state = 75}, - [2445] = {.lex_state = 75}, - [2446] = {.lex_state = 75}, - [2447] = {.lex_state = 75}, - [2448] = {.lex_state = 75}, - [2449] = {.lex_state = 75}, - [2450] = {.lex_state = 75}, - [2451] = {.lex_state = 75}, - [2452] = {.lex_state = 75}, - [2453] = {.lex_state = 75}, - [2454] = {.lex_state = 75}, - [2455] = {.lex_state = 75}, - [2456] = {.lex_state = 75}, - [2457] = {.lex_state = 75}, - [2458] = {.lex_state = 75}, - [2459] = {.lex_state = 75}, - [2460] = {.lex_state = 75}, - [2461] = {.lex_state = 75}, - [2462] = {.lex_state = 75}, - [2463] = {.lex_state = 75}, - [2464] = {.lex_state = 75}, - [2465] = {.lex_state = 75}, - [2466] = {.lex_state = 75}, - [2467] = {.lex_state = 75}, - [2468] = {.lex_state = 75}, - [2469] = {.lex_state = 75}, - [2470] = {.lex_state = 75}, - [2471] = {.lex_state = 75}, - [2472] = {.lex_state = 75}, - [2473] = {.lex_state = 75}, - [2474] = {.lex_state = 75}, - [2475] = {.lex_state = 75}, - [2476] = {.lex_state = 75}, - [2477] = {.lex_state = 75}, - [2478] = {.lex_state = 75}, - [2479] = {.lex_state = 75}, - [2480] = {.lex_state = 75}, - [2481] = {.lex_state = 75}, - [2482] = {.lex_state = 75}, - [2483] = {.lex_state = 75}, - [2484] = {.lex_state = 75}, - [2485] = {.lex_state = 75}, - [2486] = {.lex_state = 75}, - [2487] = {.lex_state = 75}, - [2488] = {.lex_state = 75}, - [2489] = {.lex_state = 75}, - [2490] = {.lex_state = 75}, - [2491] = {.lex_state = 75}, - [2492] = {.lex_state = 75}, - [2493] = {.lex_state = 75}, - [2494] = {.lex_state = 75}, - [2495] = {.lex_state = 75}, - [2496] = {.lex_state = 75}, - [2497] = {.lex_state = 75}, - [2498] = {.lex_state = 75}, - [2499] = {.lex_state = 75}, - [2500] = {.lex_state = 75}, - [2501] = {.lex_state = 75}, - [2502] = {.lex_state = 75}, - [2503] = {.lex_state = 75}, - [2504] = {.lex_state = 75}, - [2505] = {.lex_state = 75}, - [2506] = {.lex_state = 75}, - [2507] = {.lex_state = 75}, - [2508] = {.lex_state = 75}, - [2509] = {.lex_state = 75}, - [2510] = {.lex_state = 75}, - [2511] = {.lex_state = 75}, - [2512] = {.lex_state = 75}, - [2513] = {.lex_state = 75}, - [2514] = {.lex_state = 75}, - [2515] = {.lex_state = 75}, - [2516] = {.lex_state = 75}, - [2517] = {.lex_state = 75}, - [2518] = {.lex_state = 75}, - [2519] = {.lex_state = 75}, - [2520] = {.lex_state = 75}, - [2521] = {.lex_state = 75}, - [2522] = {.lex_state = 75}, - [2523] = {.lex_state = 75}, - [2524] = {.lex_state = 75}, - [2525] = {.lex_state = 75}, - [2526] = {.lex_state = 75}, - [2527] = {.lex_state = 75}, - [2528] = {.lex_state = 75}, - [2529] = {.lex_state = 75}, - [2530] = {.lex_state = 75}, - [2531] = {.lex_state = 75}, - [2532] = {.lex_state = 75}, - [2533] = {.lex_state = 75}, - [2534] = {.lex_state = 75}, - [2535] = {.lex_state = 75}, - [2536] = {.lex_state = 75}, - [2537] = {.lex_state = 75}, - [2538] = {.lex_state = 75}, - [2539] = {.lex_state = 75}, - [2540] = {.lex_state = 75}, - [2541] = {.lex_state = 75}, - [2542] = {.lex_state = 75}, - [2543] = {.lex_state = 75}, - [2544] = {.lex_state = 75}, - [2545] = {.lex_state = 75}, - [2546] = {.lex_state = 76}, - [2547] = {.lex_state = 75}, - [2548] = {.lex_state = 75}, - [2549] = {.lex_state = 75}, - [2550] = {.lex_state = 75}, - [2551] = {.lex_state = 75}, - [2552] = {.lex_state = 75}, - [2553] = {.lex_state = 75}, - [2554] = {.lex_state = 75}, - [2555] = {.lex_state = 75}, - [2556] = {.lex_state = 75}, - [2557] = {.lex_state = 75}, - [2558] = {.lex_state = 75}, - [2559] = {.lex_state = 75}, - [2560] = {.lex_state = 75}, - [2561] = {.lex_state = 75}, - [2562] = {.lex_state = 75}, - [2563] = {.lex_state = 75}, - [2564] = {.lex_state = 75}, - [2565] = {.lex_state = 75}, - [2566] = {.lex_state = 75}, - [2567] = {.lex_state = 75}, - [2568] = {.lex_state = 75}, - [2569] = {.lex_state = 75}, - [2570] = {.lex_state = 75}, - [2571] = {.lex_state = 75}, - [2572] = {.lex_state = 75}, - [2573] = {.lex_state = 75}, - [2574] = {.lex_state = 75}, - [2575] = {.lex_state = 75}, - [2576] = {.lex_state = 75}, - [2577] = {.lex_state = 75}, - [2578] = {.lex_state = 75}, - [2579] = {.lex_state = 75}, - [2580] = {.lex_state = 75}, - [2581] = {.lex_state = 75}, - [2582] = {.lex_state = 75}, - [2583] = {.lex_state = 75}, - [2584] = {.lex_state = 75}, - [2585] = {.lex_state = 75}, - [2586] = {.lex_state = 75}, - [2587] = {.lex_state = 75}, - [2588] = {.lex_state = 75}, - [2589] = {.lex_state = 75}, - [2590] = {.lex_state = 75}, - [2591] = {.lex_state = 75}, - [2592] = {.lex_state = 75}, - [2593] = {.lex_state = 75}, - [2594] = {.lex_state = 75}, - [2595] = {.lex_state = 75}, - [2596] = {.lex_state = 75}, - [2597] = {.lex_state = 75}, - [2598] = {.lex_state = 75}, - [2599] = {.lex_state = 75}, - [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 75}, - [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 75}, - [2604] = {.lex_state = 75}, - [2605] = {.lex_state = 75}, - [2606] = {.lex_state = 75}, - [2607] = {.lex_state = 75}, - [2608] = {.lex_state = 75}, - [2609] = {.lex_state = 75}, - [2610] = {.lex_state = 75}, - [2611] = {.lex_state = 75}, - [2612] = {.lex_state = 75}, - [2613] = {.lex_state = 75}, - [2614] = {.lex_state = 75}, - [2615] = {.lex_state = 75}, - [2616] = {.lex_state = 75}, - [2617] = {.lex_state = 75}, - [2618] = {.lex_state = 75}, - [2619] = {.lex_state = 75}, - [2620] = {.lex_state = 75}, - [2621] = {.lex_state = 75}, - [2622] = {.lex_state = 75}, - [2623] = {.lex_state = 75}, - [2624] = {.lex_state = 75}, - [2625] = {.lex_state = 75}, - [2626] = {.lex_state = 75}, - [2627] = {.lex_state = 75}, - [2628] = {.lex_state = 75}, - [2629] = {.lex_state = 75}, - [2630] = {.lex_state = 75}, - [2631] = {.lex_state = 75}, - [2632] = {.lex_state = 75}, - [2633] = {.lex_state = 75}, - [2634] = {.lex_state = 75}, - [2635] = {.lex_state = 75}, - [2636] = {.lex_state = 75}, - [2637] = {.lex_state = 75}, - [2638] = {.lex_state = 75}, - [2639] = {.lex_state = 75}, - [2640] = {.lex_state = 75}, - [2641] = {.lex_state = 75}, - [2642] = {.lex_state = 75}, - [2643] = {.lex_state = 75}, - [2644] = {.lex_state = 75}, - [2645] = {.lex_state = 75}, - [2646] = {.lex_state = 75}, - [2647] = {.lex_state = 75}, - [2648] = {.lex_state = 75}, - [2649] = {.lex_state = 75}, - [2650] = {.lex_state = 75}, - [2651] = {.lex_state = 75}, - [2652] = {.lex_state = 75}, - [2653] = {.lex_state = 75}, - [2654] = {.lex_state = 75}, - [2655] = {.lex_state = 75}, - [2656] = {.lex_state = 75}, - [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 75}, - [2659] = {.lex_state = 55}, - [2660] = {.lex_state = 75}, - [2661] = {.lex_state = 55}, - [2662] = {.lex_state = 75}, - [2663] = {.lex_state = 75}, - [2664] = {.lex_state = 75}, - [2665] = {.lex_state = 75}, - [2666] = {.lex_state = 75}, - [2667] = {.lex_state = 75}, - [2668] = {.lex_state = 76}, - [2669] = {.lex_state = 75}, - [2670] = {.lex_state = 75}, - [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 75}, - [2673] = {.lex_state = 75}, - [2674] = {.lex_state = 75}, - [2675] = {.lex_state = 75}, - [2676] = {.lex_state = 75}, - [2677] = {.lex_state = 75}, - [2678] = {.lex_state = 75}, - [2679] = {.lex_state = 75}, - [2680] = {.lex_state = 75}, - [2681] = {.lex_state = 75}, - [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 75}, - [2684] = {.lex_state = 75}, - [2685] = {.lex_state = 75}, - [2686] = {.lex_state = 75}, - [2687] = {.lex_state = 75}, - [2688] = {.lex_state = 75}, - [2689] = {.lex_state = 75}, - [2690] = {.lex_state = 75}, - [2691] = {.lex_state = 75}, - [2692] = {.lex_state = 75}, - [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 75}, - [2695] = {.lex_state = 75}, - [2696] = {.lex_state = 75}, - [2697] = {.lex_state = 75}, - [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 75}, - [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 75}, - [2703] = {.lex_state = 75}, - [2704] = {.lex_state = 75}, - [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 75}, - [2707] = {.lex_state = 75}, - [2708] = {.lex_state = 75}, - [2709] = {.lex_state = 75}, - [2710] = {.lex_state = 75}, - [2711] = {.lex_state = 75}, - [2712] = {.lex_state = 75}, - [2713] = {.lex_state = 75}, - [2714] = {.lex_state = 55}, - [2715] = {.lex_state = 75}, - [2716] = {.lex_state = 75}, - [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 75}, - [2719] = {.lex_state = 75}, - [2720] = {.lex_state = 55}, - [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 75}, - [2723] = {.lex_state = 75}, - [2724] = {.lex_state = 55}, - [2725] = {.lex_state = 75}, - [2726] = {.lex_state = 75}, - [2727] = {.lex_state = 75}, - [2728] = {.lex_state = 55}, - [2729] = {.lex_state = 75}, - [2730] = {.lex_state = 76}, - [2731] = {.lex_state = 76}, - [2732] = {.lex_state = 75}, - [2733] = {.lex_state = 75}, - [2734] = {.lex_state = 75}, - [2735] = {.lex_state = 75}, - [2736] = {.lex_state = 75}, - [2737] = {.lex_state = 76}, - [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 55}, - [2740] = {.lex_state = 75}, - [2741] = {.lex_state = 75}, - [2742] = {.lex_state = 75}, - [2743] = {.lex_state = 75}, - [2744] = {.lex_state = 55}, - [2745] = {.lex_state = 55}, - [2746] = {.lex_state = 75}, - [2747] = {.lex_state = 75}, - [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 75}, - [2750] = {.lex_state = 75}, - [2751] = {.lex_state = 75}, - [2752] = {.lex_state = 75}, - [2753] = {.lex_state = 75}, - [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 75}, - [2756] = {.lex_state = 75}, - [2757] = {.lex_state = 75}, - [2758] = {.lex_state = 75}, - [2759] = {.lex_state = 75}, - [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 75}, - [2762] = {.lex_state = 75}, - [2763] = {.lex_state = 75}, - [2764] = {.lex_state = 75}, - [2765] = {.lex_state = 55}, - [2766] = {.lex_state = 75}, - [2767] = {.lex_state = 75}, - [2768] = {.lex_state = 75}, - [2769] = {.lex_state = 55}, - [2770] = {.lex_state = 75}, - [2771] = {.lex_state = 55}, - [2772] = {.lex_state = 75}, - [2773] = {.lex_state = 75}, - [2774] = {.lex_state = 51}, - [2775] = {.lex_state = 44}, - [2776] = {.lex_state = 77}, - [2777] = {.lex_state = 47}, - [2778] = {.lex_state = 47}, - [2779] = {.lex_state = 47}, - [2780] = {.lex_state = 77}, - [2781] = {.lex_state = 47}, - [2782] = {.lex_state = 45}, - [2783] = {.lex_state = 47}, - [2784] = {.lex_state = 51}, - [2785] = {.lex_state = 43}, - [2786] = {.lex_state = 47}, - [2787] = {.lex_state = 47}, - [2788] = {.lex_state = 43}, - [2789] = {.lex_state = 51}, - [2790] = {.lex_state = 77}, - [2791] = {.lex_state = 77}, - [2792] = {.lex_state = 47}, - [2793] = {.lex_state = 51}, - [2794] = {.lex_state = 51}, - [2795] = {.lex_state = 51}, - [2796] = {.lex_state = 43}, - [2797] = {.lex_state = 51}, - [2798] = {.lex_state = 43}, - [2799] = {.lex_state = 50}, - [2800] = {.lex_state = 51}, - [2801] = {.lex_state = 51}, - [2802] = {.lex_state = 77}, + [1578] = {.lex_state = 93}, + [1579] = {.lex_state = 40}, + [1580] = {.lex_state = 42}, + [1581] = {.lex_state = 59}, + [1582] = {.lex_state = 59}, + [1583] = {.lex_state = 61}, + [1584] = {.lex_state = 64}, + [1585] = {.lex_state = 59}, + [1586] = {.lex_state = 59}, + [1587] = {.lex_state = 44}, + [1588] = {.lex_state = 59}, + [1589] = {.lex_state = 37}, + [1590] = {.lex_state = 64}, + [1591] = {.lex_state = 64}, + [1592] = {.lex_state = 64}, + [1593] = {.lex_state = 37}, + [1594] = {.lex_state = 64}, + [1595] = {.lex_state = 64}, + [1596] = {.lex_state = 59}, + [1597] = {.lex_state = 64}, + [1598] = {.lex_state = 64}, + [1599] = {.lex_state = 64}, + [1600] = {.lex_state = 61}, + [1601] = {.lex_state = 41}, + [1602] = {.lex_state = 64}, + [1603] = {.lex_state = 42}, + [1604] = {.lex_state = 61}, + [1605] = {.lex_state = 59}, + [1606] = {.lex_state = 41}, + [1607] = {.lex_state = 42}, + [1608] = {.lex_state = 61}, + [1609] = {.lex_state = 41}, + [1610] = {.lex_state = 64}, + [1611] = {.lex_state = 61}, + [1612] = {.lex_state = 37}, + [1613] = {.lex_state = 64}, + [1614] = {.lex_state = 61}, + [1615] = {.lex_state = 42}, + [1616] = {.lex_state = 61}, + [1617] = {.lex_state = 42}, + [1618] = {.lex_state = 61}, + [1619] = {.lex_state = 64}, + [1620] = {.lex_state = 64}, + [1621] = {.lex_state = 64}, + [1622] = {.lex_state = 59}, + [1623] = {.lex_state = 61}, + [1624] = {.lex_state = 42}, + [1625] = {.lex_state = 42}, + [1626] = {.lex_state = 44}, + [1627] = {.lex_state = 59}, + [1628] = {.lex_state = 37}, + [1629] = {.lex_state = 42}, + [1630] = {.lex_state = 42}, + [1631] = {.lex_state = 64}, + [1632] = {.lex_state = 42}, + [1633] = {.lex_state = 44}, + [1634] = {.lex_state = 61}, + [1635] = {.lex_state = 37}, + [1636] = {.lex_state = 42}, + [1637] = {.lex_state = 42}, + [1638] = {.lex_state = 42}, + [1639] = {.lex_state = 61}, + [1640] = {.lex_state = 61}, + [1641] = {.lex_state = 61}, + [1642] = {.lex_state = 42}, + [1643] = {.lex_state = 61}, + [1644] = {.lex_state = 64}, + [1645] = {.lex_state = 64}, + [1646] = {.lex_state = 66}, + [1647] = {.lex_state = 66}, + [1648] = {.lex_state = 59}, + [1649] = {.lex_state = 45}, + [1650] = {.lex_state = 42}, + [1651] = {.lex_state = 61}, + [1652] = {.lex_state = 45}, + [1653] = {.lex_state = 59}, + [1654] = {.lex_state = 64}, + [1655] = {.lex_state = 64}, + [1656] = {.lex_state = 64}, + [1657] = {.lex_state = 37}, + [1658] = {.lex_state = 45}, + [1659] = {.lex_state = 59}, + [1660] = {.lex_state = 45}, + [1661] = {.lex_state = 64}, + [1662] = {.lex_state = 64}, + [1663] = {.lex_state = 45}, + [1664] = {.lex_state = 59}, + [1665] = {.lex_state = 37}, + [1666] = {.lex_state = 37}, + [1667] = {.lex_state = 37}, + [1668] = {.lex_state = 61}, + [1669] = {.lex_state = 61}, + [1670] = {.lex_state = 45}, + [1671] = {.lex_state = 42}, + [1672] = {.lex_state = 45}, + [1673] = {.lex_state = 59}, + [1674] = {.lex_state = 64}, + [1675] = {.lex_state = 37}, + [1676] = {.lex_state = 37}, + [1677] = {.lex_state = 37}, + [1678] = {.lex_state = 59}, + [1679] = {.lex_state = 45}, + [1680] = {.lex_state = 59}, + [1681] = {.lex_state = 64}, + [1682] = {.lex_state = 37}, + [1683] = {.lex_state = 59}, + [1684] = {.lex_state = 59}, + [1685] = {.lex_state = 59}, + [1686] = {.lex_state = 61}, + [1687] = {.lex_state = 59}, + [1688] = {.lex_state = 37}, + [1689] = {.lex_state = 37}, + [1690] = {.lex_state = 61}, + [1691] = {.lex_state = 64}, + [1692] = {.lex_state = 64}, + [1693] = {.lex_state = 59}, + [1694] = {.lex_state = 37}, + [1695] = {.lex_state = 64}, + [1696] = {.lex_state = 41}, + [1697] = {.lex_state = 59}, + [1698] = {.lex_state = 61}, + [1699] = {.lex_state = 44}, + [1700] = {.lex_state = 61}, + [1701] = {.lex_state = 59}, + [1702] = {.lex_state = 59}, + [1703] = {.lex_state = 59}, + [1704] = {.lex_state = 64}, + [1705] = {.lex_state = 59}, + [1706] = {.lex_state = 59}, + [1707] = {.lex_state = 44}, + [1708] = {.lex_state = 59}, + [1709] = {.lex_state = 37}, + [1710] = {.lex_state = 59}, + [1711] = {.lex_state = 61}, + [1712] = {.lex_state = 59}, + [1713] = {.lex_state = 59}, + [1714] = {.lex_state = 61}, + [1715] = {.lex_state = 61}, + [1716] = {.lex_state = 59}, + [1717] = {.lex_state = 59}, + [1718] = {.lex_state = 59}, + [1719] = {.lex_state = 59}, + [1720] = {.lex_state = 41}, + [1721] = {.lex_state = 61}, + [1722] = {.lex_state = 61}, + [1723] = {.lex_state = 41}, + [1724] = {.lex_state = 59}, + [1725] = {.lex_state = 59}, + [1726] = {.lex_state = 44}, + [1727] = {.lex_state = 61}, + [1728] = {.lex_state = 61}, + [1729] = {.lex_state = 59}, + [1730] = {.lex_state = 59}, + [1731] = {.lex_state = 44}, + [1732] = {.lex_state = 59}, + [1733] = {.lex_state = 44}, + [1734] = {.lex_state = 44}, + [1735] = {.lex_state = 44}, + [1736] = {.lex_state = 64}, + [1737] = {.lex_state = 42}, + [1738] = {.lex_state = 41}, + [1739] = {.lex_state = 41}, + [1740] = {.lex_state = 59}, + [1741] = {.lex_state = 41}, + [1742] = {.lex_state = 42}, + [1743] = {.lex_state = 44}, + [1744] = {.lex_state = 59}, + [1745] = {.lex_state = 59}, + [1746] = {.lex_state = 59}, + [1747] = {.lex_state = 61}, + [1748] = {.lex_state = 61}, + [1749] = {.lex_state = 41}, + [1750] = {.lex_state = 44}, + [1751] = {.lex_state = 44}, + [1752] = {.lex_state = 59}, + [1753] = {.lex_state = 44}, + [1754] = {.lex_state = 59}, + [1755] = {.lex_state = 59}, + [1756] = {.lex_state = 41}, + [1757] = {.lex_state = 44}, + [1758] = {.lex_state = 41}, + [1759] = {.lex_state = 41}, + [1760] = {.lex_state = 41}, + [1761] = {.lex_state = 37}, + [1762] = {.lex_state = 44}, + [1763] = {.lex_state = 61}, + [1764] = {.lex_state = 61}, + [1765] = {.lex_state = 44}, + [1766] = {.lex_state = 64}, + [1767] = {.lex_state = 59}, + [1768] = {.lex_state = 59}, + [1769] = {.lex_state = 41}, + [1770] = {.lex_state = 41}, + [1771] = {.lex_state = 44}, + [1772] = {.lex_state = 59}, + [1773] = {.lex_state = 41}, + [1774] = {.lex_state = 37}, + [1775] = {.lex_state = 59}, + [1776] = {.lex_state = 61}, + [1777] = {.lex_state = 41}, + [1778] = {.lex_state = 64}, + [1779] = {.lex_state = 44}, + [1780] = {.lex_state = 61}, + [1781] = {.lex_state = 61}, + [1782] = {.lex_state = 61}, + [1783] = {.lex_state = 66}, + [1784] = {.lex_state = 66}, + [1785] = {.lex_state = 42}, + [1786] = {.lex_state = 41}, + [1787] = {.lex_state = 64}, + [1788] = {.lex_state = 59}, + [1789] = {.lex_state = 59}, + [1790] = {.lex_state = 61}, + [1791] = {.lex_state = 59}, + [1792] = {.lex_state = 59}, + [1793] = {.lex_state = 59}, + [1794] = {.lex_state = 59}, + [1795] = {.lex_state = 59}, + [1796] = {.lex_state = 59}, + [1797] = {.lex_state = 64}, + [1798] = {.lex_state = 59}, + [1799] = {.lex_state = 59}, + [1800] = {.lex_state = 59}, + [1801] = {.lex_state = 59}, + [1802] = {.lex_state = 61}, + [1803] = {.lex_state = 68}, + [1804] = {.lex_state = 38}, + [1805] = {.lex_state = 61}, + [1806] = {.lex_state = 65}, + [1807] = {.lex_state = 38}, + [1808] = {.lex_state = 38}, + [1809] = {.lex_state = 61}, + [1810] = {.lex_state = 38}, + [1811] = {.lex_state = 38}, + [1812] = {.lex_state = 65}, + [1813] = {.lex_state = 38}, + [1814] = {.lex_state = 38}, + [1815] = {.lex_state = 38}, + [1816] = {.lex_state = 61}, + [1817] = {.lex_state = 38}, + [1818] = {.lex_state = 38}, + [1819] = {.lex_state = 38}, + [1820] = {.lex_state = 38}, + [1821] = {.lex_state = 38}, + [1822] = {.lex_state = 38}, + [1823] = {.lex_state = 38}, + [1824] = {.lex_state = 38}, + [1825] = {.lex_state = 65}, + [1826] = {.lex_state = 67}, + [1827] = {.lex_state = 67}, + [1828] = {.lex_state = 38}, + [1829] = {.lex_state = 68}, + [1830] = {.lex_state = 38}, + [1831] = {.lex_state = 38}, + [1832] = {.lex_state = 68}, + [1833] = {.lex_state = 69}, + [1834] = {.lex_state = 61}, + [1835] = {.lex_state = 65}, + [1836] = {.lex_state = 61}, + [1837] = {.lex_state = 61}, + [1838] = {.lex_state = 69}, + [1839] = {.lex_state = 61}, + [1840] = {.lex_state = 65}, + [1841] = {.lex_state = 69}, + [1842] = {.lex_state = 65}, + [1843] = {.lex_state = 69}, + [1844] = {.lex_state = 69}, + [1845] = {.lex_state = 69}, + [1846] = {.lex_state = 69}, + [1847] = {.lex_state = 69}, + [1848] = {.lex_state = 61}, + [1849] = {.lex_state = 69}, + [1850] = {.lex_state = 69}, + [1851] = {.lex_state = 69}, + [1852] = {.lex_state = 69}, + [1853] = {.lex_state = 68}, + [1854] = {.lex_state = 61}, + [1855] = {.lex_state = 78}, + [1856] = {.lex_state = 78}, + [1857] = {.lex_state = 61}, + [1858] = {.lex_state = 61}, + [1859] = {.lex_state = 69}, + [1860] = {.lex_state = 65}, + [1861] = {.lex_state = 61}, + [1862] = {.lex_state = 61}, + [1863] = {.lex_state = 69}, + [1864] = {.lex_state = 69}, + [1865] = {.lex_state = 61}, + [1866] = {.lex_state = 61}, + [1867] = {.lex_state = 69}, + [1868] = {.lex_state = 69}, + [1869] = {.lex_state = 61}, + [1870] = {.lex_state = 69}, + [1871] = {.lex_state = 69}, + [1872] = {.lex_state = 78}, + [1873] = {.lex_state = 78}, + [1874] = {.lex_state = 69}, + [1875] = {.lex_state = 61}, + [1876] = {.lex_state = 67}, + [1877] = {.lex_state = 67}, + [1878] = {.lex_state = 61}, + [1879] = {.lex_state = 69}, + [1880] = {.lex_state = 69}, + [1881] = {.lex_state = 69}, + [1882] = {.lex_state = 69}, + [1883] = {.lex_state = 61}, + [1884] = {.lex_state = 61}, + [1885] = {.lex_state = 69}, + [1886] = {.lex_state = 61}, + [1887] = {.lex_state = 69}, + [1888] = {.lex_state = 69}, + [1889] = {.lex_state = 69}, + [1890] = {.lex_state = 69}, + [1891] = {.lex_state = 69}, + [1892] = {.lex_state = 69}, + [1893] = {.lex_state = 69}, + [1894] = {.lex_state = 69}, + [1895] = {.lex_state = 69}, + [1896] = {.lex_state = 71}, + [1897] = {.lex_state = 79}, + [1898] = {.lex_state = 84}, + [1899] = {.lex_state = 70}, + [1900] = {.lex_state = 70}, + [1901] = {.lex_state = 75}, + [1902] = {.lex_state = 75}, + [1903] = {.lex_state = 70}, + [1904] = {.lex_state = 84}, + [1905] = {.lex_state = 84}, + [1906] = {.lex_state = 70}, + [1907] = {.lex_state = 71}, + [1908] = {.lex_state = 71}, + [1909] = {.lex_state = 70}, + [1910] = {.lex_state = 70}, + [1911] = {.lex_state = 71}, + [1912] = {.lex_state = 70}, + [1913] = {.lex_state = 70}, + [1914] = {.lex_state = 71}, + [1915] = {.lex_state = 84}, + [1916] = {.lex_state = 75}, + [1917] = {.lex_state = 75}, + [1918] = {.lex_state = 71}, + [1919] = {.lex_state = 71}, + [1920] = {.lex_state = 71}, + [1921] = {.lex_state = 70}, + [1922] = {.lex_state = 71}, + [1923] = {.lex_state = 71}, + [1924] = {.lex_state = 71}, + [1925] = {.lex_state = 71}, + [1926] = {.lex_state = 71}, + [1927] = {.lex_state = 71}, + [1928] = {.lex_state = 70}, + [1929] = {.lex_state = 70}, + [1930] = {.lex_state = 71}, + [1931] = {.lex_state = 71}, + [1932] = {.lex_state = 70}, + [1933] = {.lex_state = 70}, + [1934] = {.lex_state = 70}, + [1935] = {.lex_state = 71}, + [1936] = {.lex_state = 71}, + [1937] = {.lex_state = 71}, + [1938] = {.lex_state = 70}, + [1939] = {.lex_state = 71}, + [1940] = {.lex_state = 70}, + [1941] = {.lex_state = 71}, + [1942] = {.lex_state = 70}, + [1943] = {.lex_state = 70}, + [1944] = {.lex_state = 71}, + [1945] = {.lex_state = 70}, + [1946] = {.lex_state = 70}, + [1947] = {.lex_state = 70}, + [1948] = {.lex_state = 84}, + [1949] = {.lex_state = 84}, + [1950] = {.lex_state = 70}, + [1951] = {.lex_state = 84}, + [1952] = {.lex_state = 84}, + [1953] = {.lex_state = 84}, + [1954] = {.lex_state = 79}, + [1955] = {.lex_state = 84}, + [1956] = {.lex_state = 79}, + [1957] = {.lex_state = 70}, + [1958] = {.lex_state = 84}, + [1959] = {.lex_state = 70}, + [1960] = {.lex_state = 71}, + [1961] = {.lex_state = 70}, + [1962] = {.lex_state = 71}, + [1963] = {.lex_state = 70}, + [1964] = {.lex_state = 70}, + [1965] = {.lex_state = 72}, + [1966] = {.lex_state = 84}, + [1967] = {.lex_state = 84}, + [1968] = {.lex_state = 70}, + [1969] = {.lex_state = 84}, + [1970] = {.lex_state = 84}, + [1971] = {.lex_state = 70}, + [1972] = {.lex_state = 84}, + [1973] = {.lex_state = 79}, + [1974] = {.lex_state = 79}, + [1975] = {.lex_state = 72}, + [1976] = {.lex_state = 84}, + [1977] = {.lex_state = 79}, + [1978] = {.lex_state = 84}, + [1979] = {.lex_state = 79}, + [1980] = {.lex_state = 79}, + [1981] = {.lex_state = 84}, + [1982] = {.lex_state = 70}, + [1983] = {.lex_state = 79}, + [1984] = {.lex_state = 71}, + [1985] = {.lex_state = 79}, + [1986] = {.lex_state = 84}, + [1987] = {.lex_state = 79}, + [1988] = {.lex_state = 84}, + [1989] = {.lex_state = 79}, + [1990] = {.lex_state = 79}, + [1991] = {.lex_state = 79}, + [1992] = {.lex_state = 84}, + [1993] = {.lex_state = 84}, + [1994] = {.lex_state = 79}, + [1995] = {.lex_state = 79}, + [1996] = {.lex_state = 84}, + [1997] = {.lex_state = 72}, + [1998] = {.lex_state = 71}, + [1999] = {.lex_state = 71}, + [2000] = {.lex_state = 70}, + [2001] = {.lex_state = 84}, + [2002] = {.lex_state = 70}, + [2003] = {.lex_state = 70}, + [2004] = {.lex_state = 84}, + [2005] = {.lex_state = 72}, + [2006] = {.lex_state = 70}, + [2007] = {.lex_state = 71}, + [2008] = {.lex_state = 71}, + [2009] = {.lex_state = 84}, + [2010] = {.lex_state = 71}, + [2011] = {.lex_state = 72}, + [2012] = {.lex_state = 84}, + [2013] = {.lex_state = 71}, + [2014] = {.lex_state = 79}, + [2015] = {.lex_state = 72}, + [2016] = {.lex_state = 79}, + [2017] = {.lex_state = 72}, + [2018] = {.lex_state = 79}, + [2019] = {.lex_state = 79}, + [2020] = {.lex_state = 79}, + [2021] = {.lex_state = 71}, + [2022] = {.lex_state = 79}, + [2023] = {.lex_state = 79}, + [2024] = {.lex_state = 79}, + [2025] = {.lex_state = 79}, + [2026] = {.lex_state = 84}, + [2027] = {.lex_state = 71}, + [2028] = {.lex_state = 79}, + [2029] = {.lex_state = 79}, + [2030] = {.lex_state = 79}, + [2031] = {.lex_state = 79}, + [2032] = {.lex_state = 79}, + [2033] = {.lex_state = 79}, + [2034] = {.lex_state = 79}, + [2035] = {.lex_state = 84}, + [2036] = {.lex_state = 79}, + [2037] = {.lex_state = 71}, + [2038] = {.lex_state = 79}, + [2039] = {.lex_state = 76}, + [2040] = {.lex_state = 76}, + [2041] = {.lex_state = 61}, + [2042] = {.lex_state = 76}, + [2043] = {.lex_state = 61}, + [2044] = {.lex_state = 61}, + [2045] = {.lex_state = 61}, + [2046] = {.lex_state = 61}, + [2047] = {.lex_state = 61}, + [2048] = {.lex_state = 80}, + [2049] = {.lex_state = 61}, + [2050] = {.lex_state = 61}, + [2051] = {.lex_state = 61}, + [2052] = {.lex_state = 61}, + [2053] = {.lex_state = 61}, + [2054] = {.lex_state = 61}, + [2055] = {.lex_state = 61}, + [2056] = {.lex_state = 76}, + [2057] = {.lex_state = 76}, + [2058] = {.lex_state = 61}, + [2059] = {.lex_state = 61}, + [2060] = {.lex_state = 61}, + [2061] = {.lex_state = 80}, + [2062] = {.lex_state = 76}, + [2063] = {.lex_state = 61}, + [2064] = {.lex_state = 76}, + [2065] = {.lex_state = 80}, + [2066] = {.lex_state = 61}, + [2067] = {.lex_state = 61}, + [2068] = {.lex_state = 61}, + [2069] = {.lex_state = 61}, + [2070] = {.lex_state = 76}, + [2071] = {.lex_state = 61}, + [2072] = {.lex_state = 61}, + [2073] = {.lex_state = 61}, + [2074] = {.lex_state = 61}, + [2075] = {.lex_state = 61}, + [2076] = {.lex_state = 80}, + [2077] = {.lex_state = 61}, + [2078] = {.lex_state = 84}, + [2079] = {.lex_state = 61}, + [2080] = {.lex_state = 61}, + [2081] = {.lex_state = 80}, + [2082] = {.lex_state = 61}, + [2083] = {.lex_state = 76}, + [2084] = {.lex_state = 80}, + [2085] = {.lex_state = 61}, + [2086] = {.lex_state = 61}, + [2087] = {.lex_state = 61}, + [2088] = {.lex_state = 61}, + [2089] = {.lex_state = 61}, + [2090] = {.lex_state = 76}, + [2091] = {.lex_state = 76}, + [2092] = {.lex_state = 61}, + [2093] = {.lex_state = 80}, + [2094] = {.lex_state = 61}, + [2095] = {.lex_state = 61}, + [2096] = {.lex_state = 61}, + [2097] = {.lex_state = 76}, + [2098] = {.lex_state = 61}, + [2099] = {.lex_state = 76}, + [2100] = {.lex_state = 61}, + [2101] = {.lex_state = 61}, + [2102] = {.lex_state = 61}, + [2103] = {.lex_state = 61}, + [2104] = {.lex_state = 61}, + [2105] = {.lex_state = 61}, + [2106] = {.lex_state = 61}, + [2107] = {.lex_state = 61}, + [2108] = {.lex_state = 61}, + [2109] = {.lex_state = 61}, + [2110] = {.lex_state = 61}, + [2111] = {.lex_state = 61}, + [2112] = {.lex_state = 61}, + [2113] = {.lex_state = 61}, + [2114] = {.lex_state = 61}, + [2115] = {.lex_state = 61}, + [2116] = {.lex_state = 61}, + [2117] = {.lex_state = 61}, + [2118] = {.lex_state = 61}, + [2119] = {.lex_state = 61}, + [2120] = {.lex_state = 61}, + [2121] = {.lex_state = 61}, + [2122] = {.lex_state = 73}, + [2123] = {.lex_state = 61}, + [2124] = {.lex_state = 61}, + [2125] = {.lex_state = 74}, + [2126] = {.lex_state = 61}, + [2127] = {.lex_state = 61}, + [2128] = {.lex_state = 74}, + [2129] = {.lex_state = 74}, + [2130] = {.lex_state = 61}, + [2131] = {.lex_state = 74}, + [2132] = {.lex_state = 74}, + [2133] = {.lex_state = 61}, + [2134] = {.lex_state = 61}, + [2135] = {.lex_state = 76}, + [2136] = {.lex_state = 74}, + [2137] = {.lex_state = 61}, + [2138] = {.lex_state = 76}, + [2139] = {.lex_state = 61}, + [2140] = {.lex_state = 76}, + [2141] = {.lex_state = 61}, + [2142] = {.lex_state = 74}, + [2143] = {.lex_state = 61}, + [2144] = {.lex_state = 76}, + [2145] = {.lex_state = 61}, + [2146] = {.lex_state = 61}, + [2147] = {.lex_state = 76}, + [2148] = {.lex_state = 61}, + [2149] = {.lex_state = 61}, + [2150] = {.lex_state = 61}, + [2151] = {.lex_state = 61}, + [2152] = {.lex_state = 76}, + [2153] = {.lex_state = 61}, + [2154] = {.lex_state = 61}, + [2155] = {.lex_state = 61}, + [2156] = {.lex_state = 61}, + [2157] = {.lex_state = 61}, + [2158] = {.lex_state = 61}, + [2159] = {.lex_state = 76}, + [2160] = {.lex_state = 61}, + [2161] = {.lex_state = 61}, + [2162] = {.lex_state = 76}, + [2163] = {.lex_state = 61}, + [2164] = {.lex_state = 61}, + [2165] = {.lex_state = 61}, + [2166] = {.lex_state = 61}, + [2167] = {.lex_state = 61}, + [2168] = {.lex_state = 61}, + [2169] = {.lex_state = 61}, + [2170] = {.lex_state = 61}, + [2171] = {.lex_state = 61}, + [2172] = {.lex_state = 61}, + [2173] = {.lex_state = 76}, + [2174] = {.lex_state = 84}, + [2175] = {.lex_state = 76}, + [2176] = {.lex_state = 76}, + [2177] = {.lex_state = 61}, + [2178] = {.lex_state = 76}, + [2179] = {.lex_state = 76}, + [2180] = {.lex_state = 76}, + [2181] = {.lex_state = 76}, + [2182] = {.lex_state = 61}, + [2183] = {.lex_state = 76}, + [2184] = {.lex_state = 61}, + [2185] = {.lex_state = 61}, + [2186] = {.lex_state = 61}, + [2187] = {.lex_state = 61}, + [2188] = {.lex_state = 76}, + [2189] = {.lex_state = 73}, + [2190] = {.lex_state = 61}, + [2191] = {.lex_state = 76}, + [2192] = {.lex_state = 76}, + [2193] = {.lex_state = 61}, + [2194] = {.lex_state = 73}, + [2195] = {.lex_state = 73}, + [2196] = {.lex_state = 61}, + [2197] = {.lex_state = 73}, + [2198] = {.lex_state = 73}, + [2199] = {.lex_state = 73}, + [2200] = {.lex_state = 76}, + [2201] = {.lex_state = 76}, + [2202] = {.lex_state = 85}, + [2203] = {.lex_state = 85}, + [2204] = {.lex_state = 85}, + [2205] = {.lex_state = 85}, + [2206] = {.lex_state = 85}, + [2207] = {.lex_state = 85}, + [2208] = {.lex_state = 85}, + [2209] = {.lex_state = 85}, + [2210] = {.lex_state = 85}, + [2211] = {.lex_state = 85}, + [2212] = {.lex_state = 85}, + [2213] = {.lex_state = 85}, + [2214] = {.lex_state = 85}, + [2215] = {.lex_state = 85}, + [2216] = {.lex_state = 85}, + [2217] = {.lex_state = 85}, + [2218] = {.lex_state = 85}, + [2219] = {.lex_state = 85}, + [2220] = {.lex_state = 85}, + [2221] = {.lex_state = 85}, + [2222] = {.lex_state = 85}, + [2223] = {.lex_state = 85}, + [2224] = {.lex_state = 85}, + [2225] = {.lex_state = 85}, + [2226] = {.lex_state = 85}, + [2227] = {.lex_state = 85}, + [2228] = {.lex_state = 85}, + [2229] = {.lex_state = 85}, + [2230] = {.lex_state = 85}, + [2231] = {.lex_state = 85}, + [2232] = {.lex_state = 85}, + [2233] = {.lex_state = 85}, + [2234] = {.lex_state = 85}, + [2235] = {.lex_state = 85}, + [2236] = {.lex_state = 85}, + [2237] = {.lex_state = 85}, + [2238] = {.lex_state = 85}, + [2239] = {.lex_state = 85}, + [2240] = {.lex_state = 85}, + [2241] = {.lex_state = 85}, + [2242] = {.lex_state = 85}, + [2243] = {.lex_state = 85}, + [2244] = {.lex_state = 85}, + [2245] = {.lex_state = 85}, + [2246] = {.lex_state = 85}, + [2247] = {.lex_state = 85}, + [2248] = {.lex_state = 85}, + [2249] = {.lex_state = 85}, + [2250] = {.lex_state = 85}, + [2251] = {.lex_state = 85}, + [2252] = {.lex_state = 85}, + [2253] = {.lex_state = 85}, + [2254] = {.lex_state = 85}, + [2255] = {.lex_state = 85}, + [2256] = {.lex_state = 85}, + [2257] = {.lex_state = 85}, + [2258] = {.lex_state = 85}, + [2259] = {.lex_state = 85}, + [2260] = {.lex_state = 85}, + [2261] = {.lex_state = 85}, + [2262] = {.lex_state = 85}, + [2263] = {.lex_state = 85}, + [2264] = {.lex_state = 85}, + [2265] = {.lex_state = 85}, + [2266] = {.lex_state = 85}, + [2267] = {.lex_state = 85}, + [2268] = {.lex_state = 85}, + [2269] = {.lex_state = 85}, + [2270] = {.lex_state = 85}, + [2271] = {.lex_state = 85}, + [2272] = {.lex_state = 85}, + [2273] = {.lex_state = 85}, + [2274] = {.lex_state = 85}, + [2275] = {.lex_state = 85}, + [2276] = {.lex_state = 85}, + [2277] = {.lex_state = 85}, + [2278] = {.lex_state = 85}, + [2279] = {.lex_state = 85}, + [2280] = {.lex_state = 85}, + [2281] = {.lex_state = 85}, + [2282] = {.lex_state = 85}, + [2283] = {.lex_state = 85}, + [2284] = {.lex_state = 61}, + [2285] = {.lex_state = 85}, + [2286] = {.lex_state = 85}, + [2287] = {.lex_state = 85}, + [2288] = {.lex_state = 85}, + [2289] = {.lex_state = 85}, + [2290] = {.lex_state = 85}, + [2291] = {.lex_state = 85}, + [2292] = {.lex_state = 85}, + [2293] = {.lex_state = 85}, + [2294] = {.lex_state = 85}, + [2295] = {.lex_state = 85}, + [2296] = {.lex_state = 85}, + [2297] = {.lex_state = 85}, + [2298] = {.lex_state = 85}, + [2299] = {.lex_state = 85}, + [2300] = {.lex_state = 85}, + [2301] = {.lex_state = 85}, + [2302] = {.lex_state = 85}, + [2303] = {.lex_state = 85}, + [2304] = {.lex_state = 85}, + [2305] = {.lex_state = 85}, + [2306] = {.lex_state = 85}, + [2307] = {.lex_state = 85}, + [2308] = {.lex_state = 85}, + [2309] = {.lex_state = 85}, + [2310] = {.lex_state = 85}, + [2311] = {.lex_state = 85}, + [2312] = {.lex_state = 85}, + [2313] = {.lex_state = 85}, + [2314] = {.lex_state = 85}, + [2315] = {.lex_state = 85}, + [2316] = {.lex_state = 85}, + [2317] = {.lex_state = 85}, + [2318] = {.lex_state = 85}, + [2319] = {.lex_state = 85}, + [2320] = {.lex_state = 85}, + [2321] = {.lex_state = 85}, + [2322] = {.lex_state = 85}, + [2323] = {.lex_state = 85}, + [2324] = {.lex_state = 85}, + [2325] = {.lex_state = 77}, + [2326] = {.lex_state = 77}, + [2327] = {.lex_state = 77}, + [2328] = {.lex_state = 77}, + [2329] = {.lex_state = 77}, + [2330] = {.lex_state = 77}, + [2331] = {.lex_state = 85}, + [2332] = {.lex_state = 77}, + [2333] = {.lex_state = 85}, + [2334] = {.lex_state = 85}, + [2335] = {.lex_state = 85}, + [2336] = {.lex_state = 85}, + [2337] = {.lex_state = 85}, + [2338] = {.lex_state = 85}, + [2339] = {.lex_state = 85}, + [2340] = {.lex_state = 85}, + [2341] = {.lex_state = 85}, + [2342] = {.lex_state = 85}, + [2343] = {.lex_state = 85}, + [2344] = {.lex_state = 85}, + [2345] = {.lex_state = 85}, + [2346] = {.lex_state = 85}, + [2347] = {.lex_state = 85}, + [2348] = {.lex_state = 85}, + [2349] = {.lex_state = 85}, + [2350] = {.lex_state = 85}, + [2351] = {.lex_state = 61}, + [2352] = {.lex_state = 85}, + [2353] = {.lex_state = 85}, + [2354] = {.lex_state = 85}, + [2355] = {.lex_state = 85}, + [2356] = {.lex_state = 85}, + [2357] = {.lex_state = 85}, + [2358] = {.lex_state = 85}, + [2359] = {.lex_state = 85}, + [2360] = {.lex_state = 85}, + [2361] = {.lex_state = 85}, + [2362] = {.lex_state = 85}, + [2363] = {.lex_state = 85}, + [2364] = {.lex_state = 85}, + [2365] = {.lex_state = 85}, + [2366] = {.lex_state = 85}, + [2367] = {.lex_state = 85}, + [2368] = {.lex_state = 85}, + [2369] = {.lex_state = 85}, + [2370] = {.lex_state = 85}, + [2371] = {.lex_state = 85}, + [2372] = {.lex_state = 85}, + [2373] = {.lex_state = 85}, + [2374] = {.lex_state = 85}, + [2375] = {.lex_state = 85}, + [2376] = {.lex_state = 85}, + [2377] = {.lex_state = 85}, + [2378] = {.lex_state = 85}, + [2379] = {.lex_state = 85}, + [2380] = {.lex_state = 85}, + [2381] = {.lex_state = 85}, + [2382] = {.lex_state = 85}, + [2383] = {.lex_state = 85}, + [2384] = {.lex_state = 85}, + [2385] = {.lex_state = 85}, + [2386] = {.lex_state = 85}, + [2387] = {.lex_state = 85}, + [2388] = {.lex_state = 85}, + [2389] = {.lex_state = 85}, + [2390] = {.lex_state = 85}, + [2391] = {.lex_state = 85}, + [2392] = {.lex_state = 85}, + [2393] = {.lex_state = 85}, + [2394] = {.lex_state = 85}, + [2395] = {.lex_state = 85}, + [2396] = {.lex_state = 85}, + [2397] = {.lex_state = 85}, + [2398] = {.lex_state = 85}, + [2399] = {.lex_state = 85}, + [2400] = {.lex_state = 85}, + [2401] = {.lex_state = 85}, + [2402] = {.lex_state = 85}, + [2403] = {.lex_state = 85}, + [2404] = {.lex_state = 85}, + [2405] = {.lex_state = 85}, + [2406] = {.lex_state = 61}, + [2407] = {.lex_state = 85}, + [2408] = {.lex_state = 85}, + [2409] = {.lex_state = 85}, + [2410] = {.lex_state = 85}, + [2411] = {.lex_state = 85}, + [2412] = {.lex_state = 85}, + [2413] = {.lex_state = 85}, + [2414] = {.lex_state = 85}, + [2415] = {.lex_state = 85}, + [2416] = {.lex_state = 85}, + [2417] = {.lex_state = 85}, + [2418] = {.lex_state = 85}, + [2419] = {.lex_state = 85}, + [2420] = {.lex_state = 85}, + [2421] = {.lex_state = 85}, + [2422] = {.lex_state = 85}, + [2423] = {.lex_state = 85}, + [2424] = {.lex_state = 85}, + [2425] = {.lex_state = 85}, + [2426] = {.lex_state = 85}, + [2427] = {.lex_state = 85}, + [2428] = {.lex_state = 85}, + [2429] = {.lex_state = 85}, + [2430] = {.lex_state = 85}, + [2431] = {.lex_state = 85}, + [2432] = {.lex_state = 85}, + [2433] = {.lex_state = 85}, + [2434] = {.lex_state = 85}, + [2435] = {.lex_state = 85}, + [2436] = {.lex_state = 85}, + [2437] = {.lex_state = 85}, + [2438] = {.lex_state = 85}, + [2439] = {.lex_state = 85}, + [2440] = {.lex_state = 85}, + [2441] = {.lex_state = 85}, + [2442] = {.lex_state = 85}, + [2443] = {.lex_state = 85}, + [2444] = {.lex_state = 85}, + [2445] = {.lex_state = 85}, + [2446] = {.lex_state = 85}, + [2447] = {.lex_state = 85}, + [2448] = {.lex_state = 85}, + [2449] = {.lex_state = 61}, + [2450] = {.lex_state = 85}, + [2451] = {.lex_state = 85}, + [2452] = {.lex_state = 85}, + [2453] = {.lex_state = 85}, + [2454] = {.lex_state = 85}, + [2455] = {.lex_state = 61}, + [2456] = {.lex_state = 85}, + [2457] = {.lex_state = 85}, + [2458] = {.lex_state = 85}, + [2459] = {.lex_state = 85}, + [2460] = {.lex_state = 85}, + [2461] = {.lex_state = 85}, + [2462] = {.lex_state = 61}, + [2463] = {.lex_state = 85}, + [2464] = {.lex_state = 61}, + [2465] = {.lex_state = 85}, + [2466] = {.lex_state = 85}, + [2467] = {.lex_state = 85}, + [2468] = {.lex_state = 85}, + [2469] = {.lex_state = 85}, + [2470] = {.lex_state = 85}, + [2471] = {.lex_state = 85}, + [2472] = {.lex_state = 85}, + [2473] = {.lex_state = 85}, + [2474] = {.lex_state = 85}, + [2475] = {.lex_state = 85}, + [2476] = {.lex_state = 85}, + [2477] = {.lex_state = 85}, + [2478] = {.lex_state = 85}, + [2479] = {.lex_state = 85}, + [2480] = {.lex_state = 85}, + [2481] = {.lex_state = 85}, + [2482] = {.lex_state = 61}, + [2483] = {.lex_state = 85}, + [2484] = {.lex_state = 85}, + [2485] = {.lex_state = 85}, + [2486] = {.lex_state = 85}, + [2487] = {.lex_state = 85}, + [2488] = {.lex_state = 85}, + [2489] = {.lex_state = 85}, + [2490] = {.lex_state = 85}, + [2491] = {.lex_state = 85}, + [2492] = {.lex_state = 85}, + [2493] = {.lex_state = 85}, + [2494] = {.lex_state = 85}, + [2495] = {.lex_state = 85}, + [2496] = {.lex_state = 85}, + [2497] = {.lex_state = 85}, + [2498] = {.lex_state = 85}, + [2499] = {.lex_state = 85}, + [2500] = {.lex_state = 85}, + [2501] = {.lex_state = 85}, + [2502] = {.lex_state = 61}, + [2503] = {.lex_state = 85}, + [2504] = {.lex_state = 59}, + [2505] = {.lex_state = 85}, + [2506] = {.lex_state = 85}, + [2507] = {.lex_state = 85}, + [2508] = {.lex_state = 85}, + [2509] = {.lex_state = 85}, + [2510] = {.lex_state = 85}, + [2511] = {.lex_state = 61}, + [2512] = {.lex_state = 61}, + [2513] = {.lex_state = 85}, + [2514] = {.lex_state = 85}, + [2515] = {.lex_state = 85}, + [2516] = {.lex_state = 85}, + [2517] = {.lex_state = 85}, + [2518] = {.lex_state = 85}, + [2519] = {.lex_state = 85}, + [2520] = {.lex_state = 85}, + [2521] = {.lex_state = 85}, + [2522] = {.lex_state = 85}, + [2523] = {.lex_state = 85}, + [2524] = {.lex_state = 85}, + [2525] = {.lex_state = 85}, + [2526] = {.lex_state = 85}, + [2527] = {.lex_state = 85}, + [2528] = {.lex_state = 85}, + [2529] = {.lex_state = 85}, + [2530] = {.lex_state = 85}, + [2531] = {.lex_state = 85}, + [2532] = {.lex_state = 85}, + [2533] = {.lex_state = 85}, + [2534] = {.lex_state = 85}, + [2535] = {.lex_state = 85}, + [2536] = {.lex_state = 85}, + [2537] = {.lex_state = 85}, + [2538] = {.lex_state = 85}, + [2539] = {.lex_state = 85}, + [2540] = {.lex_state = 85}, + [2541] = {.lex_state = 85}, + [2542] = {.lex_state = 85}, + [2543] = {.lex_state = 85}, + [2544] = {.lex_state = 85}, + [2545] = {.lex_state = 85}, + [2546] = {.lex_state = 85}, + [2547] = {.lex_state = 85}, + [2548] = {.lex_state = 85}, + [2549] = {.lex_state = 85}, + [2550] = {.lex_state = 85}, + [2551] = {.lex_state = 85}, + [2552] = {.lex_state = 85}, + [2553] = {.lex_state = 85}, + [2554] = {.lex_state = 85}, + [2555] = {.lex_state = 85}, + [2556] = {.lex_state = 85}, + [2557] = {.lex_state = 85}, + [2558] = {.lex_state = 85}, + [2559] = {.lex_state = 85}, + [2560] = {.lex_state = 61}, + [2561] = {.lex_state = 85}, + [2562] = {.lex_state = 85}, + [2563] = {.lex_state = 85}, + [2564] = {.lex_state = 61}, + [2565] = {.lex_state = 85}, + [2566] = {.lex_state = 85}, + [2567] = {.lex_state = 85}, + [2568] = {.lex_state = 85}, + [2569] = {.lex_state = 85}, + [2570] = {.lex_state = 85}, + [2571] = {.lex_state = 85}, + [2572] = {.lex_state = 85}, + [2573] = {.lex_state = 85}, + [2574] = {.lex_state = 85}, + [2575] = {.lex_state = 85}, + [2576] = {.lex_state = 85}, + [2577] = {.lex_state = 85}, + [2578] = {.lex_state = 85}, + [2579] = {.lex_state = 85}, + [2580] = {.lex_state = 85}, + [2581] = {.lex_state = 85}, + [2582] = {.lex_state = 85}, + [2583] = {.lex_state = 85}, + [2584] = {.lex_state = 85}, + [2585] = {.lex_state = 85}, + [2586] = {.lex_state = 85}, + [2587] = {.lex_state = 85}, + [2588] = {.lex_state = 85}, + [2589] = {.lex_state = 85}, + [2590] = {.lex_state = 85}, + [2591] = {.lex_state = 85}, + [2592] = {.lex_state = 85}, + [2593] = {.lex_state = 85}, + [2594] = {.lex_state = 85}, + [2595] = {.lex_state = 85}, + [2596] = {.lex_state = 85}, + [2597] = {.lex_state = 85}, + [2598] = {.lex_state = 85}, + [2599] = {.lex_state = 85}, + [2600] = {.lex_state = 85}, + [2601] = {.lex_state = 85}, + [2602] = {.lex_state = 85}, + [2603] = {.lex_state = 85}, + [2604] = {.lex_state = 85}, + [2605] = {.lex_state = 85}, + [2606] = {.lex_state = 85}, + [2607] = {.lex_state = 85}, + [2608] = {.lex_state = 85}, + [2609] = {.lex_state = 85}, + [2610] = {.lex_state = 85}, + [2611] = {.lex_state = 85}, + [2612] = {.lex_state = 85}, + [2613] = {.lex_state = 85}, + [2614] = {.lex_state = 85}, + [2615] = {.lex_state = 85}, + [2616] = {.lex_state = 85}, + [2617] = {.lex_state = 85}, + [2618] = {.lex_state = 61}, + [2619] = {.lex_state = 85}, + [2620] = {.lex_state = 85}, + [2621] = {.lex_state = 61}, + [2622] = {.lex_state = 85}, + [2623] = {.lex_state = 85}, + [2624] = {.lex_state = 85}, + [2625] = {.lex_state = 85}, + [2626] = {.lex_state = 85}, + [2627] = {.lex_state = 85}, + [2628] = {.lex_state = 85}, + [2629] = {.lex_state = 85}, + [2630] = {.lex_state = 85}, + [2631] = {.lex_state = 85}, + [2632] = {.lex_state = 85}, + [2633] = {.lex_state = 85}, + [2634] = {.lex_state = 85}, + [2635] = {.lex_state = 85}, + [2636] = {.lex_state = 61}, + [2637] = {.lex_state = 85}, + [2638] = {.lex_state = 85}, + [2639] = {.lex_state = 85}, + [2640] = {.lex_state = 85}, + [2641] = {.lex_state = 85}, + [2642] = {.lex_state = 85}, + [2643] = {.lex_state = 85}, + [2644] = {.lex_state = 85}, + [2645] = {.lex_state = 85}, + [2646] = {.lex_state = 85}, + [2647] = {.lex_state = 85}, + [2648] = {.lex_state = 85}, + [2649] = {.lex_state = 85}, + [2650] = {.lex_state = 85}, + [2651] = {.lex_state = 85}, + [2652] = {.lex_state = 85}, + [2653] = {.lex_state = 85}, + [2654] = {.lex_state = 85}, + [2655] = {.lex_state = 85}, + [2656] = {.lex_state = 85}, + [2657] = {.lex_state = 85}, + [2658] = {.lex_state = 85}, + [2659] = {.lex_state = 85}, + [2660] = {.lex_state = 85}, + [2661] = {.lex_state = 85}, + [2662] = {.lex_state = 85}, + [2663] = {.lex_state = 85}, + [2664] = {.lex_state = 85}, + [2665] = {.lex_state = 85}, + [2666] = {.lex_state = 85}, + [2667] = {.lex_state = 85}, + [2668] = {.lex_state = 85}, + [2669] = {.lex_state = 85}, + [2670] = {.lex_state = 85}, + [2671] = {.lex_state = 85}, + [2672] = {.lex_state = 85}, + [2673] = {.lex_state = 85}, + [2674] = {.lex_state = 85}, + [2675] = {.lex_state = 85}, + [2676] = {.lex_state = 85}, + [2677] = {.lex_state = 85}, + [2678] = {.lex_state = 85}, + [2679] = {.lex_state = 85}, + [2680] = {.lex_state = 61}, + [2681] = {.lex_state = 85}, + [2682] = {.lex_state = 85}, + [2683] = {.lex_state = 85}, + [2684] = {.lex_state = 85}, + [2685] = {.lex_state = 85}, + [2686] = {.lex_state = 85}, + [2687] = {.lex_state = 85}, + [2688] = {.lex_state = 85}, + [2689] = {.lex_state = 85}, + [2690] = {.lex_state = 85}, + [2691] = {.lex_state = 85}, + [2692] = {.lex_state = 85}, + [2693] = {.lex_state = 85}, + [2694] = {.lex_state = 85}, + [2695] = {.lex_state = 85}, + [2696] = {.lex_state = 85}, + [2697] = {.lex_state = 85}, + [2698] = {.lex_state = 85}, + [2699] = {.lex_state = 85}, + [2700] = {.lex_state = 85}, + [2701] = {.lex_state = 85}, + [2702] = {.lex_state = 85}, + [2703] = {.lex_state = 61}, + [2704] = {.lex_state = 85}, + [2705] = {.lex_state = 85}, + [2706] = {.lex_state = 85}, + [2707] = {.lex_state = 85}, + [2708] = {.lex_state = 61}, + [2709] = {.lex_state = 85}, + [2710] = {.lex_state = 85}, + [2711] = {.lex_state = 85}, + [2712] = {.lex_state = 85}, + [2713] = {.lex_state = 85}, + [2714] = {.lex_state = 85}, + [2715] = {.lex_state = 85}, + [2716] = {.lex_state = 85}, + [2717] = {.lex_state = 85}, + [2718] = {.lex_state = 85}, + [2719] = {.lex_state = 85}, + [2720] = {.lex_state = 85}, + [2721] = {.lex_state = 85}, + [2722] = {.lex_state = 85}, + [2723] = {.lex_state = 85}, + [2724] = {.lex_state = 85}, + [2725] = {.lex_state = 85}, + [2726] = {.lex_state = 85}, + [2727] = {.lex_state = 85}, + [2728] = {.lex_state = 61}, + [2729] = {.lex_state = 85}, + [2730] = {.lex_state = 85}, + [2731] = {.lex_state = 85}, + [2732] = {.lex_state = 85}, + [2733] = {.lex_state = 85}, + [2734] = {.lex_state = 61}, + [2735] = {.lex_state = 85}, + [2736] = {.lex_state = 85}, + [2737] = {.lex_state = 85}, + [2738] = {.lex_state = 59}, + [2739] = {.lex_state = 59}, + [2740] = {.lex_state = 59}, + [2741] = {.lex_state = 59}, + [2742] = {.lex_state = 51}, + [2743] = {.lex_state = 51}, + [2744] = {.lex_state = 59}, + [2745] = {.lex_state = 59}, + [2746] = {.lex_state = 59}, + [2747] = {.lex_state = 59}, + [2748] = {.lex_state = 59}, + [2749] = {.lex_state = 59}, + [2750] = {.lex_state = 59}, + [2751] = {.lex_state = 59}, + [2752] = {.lex_state = 59}, + [2753] = {.lex_state = 59}, + [2754] = {.lex_state = 51}, + [2755] = {.lex_state = 51}, + [2756] = {.lex_state = 59}, + [2757] = {.lex_state = 51}, + [2758] = {.lex_state = 51}, + [2759] = {.lex_state = 59}, + [2760] = {.lex_state = 51}, + [2761] = {.lex_state = 51}, + [2762] = {.lex_state = 51}, + [2763] = {.lex_state = 51}, + [2764] = {.lex_state = 51}, + [2765] = {.lex_state = 51}, + [2766] = {.lex_state = 51}, + [2767] = {.lex_state = 51}, + [2768] = {.lex_state = 51}, + [2769] = {.lex_state = 51}, + [2770] = {.lex_state = 51}, + [2771] = {.lex_state = 51}, + [2772] = {.lex_state = 51}, + [2773] = {.lex_state = 59}, + [2774] = {.lex_state = 59}, + [2775] = {.lex_state = 58}, + [2776] = {.lex_state = 54}, + [2777] = {.lex_state = 48}, + [2778] = {.lex_state = 49}, + [2779] = {.lex_state = 49}, + [2780] = {.lex_state = 49}, + [2781] = {.lex_state = 49}, + [2782] = {.lex_state = 49}, + [2783] = {.lex_state = 49}, + [2784] = {.lex_state = 47}, + [2785] = {.lex_state = 49}, + [2786] = {.lex_state = 49}, + [2787] = {.lex_state = 49}, + [2788] = {.lex_state = 49}, + [2789] = {.lex_state = 49}, + [2790] = {.lex_state = 49}, + [2791] = {.lex_state = 49}, + [2792] = {.lex_state = 49}, + [2793] = {.lex_state = 45}, + [2794] = {.lex_state = 45}, + [2795] = {.lex_state = 45}, + [2796] = {.lex_state = 45}, + [2797] = {.lex_state = 45}, + [2798] = {.lex_state = 45}, + [2799] = {.lex_state = 45}, + [2800] = {.lex_state = 45}, + [2801] = {.lex_state = 58}, + [2802] = {.lex_state = 45}, [2803] = {.lex_state = 45}, - [2804] = {.lex_state = 47}, - [2805] = {.lex_state = 50}, - [2806] = {.lex_state = 43}, - [2807] = {.lex_state = 50}, - [2808] = {.lex_state = 51}, - [2809] = {.lex_state = 50}, - [2810] = {.lex_state = 45}, - [2811] = {.lex_state = 45}, - [2812] = {.lex_state = 43}, - [2813] = {.lex_state = 43}, - [2814] = {.lex_state = 47}, - [2815] = {.lex_state = 45}, - [2816] = {.lex_state = 45}, - [2817] = {.lex_state = 47}, - [2818] = {.lex_state = 43}, - [2819] = {.lex_state = 51}, - [2820] = {.lex_state = 50}, - [2821] = {.lex_state = 43}, - [2822] = {.lex_state = 50}, + [2804] = {.lex_state = 45}, + [2805] = {.lex_state = 48}, + [2806] = {.lex_state = 45}, + [2807] = {.lex_state = 45}, + [2808] = {.lex_state = 56}, + [2809] = {.lex_state = 54}, + [2810] = {.lex_state = 48}, + [2811] = {.lex_state = 54}, + [2812] = {.lex_state = 54}, + [2813] = {.lex_state = 48}, + [2814] = {.lex_state = 49}, + [2815] = {.lex_state = 56}, + [2816] = {.lex_state = 48}, + [2817] = {.lex_state = 56}, + [2818] = {.lex_state = 56}, + [2819] = {.lex_state = 54}, + [2820] = {.lex_state = 45}, + [2821] = {.lex_state = 45}, + [2822] = {.lex_state = 45}, [2823] = {.lex_state = 45}, [2824] = {.lex_state = 45}, - [2825] = {.lex_state = 50}, - [2826] = {.lex_state = 43}, - [2827] = {.lex_state = 43}, - [2828] = {.lex_state = 45}, - [2829] = {.lex_state = 50}, - [2830] = {.lex_state = 50}, - [2831] = {.lex_state = 43}, - [2832] = {.lex_state = 50}, - [2833] = {.lex_state = 47}, - [2834] = {.lex_state = 50}, - [2835] = {.lex_state = 50}, - [2836] = {.lex_state = 45}, - [2837] = {.lex_state = 45}, - [2838] = {.lex_state = 45}, - [2839] = {.lex_state = 51}, - [2840] = {.lex_state = 44}, - [2841] = {.lex_state = 49}, - [2842] = {.lex_state = 52}, - [2843] = {.lex_state = 49}, - [2844] = {.lex_state = 46}, + [2825] = {.lex_state = 58}, + [2826] = {.lex_state = 45}, + [2827] = {.lex_state = 58}, + [2828] = {.lex_state = 58}, + [2829] = {.lex_state = 49}, + [2830] = {.lex_state = 54}, + [2831] = {.lex_state = 54}, + [2832] = {.lex_state = 54}, + [2833] = {.lex_state = 54}, + [2834] = {.lex_state = 58}, + [2835] = {.lex_state = 58}, + [2836] = {.lex_state = 54}, + [2837] = {.lex_state = 48}, + [2838] = {.lex_state = 58}, + [2839] = {.lex_state = 46}, + [2840] = {.lex_state = 54}, + [2841] = {.lex_state = 58}, + [2842] = {.lex_state = 56}, + [2843] = {.lex_state = 58}, + [2844] = {.lex_state = 54}, [2845] = {.lex_state = 48}, - [2846] = {.lex_state = 48}, - [2847] = {.lex_state = 49}, - [2848] = {.lex_state = 49}, - [2849] = {.lex_state = 48}, - [2850] = {.lex_state = 49}, - [2851] = {.lex_state = 49}, - [2852] = {.lex_state = 49}, - [2853] = {.lex_state = 49}, - [2854] = {.lex_state = 52}, - [2855] = {.lex_state = 48}, - [2856] = {.lex_state = 49}, - [2857] = {.lex_state = 46}, - [2858] = {.lex_state = 52}, - [2859] = {.lex_state = 52}, - [2860] = {.lex_state = 48}, - [2861] = {.lex_state = 46}, - [2862] = {.lex_state = 78}, - [2863] = {.lex_state = 46}, - [2864] = {.lex_state = 78}, - [2865] = {.lex_state = 49}, - [2866] = {.lex_state = 49}, - [2867] = {.lex_state = 46}, - [2868] = {.lex_state = 49}, - [2869] = {.lex_state = 46}, - [2870] = {.lex_state = 52}, - [2871] = {.lex_state = 78}, - [2872] = {.lex_state = 48}, - [2873] = {.lex_state = 46}, - [2874] = {.lex_state = 46}, - [2875] = {.lex_state = 52}, - [2876] = {.lex_state = 48}, - [2877] = {.lex_state = 52}, - [2878] = {.lex_state = 78}, - [2879] = {.lex_state = 46}, - [2880] = {.lex_state = 48}, + [2846] = {.lex_state = 58}, + [2847] = {.lex_state = 48}, + [2848] = {.lex_state = 48}, + [2849] = {.lex_state = 54}, + [2850] = {.lex_state = 48}, + [2851] = {.lex_state = 58}, + [2852] = {.lex_state = 58}, + [2853] = {.lex_state = 54}, + [2854] = {.lex_state = 56}, + [2855] = {.lex_state = 58}, + [2856] = {.lex_state = 48}, + [2857] = {.lex_state = 56}, + [2858] = {.lex_state = 48}, + [2859] = {.lex_state = 56}, + [2860] = {.lex_state = 56}, + [2861] = {.lex_state = 48}, + [2862] = {.lex_state = 48}, + [2863] = {.lex_state = 56}, + [2864] = {.lex_state = 56}, + [2865] = {.lex_state = 56}, + [2866] = {.lex_state = 56}, + [2867] = {.lex_state = 56}, + [2868] = {.lex_state = 54}, + [2869] = {.lex_state = 56}, + [2870] = {.lex_state = 49}, + [2871] = {.lex_state = 49}, + [2872] = {.lex_state = 58}, + [2873] = {.lex_state = 56}, + [2874] = {.lex_state = 54}, + [2875] = {.lex_state = 56}, + [2876] = {.lex_state = 56}, + [2877] = {.lex_state = 48}, + [2878] = {.lex_state = 48}, + [2879] = {.lex_state = 58}, + [2880] = {.lex_state = 56}, [2881] = {.lex_state = 48}, - [2882] = {.lex_state = 52}, - [2883] = {.lex_state = 48}, - [2884] = {.lex_state = 52}, - [2885] = {.lex_state = 46}, - [2886] = {.lex_state = 78}, - [2887] = {.lex_state = 52}, - [2888] = {.lex_state = 48}, - [2889] = {.lex_state = 46}, - [2890] = {.lex_state = 48}, - [2891] = {.lex_state = 52}, - [2892] = {.lex_state = 46}, - [2893] = {.lex_state = 52}, - [2894] = {.lex_state = 0}, - [2895] = {.lex_state = 0}, - [2896] = {.lex_state = 0}, - [2897] = {.lex_state = 77}, - [2898] = {.lex_state = 77}, - [2899] = {.lex_state = 77}, - [2900] = {.lex_state = 77}, - [2901] = {.lex_state = 77}, - [2902] = {.lex_state = 77}, - [2903] = {.lex_state = 77}, - [2904] = {.lex_state = 77}, - [2905] = {.lex_state = 77}, - [2906] = {.lex_state = 77}, - [2907] = {.lex_state = 77}, - [2908] = {.lex_state = 77}, - [2909] = {.lex_state = 77}, - [2910] = {.lex_state = 77}, - [2911] = {.lex_state = 77}, - [2912] = {.lex_state = 77}, - [2913] = {.lex_state = 77}, - [2914] = {.lex_state = 77}, - [2915] = {.lex_state = 77}, - [2916] = {.lex_state = 77}, - [2917] = {.lex_state = 77}, - [2918] = {.lex_state = 77}, - [2919] = {.lex_state = 77}, - [2920] = {.lex_state = 77}, - [2921] = {.lex_state = 77}, - [2922] = {.lex_state = 77}, - [2923] = {.lex_state = 77}, - [2924] = {.lex_state = 77}, - [2925] = {.lex_state = 77}, - [2926] = {.lex_state = 77}, - [2927] = {.lex_state = 77}, - [2928] = {.lex_state = 77}, - [2929] = {.lex_state = 77}, - [2930] = {.lex_state = 77}, - [2931] = {.lex_state = 77}, - [2932] = {.lex_state = 77}, - [2933] = {.lex_state = 77}, - [2934] = {.lex_state = 76}, - [2935] = {.lex_state = 76}, - [2936] = {.lex_state = 76}, - [2937] = {.lex_state = 76}, - [2938] = {.lex_state = 76}, - [2939] = {.lex_state = 76}, - [2940] = {.lex_state = 76}, - [2941] = {.lex_state = 76}, - [2942] = {.lex_state = 83}, - [2943] = {.lex_state = 77}, - [2944] = {.lex_state = 77}, - [2945] = {.lex_state = 83}, - [2946] = {.lex_state = 83}, - [2947] = {.lex_state = 83}, - [2948] = {.lex_state = 77}, - [2949] = {.lex_state = 77}, - [2950] = {.lex_state = 77}, - [2951] = {.lex_state = 83}, - [2952] = {.lex_state = 83}, - [2953] = {.lex_state = 77}, - [2954] = {.lex_state = 77}, - [2955] = {.lex_state = 83}, - [2956] = {.lex_state = 83}, - [2957] = {.lex_state = 83}, - [2958] = {.lex_state = 83}, - [2959] = {.lex_state = 83}, - [2960] = {.lex_state = 83}, - [2961] = {.lex_state = 83}, - [2962] = {.lex_state = 77}, - [2963] = {.lex_state = 83}, - [2964] = {.lex_state = 78}, - [2965] = {.lex_state = 78}, - [2966] = {.lex_state = 78}, - [2967] = {.lex_state = 78}, - [2968] = {.lex_state = 78}, - [2969] = {.lex_state = 79}, - [2970] = {.lex_state = 78}, - [2971] = {.lex_state = 79}, - [2972] = {.lex_state = 78}, - [2973] = {.lex_state = 78}, - [2974] = {.lex_state = 83}, - [2975] = {.lex_state = 79}, - [2976] = {.lex_state = 100}, - [2977] = {.lex_state = 79}, - [2978] = {.lex_state = 79}, - [2979] = {.lex_state = 79}, - [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 79}, - [2982] = {.lex_state = 79}, - [2983] = {.lex_state = 79}, - [2984] = {.lex_state = 79}, - [2985] = {.lex_state = 79}, - [2986] = {.lex_state = 79}, - [2987] = {.lex_state = 79}, - [2988] = {.lex_state = 79}, - [2989] = {.lex_state = 0}, - [2990] = {.lex_state = 100}, - [2991] = {.lex_state = 0}, - [2992] = {.lex_state = 73}, - [2993] = {.lex_state = 79}, - [2994] = {.lex_state = 79}, - [2995] = {.lex_state = 79}, - [2996] = {.lex_state = 79}, - [2997] = {.lex_state = 79}, - [2998] = {.lex_state = 80}, - [2999] = {.lex_state = 0}, - [3000] = {.lex_state = 79}, - [3001] = {.lex_state = 79}, - [3002] = {.lex_state = 79}, - [3003] = {.lex_state = 0}, - [3004] = {.lex_state = 79}, - [3005] = {.lex_state = 79}, - [3006] = {.lex_state = 84}, - [3007] = {.lex_state = 79}, - [3008] = {.lex_state = 0}, - [3009] = {.lex_state = 79}, - [3010] = {.lex_state = 79}, - [3011] = {.lex_state = 84}, - [3012] = {.lex_state = 0}, - [3013] = {.lex_state = 79}, - [3014] = {.lex_state = 0}, - [3015] = {.lex_state = 79}, - [3016] = {.lex_state = 80}, - [3017] = {.lex_state = 79}, + [2882] = {.lex_state = 48}, + [2883] = {.lex_state = 58}, + [2884] = {.lex_state = 58}, + [2885] = {.lex_state = 54}, + [2886] = {.lex_state = 54}, + [2887] = {.lex_state = 54}, + [2888] = {.lex_state = 49}, + [2889] = {.lex_state = 48}, + [2890] = {.lex_state = 58}, + [2891] = {.lex_state = 47}, + [2892] = {.lex_state = 50}, + [2893] = {.lex_state = 50}, + [2894] = {.lex_state = 57}, + [2895] = {.lex_state = 50}, + [2896] = {.lex_state = 50}, + [2897] = {.lex_state = 57}, + [2898] = {.lex_state = 50}, + [2899] = {.lex_state = 55}, + [2900] = {.lex_state = 57}, + [2901] = {.lex_state = 50}, + [2902] = {.lex_state = 57}, + [2903] = {.lex_state = 50}, + [2904] = {.lex_state = 57}, + [2905] = {.lex_state = 57}, + [2906] = {.lex_state = 50}, + [2907] = {.lex_state = 52}, + [2908] = {.lex_state = 50}, + [2909] = {.lex_state = 55}, + [2910] = {.lex_state = 57}, + [2911] = {.lex_state = 55}, + [2912] = {.lex_state = 55}, + [2913] = {.lex_state = 50}, + [2914] = {.lex_state = 55}, + [2915] = {.lex_state = 57}, + [2916] = {.lex_state = 55}, + [2917] = {.lex_state = 57}, + [2918] = {.lex_state = 55}, + [2919] = {.lex_state = 55}, + [2920] = {.lex_state = 55}, + [2921] = {.lex_state = 55}, + [2922] = {.lex_state = 55}, + [2923] = {.lex_state = 53}, + [2924] = {.lex_state = 55}, + [2925] = {.lex_state = 55}, + [2926] = {.lex_state = 55}, + [2927] = {.lex_state = 57}, + [2928] = {.lex_state = 55}, + [2929] = {.lex_state = 86}, + [2930] = {.lex_state = 52}, + [2931] = {.lex_state = 50}, + [2932] = {.lex_state = 52}, + [2933] = {.lex_state = 57}, + [2934] = {.lex_state = 52}, + [2935] = {.lex_state = 52}, + [2936] = {.lex_state = 57}, + [2937] = {.lex_state = 61}, + [2938] = {.lex_state = 50}, + [2939] = {.lex_state = 61}, + [2940] = {.lex_state = 52}, + [2941] = {.lex_state = 52}, + [2942] = {.lex_state = 52}, + [2943] = {.lex_state = 52}, + [2944] = {.lex_state = 52}, + [2945] = {.lex_state = 86}, + [2946] = {.lex_state = 52}, + [2947] = {.lex_state = 52}, + [2948] = {.lex_state = 52}, + [2949] = {.lex_state = 57}, + [2950] = {.lex_state = 53}, + [2951] = {.lex_state = 52}, + [2952] = {.lex_state = 57}, + [2953] = {.lex_state = 52}, + [2954] = {.lex_state = 50}, + [2955] = {.lex_state = 55}, + [2956] = {.lex_state = 53}, + [2957] = {.lex_state = 50}, + [2958] = {.lex_state = 52}, + [2959] = {.lex_state = 52}, + [2960] = {.lex_state = 61}, + [2961] = {.lex_state = 52}, + [2962] = {.lex_state = 50}, + [2963] = {.lex_state = 61}, + [2964] = {.lex_state = 50}, + [2965] = {.lex_state = 52}, + [2966] = {.lex_state = 53}, + [2967] = {.lex_state = 53}, + [2968] = {.lex_state = 53}, + [2969] = {.lex_state = 55}, + [2970] = {.lex_state = 57}, + [2971] = {.lex_state = 53}, + [2972] = {.lex_state = 53}, + [2973] = {.lex_state = 50}, + [2974] = {.lex_state = 50}, + [2975] = {.lex_state = 57}, + [2976] = {.lex_state = 61}, + [2977] = {.lex_state = 57}, + [2978] = {.lex_state = 53}, + [2979] = {.lex_state = 53}, + [2980] = {.lex_state = 57}, + [2981] = {.lex_state = 57}, + [2982] = {.lex_state = 55}, + [2983] = {.lex_state = 53}, + [2984] = {.lex_state = 53}, + [2985] = {.lex_state = 86}, + [2986] = {.lex_state = 53}, + [2987] = {.lex_state = 53}, + [2988] = {.lex_state = 55}, + [2989] = {.lex_state = 53}, + [2990] = {.lex_state = 53}, + [2991] = {.lex_state = 86}, + [2992] = {.lex_state = 53}, + [2993] = {.lex_state = 53}, + [2994] = {.lex_state = 53}, + [2995] = {.lex_state = 86}, + [2996] = {.lex_state = 50}, + [2997] = {.lex_state = 61}, + [2998] = {.lex_state = 61}, + [2999] = {.lex_state = 61}, + [3000] = {.lex_state = 87}, + [3001] = {.lex_state = 61}, + [3002] = {.lex_state = 61}, + [3003] = {.lex_state = 61}, + [3004] = {.lex_state = 61}, + [3005] = {.lex_state = 61}, + [3006] = {.lex_state = 61}, + [3007] = {.lex_state = 61}, + [3008] = {.lex_state = 61}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 61}, + [3011] = {.lex_state = 61}, + [3012] = {.lex_state = 87}, + [3013] = {.lex_state = 61}, + [3014] = {.lex_state = 87}, + [3015] = {.lex_state = 87}, + [3016] = {.lex_state = 0}, + [3017] = {.lex_state = 87}, [3018] = {.lex_state = 0}, - [3019] = {.lex_state = 0}, - [3020] = {.lex_state = 79}, - [3021] = {.lex_state = 79}, - [3022] = {.lex_state = 79}, - [3023] = {.lex_state = 0}, - [3024] = {.lex_state = 0}, - [3025] = {.lex_state = 53}, - [3026] = {.lex_state = 53}, - [3027] = {.lex_state = 53}, - [3028] = {.lex_state = 53}, - [3029] = {.lex_state = 53}, - [3030] = {.lex_state = 53}, - [3031] = {.lex_state = 53}, - [3032] = {.lex_state = 53}, - [3033] = {.lex_state = 53}, - [3034] = {.lex_state = 53}, - [3035] = {.lex_state = 53}, - [3036] = {.lex_state = 53}, - [3037] = {.lex_state = 53}, - [3038] = {.lex_state = 0}, - [3039] = {.lex_state = 53}, - [3040] = {.lex_state = 53}, - [3041] = {.lex_state = 53}, - [3042] = {.lex_state = 53}, - [3043] = {.lex_state = 53}, - [3044] = {.lex_state = 53}, - [3045] = {.lex_state = 0}, - [3046] = {.lex_state = 0}, - [3047] = {.lex_state = 53}, - [3048] = {.lex_state = 53}, - [3049] = {.lex_state = 0}, - [3050] = {.lex_state = 53}, - [3051] = {.lex_state = 53}, - [3052] = {.lex_state = 53}, - [3053] = {.lex_state = 53}, - [3054] = {.lex_state = 53}, - [3055] = {.lex_state = 53}, - [3056] = {.lex_state = 53}, - [3057] = {.lex_state = 53}, - [3058] = {.lex_state = 53}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 0}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 53}, - [3063] = {.lex_state = 53}, - [3064] = {.lex_state = 53}, - [3065] = {.lex_state = 53}, - [3066] = {.lex_state = 53}, - [3067] = {.lex_state = 0}, - [3068] = {.lex_state = 53}, - [3069] = {.lex_state = 53}, - [3070] = {.lex_state = 53}, - [3071] = {.lex_state = 53}, - [3072] = {.lex_state = 53}, - [3073] = {.lex_state = 0}, - [3074] = {.lex_state = 53}, - [3075] = {.lex_state = 53}, - [3076] = {.lex_state = 53}, - [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 53}, - [3079] = {.lex_state = 53}, - [3080] = {.lex_state = 53}, - [3081] = {.lex_state = 53}, - [3082] = {.lex_state = 53}, - [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 53}, - [3085] = {.lex_state = 53}, - [3086] = {.lex_state = 53}, - [3087] = {.lex_state = 53}, - [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 53}, - [3090] = {.lex_state = 79}, - [3091] = {.lex_state = 0}, - [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 53}, - [3094] = {.lex_state = 80}, - [3095] = {.lex_state = 53}, - [3096] = {.lex_state = 53}, - [3097] = {.lex_state = 53}, - [3098] = {.lex_state = 53}, - [3099] = {.lex_state = 53}, - [3100] = {.lex_state = 53}, - [3101] = {.lex_state = 53}, - [3102] = {.lex_state = 53}, - [3103] = {.lex_state = 53}, - [3104] = {.lex_state = 0}, - [3105] = {.lex_state = 53}, - [3106] = {.lex_state = 53}, - [3107] = {.lex_state = 53}, - [3108] = {.lex_state = 79}, - [3109] = {.lex_state = 73}, - [3110] = {.lex_state = 53}, - [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 53}, + [3019] = {.lex_state = 88}, + [3020] = {.lex_state = 88}, + [3021] = {.lex_state = 88}, + [3022] = {.lex_state = 88}, + [3023] = {.lex_state = 88}, + [3024] = {.lex_state = 87}, + [3025] = {.lex_state = 87}, + [3026] = {.lex_state = 87}, + [3027] = {.lex_state = 87}, + [3028] = {.lex_state = 87}, + [3029] = {.lex_state = 87}, + [3030] = {.lex_state = 94}, + [3031] = {.lex_state = 94}, + [3032] = {.lex_state = 87}, + [3033] = {.lex_state = 87}, + [3034] = {.lex_state = 87}, + [3035] = {.lex_state = 87}, + [3036] = {.lex_state = 87}, + [3037] = {.lex_state = 87}, + [3038] = {.lex_state = 87}, + [3039] = {.lex_state = 87}, + [3040] = {.lex_state = 87}, + [3041] = {.lex_state = 94}, + [3042] = {.lex_state = 87}, + [3043] = {.lex_state = 87}, + [3044] = {.lex_state = 87}, + [3045] = {.lex_state = 87}, + [3046] = {.lex_state = 87}, + [3047] = {.lex_state = 87}, + [3048] = {.lex_state = 87}, + [3049] = {.lex_state = 87}, + [3050] = {.lex_state = 87}, + [3051] = {.lex_state = 87}, + [3052] = {.lex_state = 87}, + [3053] = {.lex_state = 87}, + [3054] = {.lex_state = 87}, + [3055] = {.lex_state = 87}, + [3056] = {.lex_state = 94}, + [3057] = {.lex_state = 87}, + [3058] = {.lex_state = 87}, + [3059] = {.lex_state = 87}, + [3060] = {.lex_state = 87}, + [3061] = {.lex_state = 87}, + [3062] = {.lex_state = 87}, + [3063] = {.lex_state = 87}, + [3064] = {.lex_state = 94}, + [3065] = {.lex_state = 87}, + [3066] = {.lex_state = 87}, + [3067] = {.lex_state = 94}, + [3068] = {.lex_state = 94}, + [3069] = {.lex_state = 87}, + [3070] = {.lex_state = 87}, + [3071] = {.lex_state = 86}, + [3072] = {.lex_state = 86}, + [3073] = {.lex_state = 86}, + [3074] = {.lex_state = 86}, + [3075] = {.lex_state = 86}, + [3076] = {.lex_state = 86}, + [3077] = {.lex_state = 86}, + [3078] = {.lex_state = 86}, + [3079] = {.lex_state = 87}, + [3080] = {.lex_state = 87}, + [3081] = {.lex_state = 87}, + [3082] = {.lex_state = 87}, + [3083] = {.lex_state = 87}, + [3084] = {.lex_state = 87}, + [3085] = {.lex_state = 87}, + [3086] = {.lex_state = 87}, + [3087] = {.lex_state = 88}, + [3088] = {.lex_state = 88}, + [3089] = {.lex_state = 88}, + [3090] = {.lex_state = 89}, + [3091] = {.lex_state = 88}, + [3092] = {.lex_state = 88}, + [3093] = {.lex_state = 89}, + [3094] = {.lex_state = 88}, + [3095] = {.lex_state = 88}, + [3096] = {.lex_state = 89}, + [3097] = {.lex_state = 94}, + [3098] = {.lex_state = 88}, + [3099] = {.lex_state = 89}, + [3100] = {.lex_state = 112}, + [3101] = {.lex_state = 89}, + [3102] = {.lex_state = 0}, + [3103] = {.lex_state = 0}, + [3104] = {.lex_state = 82}, + [3105] = {.lex_state = 0}, + [3106] = {.lex_state = 0}, + [3107] = {.lex_state = 95}, + [3108] = {.lex_state = 0}, + [3109] = {.lex_state = 0}, + [3110] = {.lex_state = 0}, + [3111] = {.lex_state = 89}, + [3112] = {.lex_state = 0}, [3113] = {.lex_state = 0}, - [3114] = {.lex_state = 0}, + [3114] = {.lex_state = 95}, [3115] = {.lex_state = 0}, - [3116] = {.lex_state = 0}, - [3117] = {.lex_state = 53}, - [3118] = {.lex_state = 53}, + [3116] = {.lex_state = 94}, + [3117] = {.lex_state = 0}, + [3118] = {.lex_state = 94}, [3119] = {.lex_state = 0}, [3120] = {.lex_state = 0}, - [3121] = {.lex_state = 53}, + [3121] = {.lex_state = 0}, [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 53}, - [3124] = {.lex_state = 79}, - [3125] = {.lex_state = 53}, - [3126] = {.lex_state = 53}, - [3127] = {.lex_state = 53}, - [3128] = {.lex_state = 53}, - [3129] = {.lex_state = 0}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 0}, + [3125] = {.lex_state = 90}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 0}, + [3128] = {.lex_state = 94}, + [3129] = {.lex_state = 94}, [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 53}, - [3132] = {.lex_state = 53}, - [3133] = {.lex_state = 53}, - [3134] = {.lex_state = 53}, - [3135] = {.lex_state = 53}, - [3136] = {.lex_state = 53}, - [3137] = {.lex_state = 53}, - [3138] = {.lex_state = 53}, - [3139] = {.lex_state = 53}, - [3140] = {.lex_state = 53}, - [3141] = {.lex_state = 53}, - [3142] = {.lex_state = 53}, - [3143] = {.lex_state = 53}, - [3144] = {.lex_state = 53}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 0}, + [3133] = {.lex_state = 94}, + [3134] = {.lex_state = 0}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 89}, + [3137] = {.lex_state = 0}, + [3138] = {.lex_state = 94}, + [3139] = {.lex_state = 0}, + [3140] = {.lex_state = 0}, + [3141] = {.lex_state = 94}, + [3142] = {.lex_state = 0}, + [3143] = {.lex_state = 94}, + [3144] = {.lex_state = 0}, [3145] = {.lex_state = 0}, - [3146] = {.lex_state = 53}, - [3147] = {.lex_state = 79}, + [3146] = {.lex_state = 0}, + [3147] = {.lex_state = 0}, [3148] = {.lex_state = 0}, - [3149] = {.lex_state = 53}, - [3150] = {.lex_state = 53}, - [3151] = {.lex_state = 53}, - [3152] = {.lex_state = 53}, - [3153] = {.lex_state = 53}, - [3154] = {.lex_state = 53}, - [3155] = {.lex_state = 53}, - [3156] = {.lex_state = 53}, - [3157] = {.lex_state = 53}, - [3158] = {.lex_state = 53}, - [3159] = {.lex_state = 53}, - [3160] = {.lex_state = 79}, - [3161] = {.lex_state = 53}, - [3162] = {.lex_state = 53}, - [3163] = {.lex_state = 53}, - [3164] = {.lex_state = 53}, + [3149] = {.lex_state = 0}, + [3150] = {.lex_state = 94}, + [3151] = {.lex_state = 0}, + [3152] = {.lex_state = 112}, + [3153] = {.lex_state = 90}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 0}, + [3156] = {.lex_state = 0}, + [3157] = {.lex_state = 0}, + [3158] = {.lex_state = 94}, + [3159] = {.lex_state = 0}, + [3160] = {.lex_state = 0}, + [3161] = {.lex_state = 89}, + [3162] = {.lex_state = 89}, + [3163] = {.lex_state = 89}, + [3164] = {.lex_state = 0}, [3165] = {.lex_state = 0}, - [3166] = {.lex_state = 53}, - [3167] = {.lex_state = 53}, - [3168] = {.lex_state = 53}, - [3169] = {.lex_state = 53}, + [3166] = {.lex_state = 0}, + [3167] = {.lex_state = 0}, + [3168] = {.lex_state = 0}, + [3169] = {.lex_state = 89}, [3170] = {.lex_state = 0}, [3171] = {.lex_state = 0}, - [3172] = {.lex_state = 53}, - [3173] = {.lex_state = 53}, - [3174] = {.lex_state = 53}, - [3175] = {.lex_state = 53}, - [3176] = {.lex_state = 53}, - [3177] = {.lex_state = 53}, - [3178] = {.lex_state = 53}, - [3179] = {.lex_state = 97}, - [3180] = {.lex_state = 53}, - [3181] = {.lex_state = 53}, - [3182] = {.lex_state = 53}, - [3183] = {.lex_state = 53}, - [3184] = {.lex_state = 53}, - [3185] = {.lex_state = 0}, - [3186] = {.lex_state = 53}, - [3187] = {.lex_state = 53}, - [3188] = {.lex_state = 53}, - [3189] = {.lex_state = 0}, + [3172] = {.lex_state = 89}, + [3173] = {.lex_state = 59}, + [3174] = {.lex_state = 0}, + [3175] = {.lex_state = 0}, + [3176] = {.lex_state = 0}, + [3177] = {.lex_state = 59}, + [3178] = {.lex_state = 89}, + [3179] = {.lex_state = 0}, + [3180] = {.lex_state = 89}, + [3181] = {.lex_state = 0}, + [3182] = {.lex_state = 94}, + [3183] = {.lex_state = 0}, + [3184] = {.lex_state = 0}, + [3185] = {.lex_state = 89}, + [3186] = {.lex_state = 0}, + [3187] = {.lex_state = 90}, + [3188] = {.lex_state = 0}, + [3189] = {.lex_state = 89}, [3190] = {.lex_state = 0}, [3191] = {.lex_state = 0}, - [3192] = {.lex_state = 53}, - [3193] = {.lex_state = 53}, - [3194] = {.lex_state = 0}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 53}, - [3198] = {.lex_state = 53}, - [3199] = {.lex_state = 53}, - [3200] = {.lex_state = 0}, + [3192] = {.lex_state = 0}, + [3193] = {.lex_state = 0}, + [3194] = {.lex_state = 89}, + [3195] = {.lex_state = 89}, + [3196] = {.lex_state = 89}, + [3197] = {.lex_state = 0}, + [3198] = {.lex_state = 0}, + [3199] = {.lex_state = 89}, + [3200] = {.lex_state = 89}, [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 53}, - [3203] = {.lex_state = 53}, - [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 53}, - [3206] = {.lex_state = 53}, - [3207] = {.lex_state = 53}, - [3208] = {.lex_state = 0}, - [3209] = {.lex_state = 53}, - [3210] = {.lex_state = 53}, - [3211] = {.lex_state = 53}, + [3202] = {.lex_state = 0}, + [3203] = {.lex_state = 0}, + [3204] = {.lex_state = 82}, + [3205] = {.lex_state = 0}, + [3206] = {.lex_state = 0}, + [3207] = {.lex_state = 89}, + [3208] = {.lex_state = 59}, + [3209] = {.lex_state = 82}, + [3210] = {.lex_state = 89}, + [3211] = {.lex_state = 89}, [3212] = {.lex_state = 0}, - [3213] = {.lex_state = 97}, - [3214] = {.lex_state = 53}, - [3215] = {.lex_state = 53}, - [3216] = {.lex_state = 53}, - [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 53}, - [3219] = {.lex_state = 0}, - [3220] = {.lex_state = 97}, - [3221] = {.lex_state = 53}, - [3222] = {.lex_state = 0}, - [3223] = {.lex_state = 53}, - [3224] = {.lex_state = 53}, - [3225] = {.lex_state = 53}, - [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 53}, + [3213] = {.lex_state = 89}, + [3214] = {.lex_state = 0}, + [3215] = {.lex_state = 0}, + [3216] = {.lex_state = 0}, + [3217] = {.lex_state = 89}, + [3218] = {.lex_state = 0}, + [3219] = {.lex_state = 59}, + [3220] = {.lex_state = 108}, + [3221] = {.lex_state = 59}, + [3222] = {.lex_state = 59}, + [3223] = {.lex_state = 0}, + [3224] = {.lex_state = 89}, + [3225] = {.lex_state = 89}, + [3226] = {.lex_state = 59}, + [3227] = {.lex_state = 89}, [3228] = {.lex_state = 0}, - [3229] = {.lex_state = 53}, + [3229] = {.lex_state = 89}, [3230] = {.lex_state = 0}, - [3231] = {.lex_state = 73}, - [3232] = {.lex_state = 0}, - [3233] = {.lex_state = 53}, + [3231] = {.lex_state = 0}, + [3232] = {.lex_state = 59}, + [3233] = {.lex_state = 95}, [3234] = {.lex_state = 0}, - [3235] = {.lex_state = 0}, - [3236] = {.lex_state = 53}, + [3235] = {.lex_state = 89}, + [3236] = {.lex_state = 0}, [3237] = {.lex_state = 0}, - [3238] = {.lex_state = 0}, + [3238] = {.lex_state = 89}, [3239] = {.lex_state = 0}, [3240] = {.lex_state = 0}, [3241] = {.lex_state = 0}, - [3242] = {.lex_state = 53}, + [3242] = {.lex_state = 59}, [3243] = {.lex_state = 0}, - [3244] = {.lex_state = 53}, - [3245] = {.lex_state = 84}, - [3246] = {.lex_state = 53}, - [3247] = {.lex_state = 53}, - [3248] = {.lex_state = 0}, - [3249] = {.lex_state = 53}, - [3250] = {.lex_state = 53}, - [3251] = {.lex_state = 53}, - [3252] = {.lex_state = 53}, - [3253] = {.lex_state = 79}, + [3244] = {.lex_state = 59}, + [3245] = {.lex_state = 89}, + [3246] = {.lex_state = 59}, + [3247] = {.lex_state = 0}, + [3248] = {.lex_state = 89}, + [3249] = {.lex_state = 82}, + [3250] = {.lex_state = 0}, + [3251] = {.lex_state = 0}, + [3252] = {.lex_state = 0}, + [3253] = {.lex_state = 0}, [3254] = {.lex_state = 0}, - [3255] = {.lex_state = 53}, - [3256] = {.lex_state = 53}, - [3257] = {.lex_state = 53}, - [3258] = {.lex_state = 79}, - [3259] = {.lex_state = 53}, + [3255] = {.lex_state = 89}, + [3256] = {.lex_state = 89}, + [3257] = {.lex_state = 89}, + [3258] = {.lex_state = 0}, + [3259] = {.lex_state = 89}, [3260] = {.lex_state = 0}, - [3261] = {.lex_state = 53}, - [3262] = {.lex_state = 53}, + [3261] = {.lex_state = 59}, + [3262] = {.lex_state = 89}, [3263] = {.lex_state = 0}, [3264] = {.lex_state = 0}, [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 0}, - [3267] = {.lex_state = 53}, + [3266] = {.lex_state = 89}, + [3267] = {.lex_state = 59}, [3268] = {.lex_state = 0}, - [3269] = {.lex_state = 53}, - [3270] = {.lex_state = 53}, - [3271] = {.lex_state = 73}, - [3272] = {.lex_state = 53}, - [3273] = {.lex_state = 53}, - [3274] = {.lex_state = 53}, - [3275] = {.lex_state = 53}, - [3276] = {.lex_state = 53}, - [3277] = {.lex_state = 17}, - [3278] = {.lex_state = 80}, - [3279] = {.lex_state = 89}, - [3280] = {.lex_state = 89}, - [3281] = {.lex_state = 89}, - [3282] = {.lex_state = 83}, - [3283] = {.lex_state = 89}, - [3284] = {.lex_state = 53}, - [3285] = {.lex_state = 17}, - [3286] = {.lex_state = 83}, - [3287] = {.lex_state = 73}, - [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 53}, - [3290] = {.lex_state = 17}, - [3291] = {.lex_state = 83}, - [3292] = {.lex_state = 79}, - [3293] = {.lex_state = 79}, - [3294] = {.lex_state = 89}, - [3295] = {.lex_state = 53}, - [3296] = {.lex_state = 79}, - [3297] = {.lex_state = 89}, - [3298] = {.lex_state = 0}, - [3299] = {.lex_state = 89}, - [3300] = {.lex_state = 89}, - [3301] = {.lex_state = 0}, - [3302] = {.lex_state = 79}, - [3303] = {.lex_state = 83}, - [3304] = {.lex_state = 89}, - [3305] = {.lex_state = 53}, - [3306] = {.lex_state = 83}, - [3307] = {.lex_state = 89}, - [3308] = {.lex_state = 89}, - [3309] = {.lex_state = 89}, - [3310] = {.lex_state = 79}, - [3311] = {.lex_state = 89}, - [3312] = {.lex_state = 80}, - [3313] = {.lex_state = 89}, - [3314] = {.lex_state = 89}, + [3269] = {.lex_state = 59}, + [3270] = {.lex_state = 89}, + [3271] = {.lex_state = 0}, + [3272] = {.lex_state = 108}, + [3273] = {.lex_state = 59}, + [3274] = {.lex_state = 89}, + [3275] = {.lex_state = 89}, + [3276] = {.lex_state = 89}, + [3277] = {.lex_state = 59}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 108}, + [3280] = {.lex_state = 94}, + [3281] = {.lex_state = 100}, + [3282] = {.lex_state = 19}, + [3283] = {.lex_state = 90}, + [3284] = {.lex_state = 19}, + [3285] = {.lex_state = 100}, + [3286] = {.lex_state = 100}, + [3287] = {.lex_state = 82}, + [3288] = {.lex_state = 19}, + [3289] = {.lex_state = 100}, + [3290] = {.lex_state = 100}, + [3291] = {.lex_state = 90}, + [3292] = {.lex_state = 59}, + [3293] = {.lex_state = 100}, + [3294] = {.lex_state = 100}, + [3295] = {.lex_state = 94}, + [3296] = {.lex_state = 100}, + [3297] = {.lex_state = 100}, + [3298] = {.lex_state = 100}, + [3299] = {.lex_state = 100}, + [3300] = {.lex_state = 100}, + [3301] = {.lex_state = 94}, + [3302] = {.lex_state = 100}, + [3303] = {.lex_state = 100}, + [3304] = {.lex_state = 94}, + [3305] = {.lex_state = 59}, + [3306] = {.lex_state = 100}, + [3307] = {.lex_state = 100}, + [3308] = {.lex_state = 100}, + [3309] = {.lex_state = 19}, + [3310] = {.lex_state = 19}, + [3311] = {.lex_state = 0}, + [3312] = {.lex_state = 100}, + [3313] = {.lex_state = 100}, + [3314] = {.lex_state = 100}, [3315] = {.lex_state = 89}, - [3316] = {.lex_state = 0}, - [3317] = {.lex_state = 83}, - [3318] = {.lex_state = 89}, - [3319] = {.lex_state = 79}, - [3320] = {.lex_state = 89}, + [3316] = {.lex_state = 59}, + [3317] = {.lex_state = 61}, + [3318] = {.lex_state = 100}, + [3319] = {.lex_state = 94}, + [3320] = {.lex_state = 59}, [3321] = {.lex_state = 89}, - [3322] = {.lex_state = 89}, - [3323] = {.lex_state = 89}, - [3324] = {.lex_state = 89}, - [3325] = {.lex_state = 55}, - [3326] = {.lex_state = 53}, - [3327] = {.lex_state = 89}, - [3328] = {.lex_state = 89}, - [3329] = {.lex_state = 89}, - [3330] = {.lex_state = 79}, - [3331] = {.lex_state = 89}, - [3332] = {.lex_state = 89}, - [3333] = {.lex_state = 17}, - [3334] = {.lex_state = 17}, - [3335] = {.lex_state = 89}, - [3336] = {.lex_state = 17}, - [3337] = {.lex_state = 89}, - [3338] = {.lex_state = 79}, - [3339] = {.lex_state = 89}, - [3340] = {.lex_state = 17}, - [3341] = {.lex_state = 89}, - [3342] = {.lex_state = 17}, - [3343] = {.lex_state = 83}, - [3344] = {.lex_state = 80}, - [3345] = {.lex_state = 89}, + [3322] = {.lex_state = 59}, + [3323] = {.lex_state = 100}, + [3324] = {.lex_state = 0}, + [3325] = {.lex_state = 94}, + [3326] = {.lex_state = 100}, + [3327] = {.lex_state = 100}, + [3328] = {.lex_state = 90}, + [3329] = {.lex_state = 100}, + [3330] = {.lex_state = 100}, + [3331] = {.lex_state = 19}, + [3332] = {.lex_state = 19}, + [3333] = {.lex_state = 89}, + [3334] = {.lex_state = 61}, + [3335] = {.lex_state = 59}, + [3336] = {.lex_state = 94}, + [3337] = {.lex_state = 61}, + [3338] = {.lex_state = 100}, + [3339] = {.lex_state = 94}, + [3340] = {.lex_state = 100}, + [3341] = {.lex_state = 100}, + [3342] = {.lex_state = 100}, + [3343] = {.lex_state = 90}, + [3344] = {.lex_state = 100}, + [3345] = {.lex_state = 94}, [3346] = {.lex_state = 89}, - [3347] = {.lex_state = 89}, + [3347] = {.lex_state = 19}, [3348] = {.lex_state = 89}, - [3349] = {.lex_state = 89}, - [3350] = {.lex_state = 89}, - [3351] = {.lex_state = 89}, - [3352] = {.lex_state = 89}, - [3353] = {.lex_state = 89}, - [3354] = {.lex_state = 79}, - [3355] = {.lex_state = 89}, - [3356] = {.lex_state = 79}, - [3357] = {.lex_state = 89}, - [3358] = {.lex_state = 79}, - [3359] = {.lex_state = 55}, - [3360] = {.lex_state = 89}, - [3361] = {.lex_state = 55}, - [3362] = {.lex_state = 83}, - [3363] = {.lex_state = 0}, - [3364] = {.lex_state = 0}, - [3365] = {.lex_state = 17}, - [3366] = {.lex_state = 79}, - [3367] = {.lex_state = 17}, - [3368] = {.lex_state = 89}, - [3369] = {.lex_state = 17}, - [3370] = {.lex_state = 89}, - [3371] = {.lex_state = 80}, - [3372] = {.lex_state = 79}, - [3373] = {.lex_state = 55}, - [3374] = {.lex_state = 89}, - [3375] = {.lex_state = 80}, - [3376] = {.lex_state = 89}, - [3377] = {.lex_state = 89}, - [3378] = {.lex_state = 83}, - [3379] = {.lex_state = 89}, - [3380] = {.lex_state = 73}, - [3381] = {.lex_state = 79}, - [3382] = {.lex_state = 79}, + [3349] = {.lex_state = 19}, + [3350] = {.lex_state = 82}, + [3351] = {.lex_state = 19}, + [3352] = {.lex_state = 100}, + [3353] = {.lex_state = 19}, + [3354] = {.lex_state = 100}, + [3355] = {.lex_state = 19}, + [3356] = {.lex_state = 100}, + [3357] = {.lex_state = 100}, + [3358] = {.lex_state = 19}, + [3359] = {.lex_state = 0}, + [3360] = {.lex_state = 61}, + [3361] = {.lex_state = 100}, + [3362] = {.lex_state = 90}, + [3363] = {.lex_state = 100}, + [3364] = {.lex_state = 100}, + [3365] = {.lex_state = 89}, + [3366] = {.lex_state = 100}, + [3367] = {.lex_state = 90}, + [3368] = {.lex_state = 100}, + [3369] = {.lex_state = 0}, + [3370] = {.lex_state = 59}, + [3371] = {.lex_state = 89}, + [3372] = {.lex_state = 100}, + [3373] = {.lex_state = 89}, + [3374] = {.lex_state = 100}, + [3375] = {.lex_state = 100}, + [3376] = {.lex_state = 100}, + [3377] = {.lex_state = 100}, + [3378] = {.lex_state = 100}, + [3379] = {.lex_state = 100}, + [3380] = {.lex_state = 100}, + [3381] = {.lex_state = 89}, + [3382] = {.lex_state = 100}, [3383] = {.lex_state = 89}, - [3384] = {.lex_state = 55}, - [3385] = {.lex_state = 79}, - [3386] = {.lex_state = 79}, - [3387] = {.lex_state = 89}, - [3388] = {.lex_state = 17}, - [3389] = {.lex_state = 17}, - [3390] = {.lex_state = 17}, - [3391] = {.lex_state = 89}, - [3392] = {.lex_state = 17}, - [3393] = {.lex_state = 89}, - [3394] = {.lex_state = 89}, - [3395] = {.lex_state = 83}, + [3384] = {.lex_state = 100}, + [3385] = {.lex_state = 100}, + [3386] = {.lex_state = 19}, + [3387] = {.lex_state = 100}, + [3388] = {.lex_state = 61}, + [3389] = {.lex_state = 89}, + [3390] = {.lex_state = 100}, + [3391] = {.lex_state = 100}, + [3392] = {.lex_state = 100}, + [3393] = {.lex_state = 100}, + [3394] = {.lex_state = 100}, + [3395] = {.lex_state = 100}, [3396] = {.lex_state = 89}, - [3397] = {.lex_state = 89}, - [3398] = {.lex_state = 0}, - [3399] = {.lex_state = 55}, - [3400] = {.lex_state = 80}, - [3401] = {.lex_state = 17}, - [3402] = {.lex_state = 89}, - [3403] = {.lex_state = 89}, - [3404] = {.lex_state = 79}, - [3405] = {.lex_state = 0}, - [3406] = {.lex_state = 0}, - [3407] = {.lex_state = 53}, - [3408] = {.lex_state = 53}, - [3409] = {.lex_state = 53}, - [3410] = {.lex_state = 53}, - [3411] = {.lex_state = 53}, - [3412] = {.lex_state = 53}, - [3413] = {.lex_state = 83}, - [3414] = {.lex_state = 0}, - [3415] = {.lex_state = 80}, + [3397] = {.lex_state = 100}, + [3398] = {.lex_state = 89}, + [3399] = {.lex_state = 100}, + [3400] = {.lex_state = 89}, + [3401] = {.lex_state = 19}, + [3402] = {.lex_state = 19}, + [3403] = {.lex_state = 94}, + [3404] = {.lex_state = 100}, + [3405] = {.lex_state = 89}, + [3406] = {.lex_state = 89}, + [3407] = {.lex_state = 19}, + [3408] = {.lex_state = 19}, + [3409] = {.lex_state = 100}, + [3410] = {.lex_state = 89}, + [3411] = {.lex_state = 19}, + [3412] = {.lex_state = 100}, + [3413] = {.lex_state = 100}, + [3414] = {.lex_state = 89}, + [3415] = {.lex_state = 61}, [3416] = {.lex_state = 0}, [3417] = {.lex_state = 0}, [3418] = {.lex_state = 0}, - [3419] = {.lex_state = 0}, + [3419] = {.lex_state = 94}, [3420] = {.lex_state = 0}, [3421] = {.lex_state = 0}, - [3422] = {.lex_state = 53}, + [3422] = {.lex_state = 0}, [3423] = {.lex_state = 0}, [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 53}, + [3425] = {.lex_state = 90}, [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 0}, - [3428] = {.lex_state = 53}, - [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 53}, - [3431] = {.lex_state = 53}, - [3432] = {.lex_state = 53}, - [3433] = {.lex_state = 53}, - [3434] = {.lex_state = 53}, - [3435] = {.lex_state = 53}, - [3436] = {.lex_state = 53}, - [3437] = {.lex_state = 53}, - [3438] = {.lex_state = 53}, - [3439] = {.lex_state = 53}, - [3440] = {.lex_state = 53}, - [3441] = {.lex_state = 53}, - [3442] = {.lex_state = 53}, - [3443] = {.lex_state = 53}, - [3444] = {.lex_state = 53}, + [3427] = {.lex_state = 89}, + [3428] = {.lex_state = 0}, + [3429] = {.lex_state = 94}, + [3430] = {.lex_state = 0}, + [3431] = {.lex_state = 0}, + [3432] = {.lex_state = 89}, + [3433] = {.lex_state = 0}, + [3434] = {.lex_state = 0}, + [3435] = {.lex_state = 0}, + [3436] = {.lex_state = 0}, + [3437] = {.lex_state = 0}, + [3438] = {.lex_state = 0}, + [3439] = {.lex_state = 0}, + [3440] = {.lex_state = 0}, + [3441] = {.lex_state = 82}, + [3442] = {.lex_state = 0}, + [3443] = {.lex_state = 0}, + [3444] = {.lex_state = 0}, [3445] = {.lex_state = 0}, - [3446] = {.lex_state = 53}, - [3447] = {.lex_state = 83}, - [3448] = {.lex_state = 53}, + [3446] = {.lex_state = 0}, + [3447] = {.lex_state = 113}, + [3448] = {.lex_state = 0}, [3449] = {.lex_state = 0}, [3450] = {.lex_state = 0}, - [3451] = {.lex_state = 73}, + [3451] = {.lex_state = 0}, [3452] = {.lex_state = 0}, - [3453] = {.lex_state = 53}, + [3453] = {.lex_state = 94}, [3454] = {.lex_state = 0}, [3455] = {.lex_state = 0}, [3456] = {.lex_state = 0}, [3457] = {.lex_state = 0}, - [3458] = {.lex_state = 0}, + [3458] = {.lex_state = 59}, [3459] = {.lex_state = 0}, [3460] = {.lex_state = 0}, - [3461] = {.lex_state = 53}, + [3461] = {.lex_state = 0}, [3462] = {.lex_state = 0}, - [3463] = {.lex_state = 0}, - [3464] = {.lex_state = 53}, + [3463] = {.lex_state = 89}, + [3464] = {.lex_state = 0}, [3465] = {.lex_state = 0}, [3466] = {.lex_state = 0}, [3467] = {.lex_state = 0}, - [3468] = {.lex_state = 53}, - [3469] = {.lex_state = 53}, + [3468] = {.lex_state = 0}, + [3469] = {.lex_state = 0}, [3470] = {.lex_state = 0}, - [3471] = {.lex_state = 53}, - [3472] = {.lex_state = 0}, - [3473] = {.lex_state = 53}, - [3474] = {.lex_state = 53}, + [3471] = {.lex_state = 0}, + [3472] = {.lex_state = 113}, + [3473] = {.lex_state = 0}, + [3474] = {.lex_state = 0}, [3475] = {.lex_state = 0}, - [3476] = {.lex_state = 53}, + [3476] = {.lex_state = 0}, [3477] = {.lex_state = 0}, - [3478] = {.lex_state = 53}, + [3478] = {.lex_state = 59}, [3479] = {.lex_state = 0}, - [3480] = {.lex_state = 53}, - [3481] = {.lex_state = 53}, + [3480] = {.lex_state = 0}, + [3481] = {.lex_state = 0}, [3482] = {.lex_state = 0}, - [3483] = {.lex_state = 53}, + [3483] = {.lex_state = 0}, [3484] = {.lex_state = 0}, - [3485] = {.lex_state = 101}, + [3485] = {.lex_state = 0}, [3486] = {.lex_state = 0}, - [3487] = {.lex_state = 53}, - [3488] = {.lex_state = 83}, - [3489] = {.lex_state = 53}, - [3490] = {.lex_state = 53}, - [3491] = {.lex_state = 53}, + [3487] = {.lex_state = 0}, + [3488] = {.lex_state = 0}, + [3489] = {.lex_state = 0}, + [3490] = {.lex_state = 0}, + [3491] = {.lex_state = 0}, [3492] = {.lex_state = 0}, [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 53}, - [3495] = {.lex_state = 53}, - [3496] = {.lex_state = 53}, - [3497] = {.lex_state = 53}, - [3498] = {.lex_state = 0}, + [3494] = {.lex_state = 0}, + [3495] = {.lex_state = 0}, + [3496] = {.lex_state = 0}, + [3497] = {.lex_state = 0}, + [3498] = {.lex_state = 89}, [3499] = {.lex_state = 0}, [3500] = {.lex_state = 0}, [3501] = {.lex_state = 0}, [3502] = {.lex_state = 0}, - [3503] = {.lex_state = 101}, - [3504] = {.lex_state = 0}, - [3505] = {.lex_state = 53}, - [3506] = {.lex_state = 53}, - [3507] = {.lex_state = 53}, - [3508] = {.lex_state = 53}, + [3503] = {.lex_state = 0}, + [3504] = {.lex_state = 89}, + [3505] = {.lex_state = 0}, + [3506] = {.lex_state = 0}, + [3507] = {.lex_state = 0}, + [3508] = {.lex_state = 0}, [3509] = {.lex_state = 0}, [3510] = {.lex_state = 0}, [3511] = {.lex_state = 0}, @@ -12520,10 +13477,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3513] = {.lex_state = 0}, [3514] = {.lex_state = 0}, [3515] = {.lex_state = 0}, - [3516] = {.lex_state = 53}, + [3516] = {.lex_state = 0}, [3517] = {.lex_state = 0}, - [3518] = {.lex_state = 53}, - [3519] = {.lex_state = 0}, + [3518] = {.lex_state = 0}, + [3519] = {.lex_state = 59}, [3520] = {.lex_state = 0}, [3521] = {.lex_state = 0}, [3522] = {.lex_state = 0}, @@ -12531,51 +13488,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3524] = {.lex_state = 0}, [3525] = {.lex_state = 0}, [3526] = {.lex_state = 0}, - [3527] = {.lex_state = 53}, - [3528] = {.lex_state = 53}, - [3529] = {.lex_state = 53}, + [3527] = {.lex_state = 100}, + [3528] = {.lex_state = 0}, + [3529] = {.lex_state = 59}, [3530] = {.lex_state = 0}, - [3531] = {.lex_state = 0}, + [3531] = {.lex_state = 59}, [3532] = {.lex_state = 0}, [3533] = {.lex_state = 0}, [3534] = {.lex_state = 0}, [3535] = {.lex_state = 0}, [3536] = {.lex_state = 0}, - [3537] = {.lex_state = 0}, + [3537] = {.lex_state = 113}, [3538] = {.lex_state = 0}, - [3539] = {.lex_state = 89}, - [3540] = {.lex_state = 0}, + [3539] = {.lex_state = 0}, + [3540] = {.lex_state = 109}, [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 0}, + [3542] = {.lex_state = 59}, [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 0}, + [3544] = {.lex_state = 94}, [3545] = {.lex_state = 0}, [3546] = {.lex_state = 0}, - [3547] = {.lex_state = 53}, + [3547] = {.lex_state = 59}, [3548] = {.lex_state = 0}, [3549] = {.lex_state = 0}, - [3550] = {.lex_state = 53}, + [3550] = {.lex_state = 0}, [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 53}, + [3552] = {.lex_state = 89}, [3553] = {.lex_state = 0}, [3554] = {.lex_state = 0}, [3555] = {.lex_state = 0}, [3556] = {.lex_state = 0}, [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 101}, + [3558] = {.lex_state = 0}, [3559] = {.lex_state = 0}, [3560] = {.lex_state = 0}, [3561] = {.lex_state = 0}, [3562] = {.lex_state = 0}, - [3563] = {.lex_state = 53}, + [3563] = {.lex_state = 0}, [3564] = {.lex_state = 0}, [3565] = {.lex_state = 0}, [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 0}, + [3567] = {.lex_state = 89}, [3568] = {.lex_state = 0}, - [3569] = {.lex_state = 53}, + [3569] = {.lex_state = 0}, [3570] = {.lex_state = 0}, - [3571] = {.lex_state = 53}, + [3571] = {.lex_state = 0}, [3572] = {.lex_state = 0}, [3573] = {.lex_state = 0}, [3574] = {.lex_state = 0}, @@ -12584,7 +13541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3577] = {.lex_state = 0}, [3578] = {.lex_state = 0}, [3579] = {.lex_state = 0}, - [3580] = {.lex_state = 0}, + [3580] = {.lex_state = 89}, [3581] = {.lex_state = 0}, [3582] = {.lex_state = 0}, [3583] = {.lex_state = 0}, @@ -12597,16 +13554,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3590] = {.lex_state = 0}, [3591] = {.lex_state = 0}, [3592] = {.lex_state = 0}, - [3593] = {.lex_state = 0}, + [3593] = {.lex_state = 89}, [3594] = {.lex_state = 0}, - [3595] = {.lex_state = 79}, + [3595] = {.lex_state = 0}, [3596] = {.lex_state = 0}, [3597] = {.lex_state = 0}, [3598] = {.lex_state = 0}, [3599] = {.lex_state = 0}, [3600] = {.lex_state = 0}, [3601] = {.lex_state = 0}, - [3602] = {.lex_state = 53}, + [3602] = {.lex_state = 0}, [3603] = {.lex_state = 0}, [3604] = {.lex_state = 0}, [3605] = {.lex_state = 0}, @@ -12618,7 +13575,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3611] = {.lex_state = 0}, [3612] = {.lex_state = 0}, [3613] = {.lex_state = 0}, - [3614] = {.lex_state = 0}, + [3614] = {.lex_state = 59}, [3615] = {.lex_state = 0}, [3616] = {.lex_state = 0}, [3617] = {.lex_state = 0}, @@ -12640,46 +13597,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3633] = {.lex_state = 0}, [3634] = {.lex_state = 0}, [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 0}, - [3637] = {.lex_state = 89}, - [3638] = {.lex_state = 89}, + [3636] = {.lex_state = 59}, + [3637] = {.lex_state = 0}, + [3638] = {.lex_state = 0}, [3639] = {.lex_state = 0}, [3640] = {.lex_state = 0}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 79}, - [3643] = {.lex_state = 53}, - [3644] = {.lex_state = 53}, - [3645] = {.lex_state = 53}, - [3646] = {.lex_state = 53}, - [3647] = {.lex_state = 53}, + [3641] = {.lex_state = 89}, + [3642] = {.lex_state = 0}, + [3643] = {.lex_state = 0}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 0}, + [3646] = {.lex_state = 0}, + [3647] = {.lex_state = 0}, [3648] = {.lex_state = 0}, - [3649] = {.lex_state = 53}, - [3650] = {.lex_state = 53}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 100}, [3651] = {.lex_state = 0}, - [3652] = {.lex_state = 79}, + [3652] = {.lex_state = 0}, [3653] = {.lex_state = 0}, - [3654] = {.lex_state = 53}, - [3655] = {.lex_state = 53}, + [3654] = {.lex_state = 0}, + [3655] = {.lex_state = 0}, [3656] = {.lex_state = 0}, [3657] = {.lex_state = 0}, - [3658] = {.lex_state = 53}, + [3658] = {.lex_state = 0}, [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 53}, + [3660] = {.lex_state = 0}, [3661] = {.lex_state = 0}, [3662] = {.lex_state = 0}, [3663] = {.lex_state = 0}, - [3664] = {.lex_state = 53}, + [3664] = {.lex_state = 89}, [3665] = {.lex_state = 0}, [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 0}, + [3667] = {.lex_state = 89}, [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 0}, + [3669] = {.lex_state = 59}, [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 53}, + [3671] = {.lex_state = 0}, [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 0}, + [3673] = {.lex_state = 89}, [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 53}, + [3675] = {.lex_state = 0}, [3676] = {.lex_state = 0}, [3677] = {.lex_state = 0}, [3678] = {.lex_state = 0}, @@ -12688,692 +13645,692 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3681] = {.lex_state = 0}, [3682] = {.lex_state = 0}, [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 79}, + [3684] = {.lex_state = 0}, [3685] = {.lex_state = 0}, [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 0}, + [3687] = {.lex_state = 59}, [3688] = {.lex_state = 0}, [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 53}, + [3690] = {.lex_state = 0}, [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 53}, - [3693] = {.lex_state = 53}, - [3694] = {.lex_state = 53}, - [3695] = {.lex_state = 53}, - [3696] = {.lex_state = 53}, - [3697] = {.lex_state = 53}, - [3698] = {.lex_state = 53}, + [3692] = {.lex_state = 0}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 0}, + [3695] = {.lex_state = 0}, + [3696] = {.lex_state = 0}, + [3697] = {.lex_state = 59}, + [3698] = {.lex_state = 0}, [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 53}, - [3701] = {.lex_state = 53}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 59}, [3702] = {.lex_state = 0}, [3703] = {.lex_state = 0}, - [3704] = {.lex_state = 53}, + [3704] = {.lex_state = 0}, [3705] = {.lex_state = 0}, - [3706] = {.lex_state = 53}, + [3706] = {.lex_state = 0}, [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 53}, + [3708] = {.lex_state = 0}, [3709] = {.lex_state = 0}, [3710] = {.lex_state = 0}, [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 53}, + [3712] = {.lex_state = 0}, [3713] = {.lex_state = 0}, [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 0}, + [3715] = {.lex_state = 59}, [3716] = {.lex_state = 0}, [3717] = {.lex_state = 0}, [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 79}, - [3720] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 59}, [3721] = {.lex_state = 0}, [3722] = {.lex_state = 0}, [3723] = {.lex_state = 0}, - [3724] = {.lex_state = 53}, - [3725] = {.lex_state = 53}, - [3726] = {.lex_state = 53}, - [3727] = {.lex_state = 53}, - [3728] = {.lex_state = 53}, - [3729] = {.lex_state = 53}, - [3730] = {.lex_state = 53}, - [3731] = {.lex_state = 53}, - [3732] = {.lex_state = 53}, - [3733] = {.lex_state = 53}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 53}, - [3736] = {.lex_state = 53}, + [3724] = {.lex_state = 0}, + [3725] = {.lex_state = 59}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 59}, + [3728] = {.lex_state = 0}, + [3729] = {.lex_state = 0}, + [3730] = {.lex_state = 0}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 0}, + [3733] = {.lex_state = 0}, + [3734] = {.lex_state = 89}, + [3735] = {.lex_state = 0}, + [3736] = {.lex_state = 59}, [3737] = {.lex_state = 0}, - [3738] = {.lex_state = 0}, - [3739] = {.lex_state = 53}, + [3738] = {.lex_state = 59}, + [3739] = {.lex_state = 0}, [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 0}, + [3741] = {.lex_state = 59}, [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 53}, + [3743] = {.lex_state = 0}, [3744] = {.lex_state = 0}, [3745] = {.lex_state = 0}, [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 53}, + [3747] = {.lex_state = 0}, [3748] = {.lex_state = 0}, [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 0}, + [3750] = {.lex_state = 59}, [3751] = {.lex_state = 0}, [3752] = {.lex_state = 0}, [3753] = {.lex_state = 0}, - [3754] = {.lex_state = 79}, - [3755] = {.lex_state = 0}, + [3754] = {.lex_state = 0}, + [3755] = {.lex_state = 59}, [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 53}, + [3757] = {.lex_state = 0}, [3758] = {.lex_state = 0}, [3759] = {.lex_state = 0}, - [3760] = {.lex_state = 53}, - [3761] = {.lex_state = 53}, - [3762] = {.lex_state = 53}, - [3763] = {.lex_state = 53}, - [3764] = {.lex_state = 53}, - [3765] = {.lex_state = 53}, - [3766] = {.lex_state = 53}, - [3767] = {.lex_state = 53}, - [3768] = {.lex_state = 53}, + [3760] = {.lex_state = 59}, + [3761] = {.lex_state = 0}, + [3762] = {.lex_state = 59}, + [3763] = {.lex_state = 0}, + [3764] = {.lex_state = 59}, + [3765] = {.lex_state = 0}, + [3766] = {.lex_state = 0}, + [3767] = {.lex_state = 59}, + [3768] = {.lex_state = 0}, [3769] = {.lex_state = 0}, - [3770] = {.lex_state = 53}, - [3771] = {.lex_state = 53}, + [3770] = {.lex_state = 0}, + [3771] = {.lex_state = 0}, [3772] = {.lex_state = 0}, [3773] = {.lex_state = 0}, - [3774] = {.lex_state = 53}, + [3774] = {.lex_state = 59}, [3775] = {.lex_state = 0}, [3776] = {.lex_state = 0}, [3777] = {.lex_state = 0}, - [3778] = {.lex_state = 53}, + [3778] = {.lex_state = 59}, [3779] = {.lex_state = 0}, [3780] = {.lex_state = 0}, - [3781] = {.lex_state = 0}, - [3782] = {.lex_state = 53}, - [3783] = {.lex_state = 0}, - [3784] = {.lex_state = 0}, + [3781] = {.lex_state = 59}, + [3782] = {.lex_state = 0}, + [3783] = {.lex_state = 59}, + [3784] = {.lex_state = 59}, [3785] = {.lex_state = 0}, [3786] = {.lex_state = 0}, - [3787] = {.lex_state = 0}, + [3787] = {.lex_state = 59}, [3788] = {.lex_state = 0}, [3789] = {.lex_state = 0}, [3790] = {.lex_state = 0}, [3791] = {.lex_state = 0}, [3792] = {.lex_state = 0}, [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 0}, + [3794] = {.lex_state = 59}, [3795] = {.lex_state = 0}, [3796] = {.lex_state = 0}, [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 79}, + [3798] = {.lex_state = 59}, + [3799] = {.lex_state = 0}, [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 0}, + [3801] = {.lex_state = 59}, [3802] = {.lex_state = 0}, [3803] = {.lex_state = 0}, - [3804] = {.lex_state = 0}, + [3804] = {.lex_state = 59}, [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 0}, + [3806] = {.lex_state = 59}, + [3807] = {.lex_state = 59}, [3808] = {.lex_state = 0}, [3809] = {.lex_state = 0}, [3810] = {.lex_state = 0}, [3811] = {.lex_state = 0}, [3812] = {.lex_state = 0}, [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 0}, + [3814] = {.lex_state = 59}, [3815] = {.lex_state = 0}, [3816] = {.lex_state = 0}, [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 53}, + [3818] = {.lex_state = 59}, [3819] = {.lex_state = 0}, - [3820] = {.lex_state = 53}, - [3821] = {.lex_state = 53}, - [3822] = {.lex_state = 53}, - [3823] = {.lex_state = 53}, - [3824] = {.lex_state = 53}, - [3825] = {.lex_state = 53}, - [3826] = {.lex_state = 53}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 53}, - [3829] = {.lex_state = 53}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 59}, + [3822] = {.lex_state = 0}, + [3823] = {.lex_state = 0}, + [3824] = {.lex_state = 59}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 0}, + [3827] = {.lex_state = 59}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 0}, [3830] = {.lex_state = 0}, [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 53}, + [3832] = {.lex_state = 0}, [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 0}, + [3834] = {.lex_state = 59}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 53}, + [3836] = {.lex_state = 0}, [3837] = {.lex_state = 0}, - [3838] = {.lex_state = 0}, + [3838] = {.lex_state = 59}, [3839] = {.lex_state = 0}, - [3840] = {.lex_state = 53}, - [3841] = {.lex_state = 0}, - [3842] = {.lex_state = 89}, - [3843] = {.lex_state = 0}, - [3844] = {.lex_state = 0}, + [3840] = {.lex_state = 0}, + [3841] = {.lex_state = 59}, + [3842] = {.lex_state = 59}, + [3843] = {.lex_state = 89}, + [3844] = {.lex_state = 59}, [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 53}, - [3847] = {.lex_state = 0}, + [3846] = {.lex_state = 0}, + [3847] = {.lex_state = 59}, [3848] = {.lex_state = 0}, - [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 79}, + [3849] = {.lex_state = 59}, + [3850] = {.lex_state = 0}, [3851] = {.lex_state = 0}, [3852] = {.lex_state = 0}, [3853] = {.lex_state = 0}, - [3854] = {.lex_state = 0}, + [3854] = {.lex_state = 59}, [3855] = {.lex_state = 0}, - [3856] = {.lex_state = 79}, - [3857] = {.lex_state = 53}, - [3858] = {.lex_state = 0}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 59}, [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 53}, - [3861] = {.lex_state = 53}, + [3860] = {.lex_state = 0}, + [3861] = {.lex_state = 59}, [3862] = {.lex_state = 0}, - [3863] = {.lex_state = 53}, - [3864] = {.lex_state = 53}, + [3863] = {.lex_state = 59}, + [3864] = {.lex_state = 59}, [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 53}, - [3867] = {.lex_state = 53}, - [3868] = {.lex_state = 0}, + [3866] = {.lex_state = 59}, + [3867] = {.lex_state = 59}, + [3868] = {.lex_state = 59}, [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 53}, - [3871] = {.lex_state = 53}, + [3870] = {.lex_state = 0}, + [3871] = {.lex_state = 0}, [3872] = {.lex_state = 0}, - [3873] = {.lex_state = 53}, - [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 53}, - [3876] = {.lex_state = 53}, + [3873] = {.lex_state = 0}, + [3874] = {.lex_state = 59}, + [3875] = {.lex_state = 0}, + [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 0}, + [3878] = {.lex_state = 59}, [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 53}, - [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 0}, - [3885] = {.lex_state = 53}, + [3880] = {.lex_state = 0}, + [3881] = {.lex_state = 59}, + [3882] = {.lex_state = 59}, + [3883] = {.lex_state = 59}, + [3884] = {.lex_state = 59}, + [3885] = {.lex_state = 0}, [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 0}, + [3887] = {.lex_state = 59}, [3888] = {.lex_state = 0}, - [3889] = {.lex_state = 53}, + [3889] = {.lex_state = 0}, [3890] = {.lex_state = 0}, [3891] = {.lex_state = 0}, [3892] = {.lex_state = 0}, [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 0}, + [3894] = {.lex_state = 59}, [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 79}, + [3896] = {.lex_state = 0}, [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 0}, + [3898] = {.lex_state = 59}, [3899] = {.lex_state = 0}, [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 53}, - [3903] = {.lex_state = 53}, - [3904] = {.lex_state = 53}, - [3905] = {.lex_state = 53}, - [3906] = {.lex_state = 53}, - [3907] = {.lex_state = 53}, - [3908] = {.lex_state = 53}, - [3909] = {.lex_state = 53}, - [3910] = {.lex_state = 53}, + [3901] = {.lex_state = 59}, + [3902] = {.lex_state = 0}, + [3903] = {.lex_state = 0}, + [3904] = {.lex_state = 59}, + [3905] = {.lex_state = 0}, + [3906] = {.lex_state = 59}, + [3907] = {.lex_state = 59}, + [3908] = {.lex_state = 0}, + [3909] = {.lex_state = 0}, + [3910] = {.lex_state = 0}, [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 53}, + [3912] = {.lex_state = 0}, [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 53}, + [3914] = {.lex_state = 59}, + [3915] = {.lex_state = 0}, [3916] = {.lex_state = 0}, [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, + [3918] = {.lex_state = 59}, [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 53}, - [3921] = {.lex_state = 0}, + [3920] = {.lex_state = 0}, + [3921] = {.lex_state = 59}, [3922] = {.lex_state = 0}, [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 0}, + [3924] = {.lex_state = 59}, [3925] = {.lex_state = 0}, [3926] = {.lex_state = 0}, - [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 89}, - [3929] = {.lex_state = 53}, + [3927] = {.lex_state = 59}, + [3928] = {.lex_state = 59}, + [3929] = {.lex_state = 59}, [3930] = {.lex_state = 0}, [3931] = {.lex_state = 0}, [3932] = {.lex_state = 0}, [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 53}, + [3934] = {.lex_state = 59}, + [3935] = {.lex_state = 0}, [3936] = {.lex_state = 0}, [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 79}, + [3938] = {.lex_state = 59}, [3939] = {.lex_state = 0}, [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 0}, + [3941] = {.lex_state = 59}, [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 0}, + [3943] = {.lex_state = 59}, [3944] = {.lex_state = 0}, [3945] = {.lex_state = 0}, [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 53}, - [3950] = {.lex_state = 79}, + [3948] = {.lex_state = 59}, + [3949] = {.lex_state = 0}, + [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 0}, + [3952] = {.lex_state = 59}, [3953] = {.lex_state = 0}, [3954] = {.lex_state = 0}, [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 0}, + [3956] = {.lex_state = 59}, [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 53}, - [3959] = {.lex_state = 53}, - [3960] = {.lex_state = 53}, + [3958] = {.lex_state = 59}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 0}, [3961] = {.lex_state = 89}, - [3962] = {.lex_state = 53}, - [3963] = {.lex_state = 53}, + [3962] = {.lex_state = 0}, + [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 53}, - [3967] = {.lex_state = 53}, - [3968] = {.lex_state = 79}, - [3969] = {.lex_state = 53}, - [3970] = {.lex_state = 53}, - [3971] = {.lex_state = 53}, + [3965] = {.lex_state = 59}, + [3966] = {.lex_state = 0}, + [3967] = {.lex_state = 0}, + [3968] = {.lex_state = 0}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 0}, + [3971] = {.lex_state = 0}, [3972] = {.lex_state = 0}, [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 53}, - [3975] = {.lex_state = 53}, + [3974] = {.lex_state = 0}, + [3975] = {.lex_state = 0}, [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, + [3977] = {.lex_state = 59}, [3978] = {.lex_state = 0}, [3979] = {.lex_state = 0}, - [3980] = {.lex_state = 53}, + [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, [3982] = {.lex_state = 0}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 89}, + [3984] = {.lex_state = 0}, [3985] = {.lex_state = 0}, [3986] = {.lex_state = 0}, [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 53}, + [3988] = {.lex_state = 59}, + [3989] = {.lex_state = 59}, [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 53}, + [3991] = {.lex_state = 59}, + [3992] = {.lex_state = 59}, [3993] = {.lex_state = 0}, - [3994] = {.lex_state = 0}, + [3994] = {.lex_state = 59}, [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 53}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 0}, + [3996] = {.lex_state = 0}, + [3997] = {.lex_state = 59}, + [3998] = {.lex_state = 59}, [3999] = {.lex_state = 0}, [4000] = {.lex_state = 0}, [4001] = {.lex_state = 0}, [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 79}, - [4005] = {.lex_state = 89}, + [4003] = {.lex_state = 59}, + [4004] = {.lex_state = 0}, + [4005] = {.lex_state = 0}, [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, [4010] = {.lex_state = 0}, [4011] = {.lex_state = 0}, - [4012] = {.lex_state = 80}, + [4012] = {.lex_state = 59}, [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 53}, + [4014] = {.lex_state = 0}, [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 53}, - [4017] = {.lex_state = 53}, - [4018] = {.lex_state = 53}, - [4019] = {.lex_state = 53}, - [4020] = {.lex_state = 53}, - [4021] = {.lex_state = 53}, - [4022] = {.lex_state = 53}, - [4023] = {.lex_state = 53}, + [4016] = {.lex_state = 59}, + [4017] = {.lex_state = 0}, + [4018] = {.lex_state = 0}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 0}, [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 53}, - [4026] = {.lex_state = 89}, - [4027] = {.lex_state = 53}, + [4025] = {.lex_state = 59}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 59}, [4028] = {.lex_state = 0}, [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, - [4031] = {.lex_state = 0}, + [4031] = {.lex_state = 59}, [4032] = {.lex_state = 0}, [4033] = {.lex_state = 0}, [4034] = {.lex_state = 0}, - [4035] = {.lex_state = 53}, - [4036] = {.lex_state = 80}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 0}, [4037] = {.lex_state = 0}, [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 53}, + [4041] = {.lex_state = 100}, + [4042] = {.lex_state = 0}, [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0}, + [4044] = {.lex_state = 59}, + [4045] = {.lex_state = 59}, [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 89}, - [4048] = {.lex_state = 53}, + [4047] = {.lex_state = 0}, + [4048] = {.lex_state = 89}, [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 53}, + [4050] = {.lex_state = 0}, [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 0}, + [4052] = {.lex_state = 59}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 53}, + [4054] = {.lex_state = 59}, + [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 0}, + [4058] = {.lex_state = 89}, [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 79}, - [4061] = {.lex_state = 0}, + [4060] = {.lex_state = 89}, + [4061] = {.lex_state = 59}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 53}, + [4063] = {.lex_state = 0}, [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 53}, - [4067] = {.lex_state = 53}, - [4068] = {.lex_state = 89}, - [4069] = {.lex_state = 53}, - [4070] = {.lex_state = 53}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 0}, + [4070] = {.lex_state = 89}, [4071] = {.lex_state = 0}, [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 53}, - [4074] = {.lex_state = 53}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 0}, [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 53}, - [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 53}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 53}, - [4082] = {.lex_state = 53}, + [4076] = {.lex_state = 59}, + [4077] = {.lex_state = 0}, + [4078] = {.lex_state = 59}, + [4079] = {.lex_state = 59}, + [4080] = {.lex_state = 59}, + [4081] = {.lex_state = 59}, + [4082] = {.lex_state = 59}, [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 0}, + [4084] = {.lex_state = 59}, [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 53}, + [4086] = {.lex_state = 59}, + [4087] = {.lex_state = 59}, [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 89}, - [4090] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 59}, [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, + [4093] = {.lex_state = 59}, + [4094] = {.lex_state = 59}, [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4096] = {.lex_state = 59}, [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 53}, - [4100] = {.lex_state = 0}, + [4098] = {.lex_state = 59}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 59}, [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, + [4102] = {.lex_state = 59}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 53}, + [4105] = {.lex_state = 59}, + [4106] = {.lex_state = 0}, [4107] = {.lex_state = 0}, [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 89}, + [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, + [4111] = {.lex_state = 59}, + [4112] = {.lex_state = 59}, [4113] = {.lex_state = 0}, - [4114] = {.lex_state = 0}, + [4114] = {.lex_state = 59}, [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 53}, + [4116] = {.lex_state = 0}, [4117] = {.lex_state = 0}, [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 79}, - [4122] = {.lex_state = 0}, + [4121] = {.lex_state = 0}, + [4122] = {.lex_state = 59}, [4123] = {.lex_state = 0}, [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 53}, - [4126] = {.lex_state = 53}, + [4125] = {.lex_state = 0}, + [4126] = {.lex_state = 0}, [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 89}, - [4130] = {.lex_state = 53}, - [4131] = {.lex_state = 53}, + [4130] = {.lex_state = 0}, + [4131] = {.lex_state = 0}, [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 53}, - [4134] = {.lex_state = 53}, - [4135] = {.lex_state = 53}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 53}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 0}, + [4135] = {.lex_state = 0}, + [4136] = {.lex_state = 100}, + [4137] = {.lex_state = 59}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 53}, - [4140] = {.lex_state = 53}, - [4141] = {.lex_state = 53}, - [4142] = {.lex_state = 53}, + [4139] = {.lex_state = 59}, + [4140] = {.lex_state = 59}, + [4141] = {.lex_state = 0}, + [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 53}, - [4145] = {.lex_state = 53}, + [4144] = {.lex_state = 94}, + [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 89}, + [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 53}, + [4151] = {.lex_state = 89}, [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, + [4153] = {.lex_state = 89}, + [4154] = {.lex_state = 59}, [4155] = {.lex_state = 0}, [4156] = {.lex_state = 0}, [4157] = {.lex_state = 0}, [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 0}, + [4160] = {.lex_state = 59}, [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 53}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 53}, + [4162] = {.lex_state = 89}, + [4163] = {.lex_state = 59}, + [4164] = {.lex_state = 59}, + [4165] = {.lex_state = 59}, + [4166] = {.lex_state = 59}, + [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 89}, - [4170] = {.lex_state = 53}, - [4171] = {.lex_state = 0}, + [4169] = {.lex_state = 59}, + [4170] = {.lex_state = 59}, + [4171] = {.lex_state = 59}, [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 53}, - [4174] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 59}, [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 0}, + [4176] = {.lex_state = 59}, [4177] = {.lex_state = 0}, - [4178] = {.lex_state = 53}, - [4179] = {.lex_state = 0}, + [4178] = {.lex_state = 0}, + [4179] = {.lex_state = 59}, [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 53}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 79}, - [4185] = {.lex_state = 89}, + [4181] = {.lex_state = 59}, + [4182] = {.lex_state = 59}, + [4183] = {.lex_state = 59}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 59}, [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 89}, + [4187] = {.lex_state = 59}, + [4188] = {.lex_state = 59}, + [4189] = {.lex_state = 59}, + [4190] = {.lex_state = 0}, [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 53}, + [4192] = {.lex_state = 59}, + [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, [4195] = {.lex_state = 0}, - [4196] = {.lex_state = 53}, - [4197] = {.lex_state = 53}, - [4198] = {.lex_state = 53}, - [4199] = {.lex_state = 53}, - [4200] = {.lex_state = 53}, - [4201] = {.lex_state = 89}, - [4202] = {.lex_state = 53}, - [4203] = {.lex_state = 0}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 0}, + [4198] = {.lex_state = 0}, + [4199] = {.lex_state = 0}, + [4200] = {.lex_state = 59}, + [4201] = {.lex_state = 59}, + [4202] = {.lex_state = 89}, + [4203] = {.lex_state = 59}, [4204] = {.lex_state = 0}, [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 53}, + [4206] = {.lex_state = 0}, [4207] = {.lex_state = 0}, [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 53}, + [4209] = {.lex_state = 59}, [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 53}, - [4212] = {.lex_state = 53}, + [4211] = {.lex_state = 0}, + [4212] = {.lex_state = 59}, [4213] = {.lex_state = 0}, [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 0}, + [4215] = {.lex_state = 59}, [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 89}, + [4217] = {.lex_state = 0}, [4218] = {.lex_state = 0}, - [4219] = {.lex_state = 53}, - [4220] = {.lex_state = 89}, + [4219] = {.lex_state = 0}, + [4220] = {.lex_state = 0}, [4221] = {.lex_state = 0}, [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 89}, + [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 89}, + [4225] = {.lex_state = 100}, + [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 89}, - [4230] = {.lex_state = 53}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 89}, + [4228] = {.lex_state = 59}, + [4229] = {.lex_state = 59}, + [4230] = {.lex_state = 0}, + [4231] = {.lex_state = 59}, + [4232] = {.lex_state = 0}, [4233] = {.lex_state = 0}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 89}, [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 89}, + [4237] = {.lex_state = 89}, + [4238] = {.lex_state = 59}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 53}, - [4241] = {.lex_state = 89}, + [4240] = {.lex_state = 0}, + [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 89}, + [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 89}, + [4246] = {.lex_state = 89}, + [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 89}, + [4249] = {.lex_state = 0}, [4250] = {.lex_state = 0}, - [4251] = {.lex_state = 89}, + [4251] = {.lex_state = 59}, [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 89}, + [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 89}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 89}, - [4258] = {.lex_state = 0}, - [4259] = {.lex_state = 89}, + [4255] = {.lex_state = 0}, + [4256] = {.lex_state = 59}, + [4257] = {.lex_state = 59}, + [4258] = {.lex_state = 59}, + [4259] = {.lex_state = 59}, [4260] = {.lex_state = 0}, - [4261] = {.lex_state = 89}, - [4262] = {.lex_state = 79}, - [4263] = {.lex_state = 89}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 89}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 89}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 89}, + [4261] = {.lex_state = 59}, + [4262] = {.lex_state = 59}, + [4263] = {.lex_state = 59}, + [4264] = {.lex_state = 59}, + [4265] = {.lex_state = 59}, + [4266] = {.lex_state = 59}, + [4267] = {.lex_state = 59}, + [4268] = {.lex_state = 100}, + [4269] = {.lex_state = 59}, [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 89}, + [4271] = {.lex_state = 0}, [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 89}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 89}, + [4273] = {.lex_state = 59}, + [4274] = {.lex_state = 89}, + [4275] = {.lex_state = 0}, [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 89}, + [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 89}, - [4280] = {.lex_state = 53}, + [4279] = {.lex_state = 0}, + [4280] = {.lex_state = 0}, [4281] = {.lex_state = 89}, - [4282] = {.lex_state = 53}, - [4283] = {.lex_state = 89}, - [4284] = {.lex_state = 53}, - [4285] = {.lex_state = 89}, - [4286] = {.lex_state = 53}, - [4287] = {.lex_state = 89}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 89}, - [4290] = {.lex_state = 53}, - [4291] = {.lex_state = 89}, - [4292] = {.lex_state = 53}, - [4293] = {.lex_state = 89}, + [4282] = {.lex_state = 0}, + [4283] = {.lex_state = 0}, + [4284] = {.lex_state = 59}, + [4285] = {.lex_state = 0}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 59}, + [4289] = {.lex_state = 59}, + [4290] = {.lex_state = 59}, + [4291] = {.lex_state = 59}, + [4292] = {.lex_state = 0}, + [4293] = {.lex_state = 59}, [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 89}, - [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 89}, - [4298] = {.lex_state = 53}, - [4299] = {.lex_state = 89}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 89}, + [4295] = {.lex_state = 59}, + [4296] = {.lex_state = 59}, + [4297] = {.lex_state = 59}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 100}, + [4301] = {.lex_state = 0}, [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 89}, - [4304] = {.lex_state = 53}, + [4303] = {.lex_state = 59}, + [4304] = {.lex_state = 0}, [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 0}, + [4306] = {.lex_state = 89}, [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, + [4308] = {.lex_state = 109}, + [4309] = {.lex_state = 59}, [4310] = {.lex_state = 0}, [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, + [4312] = {.lex_state = 89}, [4313] = {.lex_state = 0}, [4314] = {.lex_state = 0}, [4315] = {.lex_state = 0}, [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 53}, + [4319] = {.lex_state = 0}, [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, + [4321] = {.lex_state = 59}, [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 53}, - [4326] = {.lex_state = 0}, + [4323] = {.lex_state = 59}, + [4324] = {.lex_state = 59}, + [4325] = {.lex_state = 0}, + [4326] = {.lex_state = 59}, [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0}, - [4329] = {.lex_state = 0}, + [4328] = {.lex_state = 59}, + [4329] = {.lex_state = 59}, [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, + [4331] = {.lex_state = 100}, [4332] = {.lex_state = 0}, [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 0}, + [4334] = {.lex_state = 59}, [4335] = {.lex_state = 0}, [4336] = {.lex_state = 0}, - [4337] = {.lex_state = 0}, + [4337] = {.lex_state = 89}, [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 53}, - [4342] = {.lex_state = 0}, + [4340] = {.lex_state = 59}, + [4341] = {.lex_state = 0}, + [4342] = {.lex_state = 59}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, [4346] = {.lex_state = 0}, [4347] = {.lex_state = 0}, - [4348] = {.lex_state = 0}, + [4348] = {.lex_state = 100}, [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 0}, + [4351] = {.lex_state = 59}, [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 53}, + [4353] = {.lex_state = 0}, [4354] = {.lex_state = 0}, [4355] = {.lex_state = 0}, [4356] = {.lex_state = 0}, [4357] = {.lex_state = 0}, [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 0}, + [4359] = {.lex_state = 59}, + [4360] = {.lex_state = 59}, [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 89}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 53}, + [4362] = {.lex_state = 59}, + [4363] = {.lex_state = 100}, + [4364] = {.lex_state = 109}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 53}, + [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 0}, + [4369] = {.lex_state = 59}, [4370] = {.lex_state = 0}, [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, @@ -13381,55 +14338,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, + [4377] = {.lex_state = 100}, [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, + [4380] = {.lex_state = 59}, [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, + [4384] = {.lex_state = 59}, [4385] = {.lex_state = 0}, [4386] = {.lex_state = 0}, [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 53}, + [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, + [4391] = {.lex_state = 100}, [4392] = {.lex_state = 0}, [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 53}, - [4395] = {.lex_state = 0}, + [4394] = {.lex_state = 59}, + [4395] = {.lex_state = 59}, [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 53}, + [4397] = {.lex_state = 59}, + [4398] = {.lex_state = 59}, + [4399] = {.lex_state = 59}, + [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, [4402] = {.lex_state = 0}, [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, + [4405] = {.lex_state = 100}, [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, + [4408] = {.lex_state = 109}, + [4409] = {.lex_state = 59}, [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, + [4411] = {.lex_state = 59}, [4412] = {.lex_state = 0}, [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, + [4416] = {.lex_state = 89}, [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, + [4419] = {.lex_state = 100}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, + [4423] = {.lex_state = 59}, + [4424] = {.lex_state = 59}, + [4425] = {.lex_state = 59}, [4426] = {.lex_state = 0}, [4427] = {.lex_state = 0}, [4428] = {.lex_state = 0}, @@ -13437,131 +14394,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, + [4433] = {.lex_state = 100}, [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, + [4438] = {.lex_state = 59}, + [4439] = {.lex_state = 59}, [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 0}, + [4446] = {.lex_state = 59}, + [4447] = {.lex_state = 100}, [4448] = {.lex_state = 0}, [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 79}, + [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, + [4453] = {.lex_state = 59}, [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 73}, - [4456] = {.lex_state = 83}, - [4457] = {.lex_state = 73}, - [4458] = {.lex_state = 73}, - [4459] = {.lex_state = 73}, - [4460] = {.lex_state = 83}, - [4461] = {.lex_state = 0}, + [4455] = {.lex_state = 0}, + [4456] = {.lex_state = 0}, + [4457] = {.lex_state = 0}, + [4458] = {.lex_state = 59}, + [4459] = {.lex_state = 0}, + [4460] = {.lex_state = 0}, + [4461] = {.lex_state = 100}, [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 73}, + [4463] = {.lex_state = 59}, [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 101}, - [4466] = {.lex_state = 53}, - [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 79}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 79}, - [4472] = {.lex_state = 0}, + [4465] = {.lex_state = 0}, + [4466] = {.lex_state = 59}, + [4467] = {.lex_state = 59}, + [4468] = {.lex_state = 59}, + [4469] = {.lex_state = 59}, + [4470] = {.lex_state = 59}, + [4471] = {.lex_state = 59}, + [4472] = {.lex_state = 59}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 79}, - [4476] = {.lex_state = 0}, + [4475] = {.lex_state = 100}, + [4476] = {.lex_state = 59}, [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 0}, + [4479] = {.lex_state = 59}, [4480] = {.lex_state = 0}, - [4481] = {.lex_state = 53}, - [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 79}, - [4484] = {.lex_state = 0}, + [4481] = {.lex_state = 0}, + [4482] = {.lex_state = 59}, + [4483] = {.lex_state = 59}, + [4484] = {.lex_state = 59}, [4485] = {.lex_state = 0}, - [4486] = {.lex_state = 0}, + [4486] = {.lex_state = 109}, [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 79}, - [4489] = {.lex_state = 79}, - [4490] = {.lex_state = 79}, + [4488] = {.lex_state = 0}, + [4489] = {.lex_state = 100}, + [4490] = {.lex_state = 59}, [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 53}, + [4492] = {.lex_state = 0}, [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 79}, - [4495] = {.lex_state = 79}, + [4494] = {.lex_state = 0}, + [4495] = {.lex_state = 100}, [4496] = {.lex_state = 0}, [4497] = {.lex_state = 0}, [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 79}, + [4499] = {.lex_state = 59}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, + [4501] = {.lex_state = 59}, [4502] = {.lex_state = 0}, - [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 79}, - [4505] = {.lex_state = 53}, + [4503] = {.lex_state = 100}, + [4504] = {.lex_state = 0}, + [4505] = {.lex_state = 0}, [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 79}, - [4509] = {.lex_state = 79}, + [4508] = {.lex_state = 0}, + [4509] = {.lex_state = 0}, [4510] = {.lex_state = 0}, [4511] = {.lex_state = 0}, [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 79}, + [4513] = {.lex_state = 100}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, + [4516] = {.lex_state = 59}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 79}, + [4520] = {.lex_state = 0}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 0}, - [4523] = {.lex_state = 0}, + [4522] = {.lex_state = 59}, + [4523] = {.lex_state = 100}, [4524] = {.lex_state = 0}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 79}, + [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 53}, - [4529] = {.lex_state = 79}, + [4528] = {.lex_state = 0}, + [4529] = {.lex_state = 59}, [4530] = {.lex_state = 0}, [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, + [4533] = {.lex_state = 100}, [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 79}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 0}, - [4541] = {.lex_state = 0}, + [4538] = {.lex_state = 0}, + [4539] = {.lex_state = 59}, + [4540] = {.lex_state = 59}, + [4541] = {.lex_state = 100}, [4542] = {.lex_state = 0}, - [4543] = {.lex_state = 53}, - [4544] = {.lex_state = 0}, + [4543] = {.lex_state = 59}, + [4544] = {.lex_state = 59}, [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, + [4546] = {.lex_state = 59}, [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 0}, + [4548] = {.lex_state = 59}, + [4549] = {.lex_state = 100}, + [4550] = {.lex_state = 59}, [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 0}, + [4553] = {.lex_state = 89}, [4554] = {.lex_state = 0}, [4555] = {.lex_state = 0}, [4556] = {.lex_state = 0}, - [4557] = {.lex_state = 0}, + [4557] = {.lex_state = 100}, [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, @@ -13569,284 +14526,561 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, + [4565] = {.lex_state = 100}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 0}, - [4571] = {.lex_state = 53}, + [4567] = {.lex_state = 59}, + [4568] = {.lex_state = 59}, + [4569] = {.lex_state = 59}, + [4570] = {.lex_state = 59}, + [4571] = {.lex_state = 109}, [4572] = {.lex_state = 0}, - [4573] = {.lex_state = 0}, + [4573] = {.lex_state = 100}, [4574] = {.lex_state = 0}, [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, + [4576] = {.lex_state = 59}, + [4577] = {.lex_state = 100}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 55}, - [4580] = {.lex_state = 0}, - [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 53}, + [4579] = {.lex_state = 0}, + [4580] = {.lex_state = 100}, + [4581] = {.lex_state = 100}, + [4582] = {.lex_state = 0}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 55}, - [4585] = {.lex_state = 53}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, + [4584] = {.lex_state = 0}, + [4585] = {.lex_state = 0}, + [4586] = {.lex_state = 100}, + [4587] = {.lex_state = 100}, [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 0}, + [4589] = {.lex_state = 100}, [4590] = {.lex_state = 0}, [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, + [4592] = {.lex_state = 59}, + [4593] = {.lex_state = 100}, [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 99}, - [4596] = {.lex_state = 85}, - [4597] = {.lex_state = 0}, + [4595] = {.lex_state = 0}, + [4596] = {.lex_state = 0}, + [4597] = {.lex_state = 100}, [4598] = {.lex_state = 0}, [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 99}, - [4601] = {.lex_state = 53}, + [4600] = {.lex_state = 59}, + [4601] = {.lex_state = 100}, [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 0}, + [4603] = {.lex_state = 59}, [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, + [4605] = {.lex_state = 100}, [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 0}, + [4607] = {.lex_state = 100}, [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 53}, - [4612] = {.lex_state = 0}, - [4613] = {.lex_state = 0}, + [4609] = {.lex_state = 100}, + [4610] = {.lex_state = 100}, + [4611] = {.lex_state = 100}, + [4612] = {.lex_state = 100}, + [4613] = {.lex_state = 100}, [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 0}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 0}, + [4615] = {.lex_state = 100}, + [4616] = {.lex_state = 59}, + [4617] = {.lex_state = 100}, [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 85}, - [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 0}, + [4619] = {.lex_state = 100}, + [4620] = {.lex_state = 59}, + [4621] = {.lex_state = 100}, [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 53}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, - [4627] = {.lex_state = 0}, + [4623] = {.lex_state = 100}, + [4624] = {.lex_state = 59}, + [4625] = {.lex_state = 100}, + [4626] = {.lex_state = 90}, + [4627] = {.lex_state = 100}, [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 0}, + [4629] = {.lex_state = 100}, [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 0}, + [4631] = {.lex_state = 100}, [4632] = {.lex_state = 0}, - [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 99}, - [4635] = {.lex_state = 0}, + [4633] = {.lex_state = 100}, + [4634] = {.lex_state = 100}, + [4635] = {.lex_state = 100}, [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, + [4637] = {.lex_state = 100}, [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, + [4639] = {.lex_state = 100}, + [4640] = {.lex_state = 90}, + [4641] = {.lex_state = 100}, [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 53}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 53}, + [4643] = {.lex_state = 100}, + [4644] = {.lex_state = 100}, + [4645] = {.lex_state = 100}, [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, + [4647] = {.lex_state = 100}, [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, + [4649] = {.lex_state = 100}, [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 53}, - [4652] = {.lex_state = 99}, - [4653] = {.lex_state = 53}, - [4654] = {.lex_state = 85}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 0}, + [4651] = {.lex_state = 0}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 0}, + [4654] = {.lex_state = 0}, + [4655] = {.lex_state = 82}, + [4656] = {.lex_state = 94}, + [4657] = {.lex_state = 82}, + [4658] = {.lex_state = 59}, + [4659] = {.lex_state = 82}, + [4660] = {.lex_state = 82}, [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 55}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 53}, - [4669] = {.lex_state = 53}, + [4663] = {.lex_state = 94}, + [4664] = {.lex_state = 82}, + [4665] = {.lex_state = 113}, + [4666] = {.lex_state = 89}, + [4667] = {.lex_state = 59}, + [4668] = {.lex_state = 59}, + [4669] = {.lex_state = 89}, [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 0}, + [4671] = {.lex_state = 89}, [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 0}, + [4673] = {.lex_state = 59}, [4674] = {.lex_state = 0}, [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, + [4676] = {.lex_state = 89}, + [4677] = {.lex_state = 89}, + [4678] = {.lex_state = 89}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 53}, - [4683] = {.lex_state = 79}, - [4684] = {.lex_state = 99}, - [4685] = {.lex_state = 85}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 53}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, + [4681] = {.lex_state = 89}, + [4682] = {.lex_state = 0}, + [4683] = {.lex_state = 0}, + [4684] = {.lex_state = 0}, + [4685] = {.lex_state = 89}, + [4686] = {.lex_state = 89}, + [4687] = {.lex_state = 89}, + [4688] = {.lex_state = 89}, + [4689] = {.lex_state = 89}, + [4690] = {.lex_state = 59}, + [4691] = {.lex_state = 89}, [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 0}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 99}, - [4698] = {.lex_state = 85}, - [4699] = {.lex_state = 53}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, + [4693] = {.lex_state = 89}, + [4694] = {.lex_state = 89}, + [4695] = {.lex_state = 59}, + [4696] = {.lex_state = 89}, + [4697] = {.lex_state = 89}, + [4698] = {.lex_state = 89}, + [4699] = {.lex_state = 59}, + [4700] = {.lex_state = 89}, + [4701] = {.lex_state = 59}, + [4702] = {.lex_state = 89}, + [4703] = {.lex_state = 89}, [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 79}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 53}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, + [4705] = {.lex_state = 89}, + [4706] = {.lex_state = 0}, + [4707] = {.lex_state = 89}, + [4708] = {.lex_state = 89}, + [4709] = {.lex_state = 59}, + [4710] = {.lex_state = 89}, [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 0}, - [4715] = {.lex_state = 79}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 99}, - [4720] = {.lex_state = 85}, - [4721] = {.lex_state = 53}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 55}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, + [4712] = {.lex_state = 59}, + [4713] = {.lex_state = 89}, + [4714] = {.lex_state = 89}, + [4715] = {.lex_state = 89}, + [4716] = {.lex_state = 89}, + [4717] = {.lex_state = 89}, + [4718] = {.lex_state = 89}, + [4719] = {.lex_state = 89}, + [4720] = {.lex_state = 89}, + [4721] = {.lex_state = 89}, + [4722] = {.lex_state = 89}, + [4723] = {.lex_state = 59}, + [4724] = {.lex_state = 89}, + [4725] = {.lex_state = 0}, + [4726] = {.lex_state = 89}, + [4727] = {.lex_state = 89}, + [4728] = {.lex_state = 89}, [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 99}, - [4731] = {.lex_state = 85}, + [4730] = {.lex_state = 89}, + [4731] = {.lex_state = 0}, [4732] = {.lex_state = 0}, [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, + [4734] = {.lex_state = 89}, [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 83}, - [4737] = {.lex_state = 85}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 99}, - [4741] = {.lex_state = 53}, - [4742] = {.lex_state = 83}, - [4743] = {.lex_state = 99}, - [4744] = {.lex_state = 85}, - [4745] = {.lex_state = 83}, - [4746] = {.lex_state = 0}, + [4736] = {.lex_state = 89}, + [4737] = {.lex_state = 89}, + [4738] = {.lex_state = 89}, + [4739] = {.lex_state = 89}, + [4740] = {.lex_state = 59}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 0}, + [4743] = {.lex_state = 89}, + [4744] = {.lex_state = 59}, + [4745] = {.lex_state = 59}, + [4746] = {.lex_state = 59}, [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 99}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 53}, - [4751] = {.lex_state = 85}, - [4752] = {.lex_state = 53}, - [4753] = {.lex_state = 99}, - [4754] = {.lex_state = 0}, - [4755] = {.lex_state = 85}, - [4756] = {.lex_state = 99}, - [4757] = {.lex_state = 85}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 0}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 0}, - [4763] = {.lex_state = 99}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 0}, - [4766] = {.lex_state = 53}, - [4767] = {.lex_state = 0}, - [4768] = {.lex_state = 79}, - [4769] = {.lex_state = 85}, - [4770] = {.lex_state = 85}, - [4771] = {.lex_state = 79}, - [4772] = {.lex_state = 99}, - [4773] = {.lex_state = 99}, - [4774] = {.lex_state = 99}, - [4775] = {.lex_state = 99}, - [4776] = {.lex_state = 83}, - [4777] = {.lex_state = 85}, - [4778] = {.lex_state = 83}, - [4779] = {.lex_state = 99}, - [4780] = {.lex_state = 85}, - [4781] = {.lex_state = 53}, + [4748] = {.lex_state = 0}, + [4749] = {.lex_state = 59}, + [4750] = {.lex_state = 59}, + [4751] = {.lex_state = 89}, + [4752] = {.lex_state = 61}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 94}, + [4755] = {.lex_state = 59}, + [4756] = {.lex_state = 59}, + [4757] = {.lex_state = 59}, + [4758] = {.lex_state = 59}, + [4759] = {.lex_state = 89}, + [4760] = {.lex_state = 59}, + [4761] = {.lex_state = 89}, + [4762] = {.lex_state = 94}, + [4763] = {.lex_state = 89}, + [4764] = {.lex_state = 89}, + [4765] = {.lex_state = 89}, + [4766] = {.lex_state = 111}, + [4767] = {.lex_state = 89}, + [4768] = {.lex_state = 96}, + [4769] = {.lex_state = 59}, + [4770] = {.lex_state = 89}, + [4771] = {.lex_state = 89}, + [4772] = {.lex_state = 0}, + [4773] = {.lex_state = 0}, + [4774] = {.lex_state = 59}, + [4775] = {.lex_state = 59}, + [4776] = {.lex_state = 111}, + [4777] = {.lex_state = 59}, + [4778] = {.lex_state = 0}, + [4779] = {.lex_state = 61}, + [4780] = {.lex_state = 59}, + [4781] = {.lex_state = 94}, [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 99}, - [4784] = {.lex_state = 85}, - [4785] = {.lex_state = 83}, + [4783] = {.lex_state = 59}, + [4784] = {.lex_state = 59}, + [4785] = {.lex_state = 89}, [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 0}, - [4788] = {.lex_state = 99}, - [4789] = {.lex_state = 0}, - [4790] = {.lex_state = 85}, - [4791] = {.lex_state = 99}, - [4792] = {.lex_state = 53}, - [4793] = {.lex_state = 0}, - [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 99}, - [4796] = {.lex_state = 85}, - [4797] = {.lex_state = 99}, - [4798] = {.lex_state = 79}, - [4799] = {.lex_state = 53}, - [4800] = {.lex_state = 99}, - [4801] = {.lex_state = 85}, - [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 53}, - [4804] = {.lex_state = 99}, - [4805] = {.lex_state = 85}, - [4806] = {.lex_state = 83}, - [4807] = {.lex_state = 83}, - [4808] = {.lex_state = 99}, - [4809] = {.lex_state = 85}, - [4810] = {.lex_state = 53}, - [4811] = {.lex_state = 83}, - [4812] = {.lex_state = 99}, - [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 85}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 99}, + [4787] = {.lex_state = 59}, + [4788] = {.lex_state = 0}, + [4789] = {.lex_state = 59}, + [4790] = {.lex_state = 89}, + [4791] = {.lex_state = 59}, + [4792] = {.lex_state = 89}, + [4793] = {.lex_state = 89}, + [4794] = {.lex_state = 89}, + [4795] = {.lex_state = 0}, + [4796] = {.lex_state = 89}, + [4797] = {.lex_state = 89}, + [4798] = {.lex_state = 59}, + [4799] = {.lex_state = 61}, + [4800] = {.lex_state = 59}, + [4801] = {.lex_state = 111}, + [4802] = {.lex_state = 96}, + [4803] = {.lex_state = 89}, + [4804] = {.lex_state = 0}, + [4805] = {.lex_state = 59}, + [4806] = {.lex_state = 59}, + [4807] = {.lex_state = 0}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 0}, + [4810] = {.lex_state = 0}, + [4811] = {.lex_state = 0}, + [4812] = {.lex_state = 89}, + [4813] = {.lex_state = 59}, + [4814] = {.lex_state = 89}, + [4815] = {.lex_state = 89}, + [4816] = {.lex_state = 89}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 85}, - [4819] = {.lex_state = 79}, - [4820] = {.lex_state = 79}, - [4821] = {.lex_state = 0}, - [4822] = {.lex_state = 79}, - [4823] = {.lex_state = 53}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 59}, + [4820] = {.lex_state = 59}, + [4821] = {.lex_state = 59}, + [4822] = {.lex_state = 0}, + [4823] = {.lex_state = 0}, [4824] = {.lex_state = 0}, [4825] = {.lex_state = 0}, - [4826] = {.lex_state = 83}, - [4827] = {.lex_state = 99}, - [4828] = {.lex_state = 53}, - [4829] = {.lex_state = 99}, - [4830] = {.lex_state = 85}, - [4831] = {.lex_state = 53}, - [4832] = {.lex_state = 85}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 99}, - [4835] = {.lex_state = 0}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 85}, - [4838] = {.lex_state = 79}, - [4839] = {.lex_state = 79}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 73}, - [4842] = {.lex_state = 99}, + [4826] = {.lex_state = 89}, + [4827] = {.lex_state = 59}, + [4828] = {.lex_state = 0}, + [4829] = {.lex_state = 0}, + [4830] = {.lex_state = 59}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 0}, + [4833] = {.lex_state = 89}, + [4834] = {.lex_state = 0}, + [4835] = {.lex_state = 89}, + [4836] = {.lex_state = 89}, + [4837] = {.lex_state = 89}, + [4838] = {.lex_state = 59}, + [4839] = {.lex_state = 59}, + [4840] = {.lex_state = 59}, + [4841] = {.lex_state = 59}, + [4842] = {.lex_state = 59}, + [4843] = {.lex_state = 0}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 89}, + [4846] = {.lex_state = 59}, + [4847] = {.lex_state = 0}, + [4848] = {.lex_state = 0}, + [4849] = {.lex_state = 59}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 59}, + [4852] = {.lex_state = 111}, + [4853] = {.lex_state = 96}, + [4854] = {.lex_state = 0}, + [4855] = {.lex_state = 0}, + [4856] = {.lex_state = 0}, + [4857] = {.lex_state = 59}, + [4858] = {.lex_state = 59}, + [4859] = {.lex_state = 59}, + [4860] = {.lex_state = 0}, + [4861] = {.lex_state = 59}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 0}, + [4864] = {.lex_state = 0}, + [4865] = {.lex_state = 59}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 59}, + [4868] = {.lex_state = 0}, + [4869] = {.lex_state = 59}, + [4870] = {.lex_state = 0}, + [4871] = {.lex_state = 0}, + [4872] = {.lex_state = 0}, + [4873] = {.lex_state = 59}, + [4874] = {.lex_state = 59}, + [4875] = {.lex_state = 59}, + [4876] = {.lex_state = 59}, + [4877] = {.lex_state = 0}, + [4878] = {.lex_state = 111}, + [4879] = {.lex_state = 0}, + [4880] = {.lex_state = 96}, + [4881] = {.lex_state = 59}, + [4882] = {.lex_state = 59}, + [4883] = {.lex_state = 59}, + [4884] = {.lex_state = 0}, + [4885] = {.lex_state = 59}, + [4886] = {.lex_state = 0}, + [4887] = {.lex_state = 0}, + [4888] = {.lex_state = 0}, + [4889] = {.lex_state = 59}, + [4890] = {.lex_state = 0}, + [4891] = {.lex_state = 59}, + [4892] = {.lex_state = 0}, + [4893] = {.lex_state = 0}, + [4894] = {.lex_state = 0}, + [4895] = {.lex_state = 0}, + [4896] = {.lex_state = 59}, + [4897] = {.lex_state = 59}, + [4898] = {.lex_state = 0}, + [4899] = {.lex_state = 59}, + [4900] = {.lex_state = 111}, + [4901] = {.lex_state = 96}, + [4902] = {.lex_state = 59}, + [4903] = {.lex_state = 59}, + [4904] = {.lex_state = 0}, + [4905] = {.lex_state = 59}, + [4906] = {.lex_state = 59}, + [4907] = {.lex_state = 59}, + [4908] = {.lex_state = 0}, + [4909] = {.lex_state = 61}, + [4910] = {.lex_state = 0}, + [4911] = {.lex_state = 0}, + [4912] = {.lex_state = 59}, + [4913] = {.lex_state = 59}, + [4914] = {.lex_state = 59}, + [4915] = {.lex_state = 59}, + [4916] = {.lex_state = 59}, + [4917] = {.lex_state = 96}, + [4918] = {.lex_state = 111}, + [4919] = {.lex_state = 111}, + [4920] = {.lex_state = 111}, + [4921] = {.lex_state = 59}, + [4922] = {.lex_state = 111}, + [4923] = {.lex_state = 59}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 0}, + [4926] = {.lex_state = 0}, + [4927] = {.lex_state = 0}, + [4928] = {.lex_state = 96}, + [4929] = {.lex_state = 59}, + [4930] = {.lex_state = 111}, + [4931] = {.lex_state = 59}, + [4932] = {.lex_state = 0}, + [4933] = {.lex_state = 59}, + [4934] = {.lex_state = 0}, + [4935] = {.lex_state = 96}, + [4936] = {.lex_state = 0}, + [4937] = {.lex_state = 59}, + [4938] = {.lex_state = 111}, + [4939] = {.lex_state = 0}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 0}, + [4942] = {.lex_state = 96}, + [4943] = {.lex_state = 111}, + [4944] = {.lex_state = 59}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 0}, + [4947] = {.lex_state = 0}, + [4948] = {.lex_state = 0}, + [4949] = {.lex_state = 96}, + [4950] = {.lex_state = 111}, + [4951] = {.lex_state = 59}, + [4952] = {.lex_state = 111}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 0}, + [4956] = {.lex_state = 96}, + [4957] = {.lex_state = 96}, + [4958] = {.lex_state = 59}, + [4959] = {.lex_state = 111}, + [4960] = {.lex_state = 111}, + [4961] = {.lex_state = 0}, + [4962] = {.lex_state = 0}, + [4963] = {.lex_state = 59}, + [4964] = {.lex_state = 0}, + [4965] = {.lex_state = 96}, + [4966] = {.lex_state = 111}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 59}, + [4969] = {.lex_state = 0}, + [4970] = {.lex_state = 0}, + [4971] = {.lex_state = 96}, + [4972] = {.lex_state = 0}, + [4973] = {.lex_state = 59}, + [4974] = {.lex_state = 111}, + [4975] = {.lex_state = 0}, + [4976] = {.lex_state = 0}, + [4977] = {.lex_state = 0}, + [4978] = {.lex_state = 59}, + [4979] = {.lex_state = 96}, + [4980] = {.lex_state = 111}, + [4981] = {.lex_state = 0}, + [4982] = {.lex_state = 0}, + [4983] = {.lex_state = 59}, + [4984] = {.lex_state = 0}, + [4985] = {.lex_state = 0}, + [4986] = {.lex_state = 96}, + [4987] = {.lex_state = 111}, + [4988] = {.lex_state = 59}, + [4989] = {.lex_state = 0}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 0}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 59}, + [4994] = {.lex_state = 96}, + [4995] = {.lex_state = 96}, + [4996] = {.lex_state = 111}, + [4997] = {.lex_state = 111}, + [4998] = {.lex_state = 59}, + [4999] = {.lex_state = 0}, + [5000] = {.lex_state = 0}, + [5001] = {.lex_state = 0}, + [5002] = {.lex_state = 111}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 89}, + [5005] = {.lex_state = 59}, + [5006] = {.lex_state = 96}, + [5007] = {.lex_state = 59}, + [5008] = {.lex_state = 59}, + [5009] = {.lex_state = 0}, + [5010] = {.lex_state = 59}, + [5011] = {.lex_state = 111}, + [5012] = {.lex_state = 59}, + [5013] = {.lex_state = 0}, + [5014] = {.lex_state = 0}, + [5015] = {.lex_state = 0}, + [5016] = {.lex_state = 0}, + [5017] = {.lex_state = 0}, + [5018] = {.lex_state = 96}, + [5019] = {.lex_state = 59}, + [5020] = {.lex_state = 111}, + [5021] = {.lex_state = 0}, + [5022] = {.lex_state = 0}, + [5023] = {.lex_state = 59}, + [5024] = {.lex_state = 111}, + [5025] = {.lex_state = 96}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 0}, + [5028] = {.lex_state = 59}, + [5029] = {.lex_state = 0}, + [5030] = {.lex_state = 59}, + [5031] = {.lex_state = 89}, + [5032] = {.lex_state = 96}, + [5033] = {.lex_state = 0}, + [5034] = {.lex_state = 89}, + [5035] = {.lex_state = 59}, + [5036] = {.lex_state = 96}, + [5037] = {.lex_state = 111}, + [5038] = {.lex_state = 0}, + [5039] = {.lex_state = 0}, + [5040] = {.lex_state = 0}, + [5041] = {.lex_state = 94}, + [5042] = {.lex_state = 0}, + [5043] = {.lex_state = 94}, + [5044] = {.lex_state = 0}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 59}, + [5047] = {.lex_state = 89}, + [5048] = {.lex_state = 96}, + [5049] = {.lex_state = 111}, + [5050] = {.lex_state = 94}, + [5051] = {.lex_state = 111}, + [5052] = {.lex_state = 59}, + [5053] = {.lex_state = 0}, + [5054] = {.lex_state = 0}, + [5055] = {.lex_state = 59}, + [5056] = {.lex_state = 59}, + [5057] = {.lex_state = 0}, + [5058] = {.lex_state = 0}, + [5059] = {.lex_state = 96}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 111}, + [5062] = {.lex_state = 0}, + [5063] = {.lex_state = 59}, + [5064] = {.lex_state = 96}, + [5065] = {.lex_state = 59}, + [5066] = {.lex_state = 0}, + [5067] = {.lex_state = 0}, + [5068] = {.lex_state = 111}, + [5069] = {.lex_state = 89}, + [5070] = {.lex_state = 59}, + [5071] = {.lex_state = 111}, + [5072] = {.lex_state = 96}, + [5073] = {.lex_state = 0}, + [5074] = {.lex_state = 59}, + [5075] = {.lex_state = 0}, + [5076] = {.lex_state = 0}, + [5077] = {.lex_state = 94}, + [5078] = {.lex_state = 94}, + [5079] = {.lex_state = 0}, + [5080] = {.lex_state = 96}, + [5081] = {.lex_state = 59}, + [5082] = {.lex_state = 94}, + [5083] = {.lex_state = 111}, + [5084] = {.lex_state = 59}, + [5085] = {.lex_state = 89}, + [5086] = {.lex_state = 0}, + [5087] = {.lex_state = 0}, + [5088] = {.lex_state = 89}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 0}, + [5091] = {.lex_state = 0}, + [5092] = {.lex_state = 59}, + [5093] = {.lex_state = 96}, + [5094] = {.lex_state = 89}, + [5095] = {.lex_state = 89}, + [5096] = {.lex_state = 59}, + [5097] = {.lex_state = 89}, + [5098] = {.lex_state = 59}, + [5099] = {.lex_state = 59}, + [5100] = {.lex_state = 0}, + [5101] = {.lex_state = 94}, + [5102] = {.lex_state = 111}, + [5103] = {.lex_state = 59}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 89}, + [5106] = {.lex_state = 0}, + [5107] = {.lex_state = 59}, + [5108] = {.lex_state = 0}, + [5109] = {.lex_state = 59}, + [5110] = {.lex_state = 96}, + [5111] = {.lex_state = 0}, + [5112] = {.lex_state = 59}, + [5113] = {.lex_state = 111}, + [5114] = {.lex_state = 0}, + [5115] = {.lex_state = 89}, + [5116] = {.lex_state = 89}, + [5117] = {.lex_state = 59}, + [5118] = {.lex_state = 82}, + [5119] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13876,6 +15110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_BANG_LBRACE] = ACTIONS(1), [aux_sym_type_unit_token1] = ACTIONS(1), @@ -13892,13 +15127,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_prefix] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), - [anon_sym_or] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), [anon_sym_LT_DASH] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), + [anon_sym_handler] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_effect] = ACTIONS(1), [sym_hex_integer] = ACTIONS(1), [sym_octet_integer] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), @@ -13907,8 +15144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_force_id] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4786), - [sym_module] = STATE(2894), + [sym_source_file] = STATE(5062), + [sym_module] = STATE(3018), [anon_sym_module] = ACTIONS(5), [sym_comment] = ACTIONS(3), }, @@ -13918,25 +15155,30 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(9), 1, sym_comment, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + STATE(4), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 28, + ACTIONS(7), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -13948,6 +15190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -13958,28 +15201,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [48] = 5, + [54] = 5, ACTIONS(9), 1, sym_comment, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + STATE(5), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 28, + ACTIONS(11), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -13991,6 +15239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14001,29 +15250,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96] = 5, + [108] = 5, ACTIONS(9), 1, sym_comment, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 28, + ACTIONS(13), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14031,9 +15284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14044,29 +15299,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [144] = 5, + [162] = 5, ACTIONS(9), 1, sym_comment, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 28, + ACTIONS(15), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14074,9 +15333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14087,29 +15348,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [192] = 5, + [216] = 5, ACTIONS(9), 1, sym_comment, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + STATE(7), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 28, + ACTIONS(17), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14117,9 +15382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14130,29 +15397,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [240] = 5, + [270] = 5, ACTIONS(9), 1, sym_comment, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 28, + ACTIONS(19), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14160,9 +15431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14173,154 +15446,45 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [288] = 16, + [324] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(2), 3, + STATE(10), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_macro_id, - sym_qualified_id, - sym_force_id, - [358] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(17), 1, + ACTIONS(19), 32, anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, - sym_primitive_reverse_atom, - STATE(12), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(34), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_macro_id, - sym_qualified_id, - sym_force_id, - [428] = 12, - ACTIONS(9), 1, - sym_comment, - ACTIONS(23), 1, + anon_sym_forall, anon_sym_DASH_GT, - ACTIONS(25), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(27), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, sym_type_implicit_var, - ACTIONS(33), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, anon_sym_POUND_BANG, - STATE(288), 1, - sym_primitive_reverse_atom, - STATE(23), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(34), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14331,38 +15495,44 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [490] = 12, + [378] = 13, ACTIONS(9), 1, sym_comment, ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, + anon_sym_LBRACE, ACTIONS(27), 1, - anon_sym_BANG_LBRACE, + anon_sym_BANG, ACTIONS(29), 1, - aux_sym_type_unit_token1, + anon_sym_BANG_LBRACE, ACTIONS(31), 1, - sym_type_implicit_var, + aux_sym_type_unit_token1, ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, + sym_type_implicit_var, ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(21), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -14371,6 +15541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14381,28 +15552,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [552] = 5, + [448] = 5, ACTIONS(9), 1, sym_comment, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 28, + ACTIONS(21), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14414,6 +15590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14424,38 +15601,44 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [600] = 12, + [502] = 13, ACTIONS(9), 1, sym_comment, ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, + anon_sym_LBRACE, ACTIONS(27), 1, - anon_sym_BANG_LBRACE, + anon_sym_BANG, ACTIONS(29), 1, - aux_sym_type_unit_token1, + anon_sym_BANG_LBRACE, ACTIONS(31), 1, - sym_type_implicit_var, + aux_sym_type_unit_token1, ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, + sym_type_implicit_var, ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(9), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -14464,6 +15647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14474,46 +15658,53 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [662] = 12, + [572] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14524,96 +15715,114 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [724] = 12, + [642] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, - anon_sym_BANG, + ACTIONS(39), 1, + anon_sym_LPAREN, + ACTIONS(44), 1, + anon_sym_LBRACE, ACTIONS(47), 1, + anon_sym_forall, + ACTIONS(53), 1, + anon_sym_BANG, + ACTIONS(56), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(59), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(62), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(65), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(68), 1, anon_sym_POUND_BANG, - STATE(420), 1, + ACTIONS(71), 1, + sym_operator, + ACTIONS(74), 1, + sym_id, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + ACTIONS(50), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, - anon_sym_LPAREN, + ACTIONS(42), 19, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, - anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_macro_id, - sym_id, sym_qualified_id, sym_force_id, - [786] = 12, + [720] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(12), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(17), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14624,46 +15833,53 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [848] = 12, + [790] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(33), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(15), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14674,146 +15890,158 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [910] = 16, + [860] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, + anon_sym_LBRACE, ACTIONS(27), 1, - anon_sym_BANG_LBRACE, + anon_sym_BANG, ACTIONS(29), 1, - aux_sym_type_unit_token1, + anon_sym_BANG_LBRACE, ACTIONS(31), 1, - sym_type_implicit_var, + aux_sym_type_unit_token1, ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, + sym_type_implicit_var, ACTIONS(35), 1, - anon_sym_POUND_BANG, + anon_sym_POUND_BANG_LPAREN, ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + anon_sym_POUND_BANG, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(21), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 17, + ACTIONS(13), 23, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [980] = 16, + [930] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(319), 1, sym_primitive_reverse_atom, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, STATE(15), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 17, + ACTIONS(11), 23, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1050] = 12, + [1000] = 13, ACTIONS(9), 1, sym_comment, ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, + anon_sym_LBRACE, ACTIONS(27), 1, - anon_sym_BANG_LBRACE, + anon_sym_BANG, ACTIONS(29), 1, - aux_sym_type_unit_token1, + anon_sym_BANG_LBRACE, ACTIONS(31), 1, - sym_type_implicit_var, + aux_sym_type_unit_token1, ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, + sym_type_implicit_var, ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(16), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(7), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -14822,6 +16050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14832,28 +16061,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [1112] = 5, + [1070] = 5, ACTIONS(9), 1, sym_comment, - STATE(288), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(23), 3, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 28, + ACTIONS(21), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -14861,10 +16095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14875,52 +16109,58 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [1160] = 16, + [1123] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(77), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(80), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(89), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(92), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(95), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(98), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(101), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(104), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, + ACTIONS(107), 1, sym_operator, - ACTIONS(39), 1, + ACTIONS(110), 1, sym_id, - STATE(288), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(10), 3, + ACTIONS(86), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 17, + ACTIONS(42), 18, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -14929,793 +16169,756 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [1230] = 16, + [1200] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(65), 1, - anon_sym_LPAREN, - ACTIONS(70), 1, - anon_sym_forall, - ACTIONS(73), 1, - anon_sym_DASH_GT, - ACTIONS(76), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(79), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(82), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(85), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(88), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(91), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(94), 1, - sym_operator, - ACTIONS(97), 1, - sym_id, - STATE(288), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(47), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 17, + ACTIONS(19), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1300] = 16, + [1269] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(11), 3, + STATE(28), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 17, + ACTIONS(17), 31, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1370] = 16, + [1322] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(377), 1, sym_primitive_reverse_atom, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 17, + ACTIONS(19), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1440] = 16, + [1391] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(13), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(44), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 17, + ACTIONS(19), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1510] = 16, + [1460] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(14), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(23), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 17, + ACTIONS(17), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1580] = 16, + [1529] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(6), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 17, + ACTIONS(15), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1650] = 16, + [1598] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(7), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 17, + ACTIONS(19), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1720] = 16, + [1667] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_BANG_LBRACE, - ACTIONS(49), 1, - aux_sym_type_unit_token1, - ACTIONS(51), 1, - sym_type_implicit_var, - ACTIONS(53), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, - anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(4), 3, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 17, + ACTIONS(19), 31, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1790] = 16, + [1720] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(17), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 17, + ACTIONS(13), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [1860] = 16, + [1789] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_BANG_LBRACE, - ACTIONS(49), 1, - aux_sym_type_unit_token1, - ACTIONS(51), 1, - sym_type_implicit_var, - ACTIONS(53), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, - anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(16), 3, + STATE(19), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 17, + ACTIONS(19), 31, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_macro_id, - sym_qualified_id, - sym_force_id, - [1930] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(102), 1, - anon_sym_LPAREN, - ACTIONS(105), 1, anon_sym_forall, - ACTIONS(108), 1, anon_sym_DASH_GT, - ACTIONS(111), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(114), 1, anon_sym_BANG_LBRACE, - ACTIONS(117), 1, aux_sym_type_unit_token1, - ACTIONS(120), 1, sym_type_implicit_var, - ACTIONS(123), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(126), 1, anon_sym_POUND_BANG, - ACTIONS(129), 1, - sym_operator, - ACTIONS(132), 1, - sym_id, - STATE(420), 1, - sym_primitive_reverse_atom, - STATE(33), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(28), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(68), 17, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2000] = 16, + [1842] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(3), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(27), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 17, + ACTIONS(17), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2070] = 16, + [1911] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(45), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(49), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_forall, - ACTIONS(61), 1, - sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(420), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(5), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(28), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 17, + ACTIONS(15), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2140] = 16, + [1980] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(70), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(26), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, + ACTIONS(11), 22, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2209] = 5, + [2049] = 13, ACTIONS(9), 1, sym_comment, - STATE(505), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, + anon_sym_BANG, + ACTIONS(135), 1, + anon_sym_BANG_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 27, + ACTIONS(13), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -15726,187 +16929,201 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2256] = 16, + [2118] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(86), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(32), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, + ACTIONS(11), 22, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2325] = 16, + [2187] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(37), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(29), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, + ACTIONS(7), 22, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2394] = 16, + [2256] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(75), 3, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(34), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, + ACTIONS(7), 22, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [2463] = 5, + [2325] = 5, ACTIONS(9), 1, sym_comment, - STATE(542), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 27, + ACTIONS(15), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -15917,6 +17134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -15927,28 +17145,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2510] = 5, + [2378] = 5, ACTIONS(9), 1, sym_comment, - STATE(542), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(41), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 27, + ACTIONS(7), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -15956,9 +17178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -15969,28 +17193,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2557] = 5, + [2431] = 5, ACTIONS(9), 1, sym_comment, - STATE(542), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(42), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 27, + ACTIONS(11), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -15998,9 +17226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16011,28 +17241,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2604] = 5, + [2484] = 5, ACTIONS(9), 1, sym_comment, - STATE(542), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 27, + ACTIONS(13), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -16040,9 +17274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16053,45 +17289,44 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2651] = 12, + [2537] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - STATE(597), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(15), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16102,38 +17337,100 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2712] = 5, + [2590] = 5, ACTIONS(9), 1, sym_comment, - STATE(597), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 27, + ACTIONS(13), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [2643] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(133), 1, anon_sym_BANG, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, + ACTIONS(139), 1, sym_type_implicit_var, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, anon_sym_POUND_BANG, + STATE(355), 1, + sym_primitive_reverse_atom, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(49), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16144,27 +17441,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2759] = 5, + [2712] = 5, ACTIONS(9), 1, sym_comment, - STATE(597), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 27, + ACTIONS(19), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -16176,6 +17478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16186,27 +17489,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2806] = 5, + [2765] = 5, ACTIONS(9), 1, sym_comment, - STATE(597), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(45), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 27, + ACTIONS(17), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -16218,6 +17526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16228,45 +17537,52 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2853] = 12, + [2818] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(119), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - STATE(597), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(20), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(21), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16277,27 +17593,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2914] = 5, + [2887] = 5, ACTIONS(9), 1, sym_comment, - STATE(597), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(51), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 27, + ACTIONS(19), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -16309,6 +17630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16319,51 +17641,58 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [2961] = 16, + [2940] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, + ACTIONS(145), 1, anon_sym_LPAREN, - ACTIONS(137), 1, + ACTIONS(148), 1, + anon_sym_LBRACE, + ACTIONS(151), 1, anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(157), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(160), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(163), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(166), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(169), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(172), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, + ACTIONS(175), 1, sym_operator, - ACTIONS(155), 1, + ACTIONS(178), 1, sym_id, - STATE(542), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(72), 3, + ACTIONS(154), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, + ACTIONS(42), 18, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16372,263 +17701,256 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [3030] = 16, + [3017] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, - anon_sym_BANG, - ACTIONS(165), 1, - anon_sym_BANG_LBRACE, - ACTIONS(167), 1, - aux_sym_type_unit_token1, - ACTIONS(169), 1, - sym_type_implicit_var, - ACTIONS(171), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, - anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(67), 3, + STATE(38), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, + ACTIONS(11), 31, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3099] = 16, + [3070] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(47), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, + ACTIONS(21), 31, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3168] = 16, + [3123] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(377), 1, sym_primitive_reverse_atom, - STATE(48), 3, + STATE(43), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, + ACTIONS(7), 31, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3237] = 16, + [3176] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, + anon_sym_LBRACE, ACTIONS(185), 1, - aux_sym_type_unit_token1, + anon_sym_BANG, ACTIONS(187), 1, - sym_type_implicit_var, + anon_sym_BANG_LBRACE, ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, + aux_sym_type_unit_token1, ACTIONS(191), 1, - anon_sym_POUND_BANG, + sym_type_implicit_var, ACTIONS(193), 1, - anon_sym_LPAREN, + anon_sym_POUND_BANG_LPAREN, ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + anon_sym_POUND_BANG, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(50), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(112), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, + ACTIONS(19), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3306] = 16, + [3244] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(200), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + anon_sym_forall, + ACTIONS(209), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(212), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(215), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(218), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(224), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, + ACTIONS(227), 1, sym_operator, - ACTIONS(199), 1, + ACTIONS(230), 1, sym_id, - STATE(597), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(46), 3, + ACTIONS(206), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, + ACTIONS(42), 17, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16637,45 +17959,43 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [3375] = 12, + [3320] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - STATE(597), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(21), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16686,151 +18006,200 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [3436] = 16, + [3372] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, + STATE(506), 1, + sym_primitive_reverse_atom, + STATE(54), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(105), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 30, anon_sym_LPAREN, - ACTIONS(137), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(139), 1, anon_sym_DASH_GT, - ACTIONS(141), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(143), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(155), 1, + sym_macro_id, sym_id, - STATE(542), 1, + sym_qualified_id, + sym_force_id, + [3424] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(71), 3, + STATE(120), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + ACTIONS(17), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3505] = 16, + [3476] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LPAREN, - ACTIONS(204), 1, - anon_sym_forall, - ACTIONS(207), 1, - anon_sym_DASH_GT, - ACTIONS(210), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(213), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(216), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(219), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(222), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(225), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(228), 1, - sym_operator, - ACTIONS(231), 1, - sym_id, - STATE(542), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(59), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 16, + ACTIONS(13), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3574] = 12, + [3544] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - STATE(597), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(13), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -16841,363 +18210,373 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [3635] = 16, + [3612] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(69), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, + ACTIONS(19), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3704] = 16, + [3680] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, STATE(505), 1, sym_primitive_reverse_atom, - STATE(68), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(116), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, + ACTIONS(11), 21, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3773] = 16, + [3748] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(187), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(73), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(78), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, + ACTIONS(7), 21, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3842] = 16, + [3816] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(237), 1, - anon_sym_forall, - ACTIONS(240), 1, - anon_sym_DASH_GT, - ACTIONS(243), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(246), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(249), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(252), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(255), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(258), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - ACTIONS(261), 1, - sym_operator, - ACTIONS(264), 1, - sym_id, - STATE(505), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(71), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 16, - anon_sym_COMMA, + ACTIONS(7), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3911] = 16, + [3884] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(74), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(58), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, + ACTIONS(7), 21, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [3980] = 16, + [3952] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, - sym_id, - STATE(505), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(77), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(73), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, - anon_sym_COMMA, + ACTIONS(11), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4049] = 12, + [4020] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, - anon_sym_BANG, - ACTIONS(165), 1, - anon_sym_BANG_LBRACE, - ACTIONS(167), 1, - aux_sym_type_unit_token1, - ACTIONS(169), 1, - sym_type_implicit_var, - ACTIONS(171), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, - anon_sym_POUND_BANG, - STATE(505), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(64), 3, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(15), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17208,94 +18587,102 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4110] = 12, + [4072] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(281), 1, + anon_sym_LPAREN, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_forall, + ACTIONS(293), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(296), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(299), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(302), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(305), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(308), 1, anon_sym_POUND_BANG, - STATE(505), 1, + ACTIONS(311), 1, + sym_operator, + ACTIONS(314), 1, + sym_id, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(290), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, - anon_sym_LPAREN, + ACTIONS(42), 17, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_macro_id, - sym_id, sym_qualified_id, sym_force_id, - [4171] = 12, + [4148] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, - anon_sym_BANG, - ACTIONS(143), 1, - anon_sym_BANG_LBRACE, - ACTIONS(145), 1, - aux_sym_type_unit_token1, - ACTIONS(147), 1, - sym_type_implicit_var, - ACTIONS(149), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, - anon_sym_POUND_BANG, - STATE(542), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(13), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17306,45 +18693,90 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4232] = 12, + [4200] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(139), 1, + STATE(474), 1, + sym_primitive_reverse_atom, + STATE(66), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(69), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_DASH_GT, - ACTIONS(141), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(143), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - STATE(542), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [4252] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(59), 3, + STATE(68), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(7), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17355,45 +18787,51 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4293] = 12, + [4304] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - STATE(542), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(59), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(13), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17404,94 +18842,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4354] = 12, + [4372] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(317), 1, + anon_sym_LPAREN, + ACTIONS(320), 1, + anon_sym_LBRACE, + ACTIONS(323), 1, + anon_sym_forall, + ACTIONS(329), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(332), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(335), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(338), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(341), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(344), 1, anon_sym_POUND_BANG, - STATE(542), 1, + ACTIONS(347), 1, + sym_operator, + ACTIONS(350), 1, + sym_id, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(59), 3, + ACTIONS(326), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, - anon_sym_LPAREN, + ACTIONS(42), 17, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_forall, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_macro_id, - sym_id, sym_qualified_id, sym_force_id, - [4415] = 12, + [4448] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - STATE(505), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(15), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17502,45 +18956,51 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4476] = 12, + [4516] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(163), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(165), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(167), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - STATE(505), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(79), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(17), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17551,122 +19011,145 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4537] = 5, + [4584] = 17, ACTIONS(9), 1, sym_comment, - STATE(505), 1, + ACTIONS(353), 1, + anon_sym_LPAREN, + ACTIONS(356), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_forall, + ACTIONS(365), 1, + anon_sym_BANG, + ACTIONS(368), 1, + anon_sym_BANG_LBRACE, + ACTIONS(371), 1, + aux_sym_type_unit_token1, + ACTIONS(374), 1, + sym_type_implicit_var, + ACTIONS(377), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(380), 1, + anon_sym_POUND_BANG, + ACTIONS(383), 1, + sym_operator, + ACTIONS(386), 1, + sym_id, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(64), 3, + ACTIONS(362), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 27, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(42), 17, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_macro_id, - sym_id, sym_qualified_id, sym_force_id, - [4584] = 16, + [4660] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, + anon_sym_LBRACE, ACTIONS(185), 1, - aux_sym_type_unit_token1, + anon_sym_BANG, ACTIONS(187), 1, - sym_type_implicit_var, + anon_sym_BANG_LBRACE, ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, + aux_sym_type_unit_token1, ACTIONS(191), 1, - anon_sym_POUND_BANG, + sym_type_implicit_var, ACTIONS(193), 1, - anon_sym_LPAREN, + anon_sym_POUND_BANG_LPAREN, ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + anon_sym_POUND_BANG, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(60), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(84), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, + ACTIONS(11), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4653] = 5, + [4728] = 5, ACTIONS(9), 1, sym_comment, - STATE(505), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(64), 3, + STATE(55), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 27, + ACTIONS(19), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -17678,6 +19161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -17688,451 +19172,472 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [4700] = 16, + [4780] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(187), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(41), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 16, + ACTIONS(13), 21, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4769] = 16, + [4848] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(267), 1, - anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_forall, - ACTIONS(273), 1, - anon_sym_DASH_GT, - ACTIONS(276), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(279), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(282), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(285), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(288), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(291), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - ACTIONS(294), 1, - sym_operator, - ACTIONS(297), 1, - sym_id, - STATE(597), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4838] = 16, + [4916] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(57), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(85), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(19), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4907] = 16, + [4984] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(42), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(83), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 16, + ACTIONS(19), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [4976] = 16, + [5052] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(49), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(59), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, + ACTIONS(7), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5045] = 16, + [5120] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(43), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 16, + ACTIONS(21), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5114] = 16, + [5188] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, + anon_sym_LBRACE, ACTIONS(185), 1, - aux_sym_type_unit_token1, + anon_sym_BANG, ACTIONS(187), 1, - sym_type_implicit_var, + anon_sym_BANG_LBRACE, ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, + aux_sym_type_unit_token1, ACTIONS(191), 1, - anon_sym_POUND_BANG, + sym_type_implicit_var, ACTIONS(193), 1, - anon_sym_LPAREN, + anon_sym_POUND_BANG_LPAREN, ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + anon_sym_POUND_BANG, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(45), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, + ACTIONS(15), 21, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5183] = 16, + [5256] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(141), 1, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(269), 1, anon_sym_BANG, - ACTIONS(143), 1, + ACTIONS(271), 1, anon_sym_BANG_LBRACE, - ACTIONS(145), 1, + ACTIONS(273), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(275), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(277), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(279), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(542), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(44), 3, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(83), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 16, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + ACTIONS(21), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5252] = 5, + [5324] = 5, ACTIONS(9), 1, sym_comment, - STATE(505), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(64), 3, + STATE(101), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(39), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 27, + ACTIONS(7), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -18142,8 +19647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18154,44 +19659,43 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5299] = 12, + [5376] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(91), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 19, + ACTIONS(7), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18202,287 +19706,181 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5359] = 16, + [5428] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(106), 3, + STATE(92), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 15, + ACTIONS(11), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_macro_id, - sym_qualified_id, - sym_force_id, - [5427] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, anon_sym_forall, - ACTIONS(326), 1, anon_sym_DASH_GT, - ACTIONS(328), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(330), 1, anon_sym_BANG_LBRACE, - ACTIONS(332), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, sym_type_implicit_var, - ACTIONS(336), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, - sym_primitive_reverse_atom, - STATE(98), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(101), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 15, - anon_sym_COMMA, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5495] = 16, + [5480] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(344), 1, - anon_sym_LPAREN, - ACTIONS(347), 1, - anon_sym_forall, - ACTIONS(350), 1, - anon_sym_DASH_GT, - ACTIONS(353), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_BANG, - ACTIONS(356), 1, + ACTIONS(187), 1, anon_sym_BANG_LBRACE, - ACTIONS(359), 1, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(362), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(365), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(368), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(371), 1, - sym_operator, - ACTIONS(374), 1, - sym_id, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(90), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(93), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 15, + ACTIONS(17), 21, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5563] = 16, + [5548] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(104), 3, + STATE(107), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 15, + ACTIONS(11), 30, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_macro_id, - sym_qualified_id, - sym_force_id, - [5631] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, anon_sym_forall, - ACTIONS(326), 1, anon_sym_DASH_GT, - ACTIONS(328), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(330), 1, anon_sym_BANG_LBRACE, - ACTIONS(332), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, sym_type_implicit_var, - ACTIONS(336), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, - sym_primitive_reverse_atom, - STATE(109), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(101), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 15, - anon_sym_COMMA, - anon_sym_PIPE, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5699] = 5, + [5600] = 5, ACTIONS(9), 1, sym_comment, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 26, + ACTIONS(13), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -18493,6 +19891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18503,27 +19902,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5745] = 5, + [5652] = 5, ACTIONS(9), 1, sym_comment, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 26, + ACTIONS(15), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -18534,6 +19938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18544,37 +19949,51 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5791] = 5, + [5704] = 13, ACTIONS(9), 1, sym_comment, - STATE(793), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_BANG, + ACTIONS(187), 1, + anon_sym_BANG_LBRACE, + ACTIONS(189), 1, + aux_sym_type_unit_token1, + ACTIONS(191), 1, + sym_type_implicit_var, + ACTIONS(193), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(195), 1, + anon_sym_POUND_BANG, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(116), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 26, + ACTIONS(19), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18585,27 +20004,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5837] = 5, + [5772] = 5, ACTIONS(9), 1, sym_comment, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(98), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 26, + ACTIONS(17), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -18616,6 +20040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18626,96 +20051,98 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [5883] = 16, + [5824] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(330), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(332), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(112), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 15, + ACTIONS(21), 21, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [5951] = 12, + [5892] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - STATE(727), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(56), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 19, + ACTIONS(17), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18726,200 +20153,192 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6011] = 16, + [5944] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(330), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(332), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(111), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(60), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 15, + ACTIONS(17), 21, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6079] = 16, + [6012] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(110), 3, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 15, + ACTIONS(19), 30, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6147] = 16, + [6064] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(108), 3, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 15, + ACTIONS(15), 30, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6215] = 12, + [6116] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(103), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 19, + ACTIONS(19), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -18930,96 +20349,98 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6275] = 16, + [6168] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, - sym_id, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(107), 3, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 15, + ACTIONS(13), 30, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6343] = 12, + [6220] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(330), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(332), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - STATE(727), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(90), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(95), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 19, + ACTIONS(19), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19030,44 +20451,43 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6403] = 12, + [6288] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 19, + ACTIONS(21), 30, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19078,44 +20498,43 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6463] = 12, + [6340] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - STATE(793), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(116), 3, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 19, + ACTIONS(13), 30, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19126,26 +20545,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6523] = 5, + [6392] = 5, ACTIONS(9), 1, sym_comment, - STATE(727), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(99), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 26, + ACTIONS(11), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -19157,6 +20581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19167,26 +20592,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6569] = 5, + [6444] = 5, ACTIONS(9), 1, sym_comment, - STATE(727), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(104), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 26, + ACTIONS(7), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -19198,6 +20628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19208,44 +20639,43 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6615] = 12, + [6496] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 19, + ACTIONS(15), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19256,26 +20686,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6675] = 5, + [6548] = 5, ACTIONS(9), 1, sym_comment, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(109), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 26, + ACTIONS(17), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -19285,8 +20721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19297,26 +20733,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6721] = 5, + [6600] = 5, ACTIONS(9), 1, sym_comment, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 26, + ACTIONS(19), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -19326,8 +20768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19338,44 +20780,43 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6767] = 12, + [6652] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(328), 1, - anon_sym_BANG, - ACTIONS(330), 1, - anon_sym_BANG_LBRACE, - ACTIONS(332), 1, - aux_sym_type_unit_token1, - ACTIONS(334), 1, - sym_type_implicit_var, - ACTIONS(336), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, - anon_sym_POUND_BANG, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(90), 3, + STATE(111), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(101), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 19, + ACTIONS(19), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19386,509 +20827,514 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [6827] = 16, + [6704] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(94), 3, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 15, - anon_sym_EQ, + ACTIONS(21), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6895] = 16, + [6756] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(187), 1, anon_sym_BANG_LBRACE, - ACTIONS(306), 1, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(308), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(310), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(102), 3, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(67), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(90), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 15, - anon_sym_EQ, + ACTIONS(21), 21, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [6963] = 16, + [6824] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(306), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(308), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(310), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(95), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(54), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 15, - anon_sym_EQ, + ACTIONS(15), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7031] = 16, + [6892] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LPAREN, - ACTIONS(380), 1, - anon_sym_forall, - ACTIONS(383), 1, - anon_sym_DASH_GT, - ACTIONS(386), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(389), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(392), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(395), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(398), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(401), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(404), 1, - sym_operator, - ACTIONS(407), 1, - sym_id, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(116), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 15, + ACTIONS(19), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7099] = 16, + [6960] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(239), 1, anon_sym_BANG_LBRACE, - ACTIONS(306), 1, + ACTIONS(241), 1, aux_sym_type_unit_token1, - ACTIONS(308), 1, + ACTIONS(243), 1, sym_type_implicit_var, - ACTIONS(310), 1, + ACTIONS(245), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, + ACTIONS(247), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(506), 1, sym_primitive_reverse_atom, - STATE(87), 3, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(113), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(105), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 15, - anon_sym_EQ, + ACTIONS(11), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7167] = 16, + [7028] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(306), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(308), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(310), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(96), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(72), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 15, + ACTIONS(15), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7235] = 16, + [7096] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(93), 3, + STATE(118), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 15, + ACTIONS(19), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7303] = 16, + [7148] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, - anon_sym_BANG_LBRACE, - ACTIONS(306), 1, - aux_sym_type_unit_token1, - ACTIONS(308), 1, - sym_type_implicit_var, - ACTIONS(310), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, - anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, - sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(793), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(105), 3, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(115), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 15, + ACTIONS(21), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7371] = 16, + [7200] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(410), 1, - anon_sym_LPAREN, - ACTIONS(413), 1, - anon_sym_forall, - ACTIONS(416), 1, - anon_sym_DASH_GT, - ACTIONS(419), 1, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(253), 1, anon_sym_BANG, - ACTIONS(422), 1, + ACTIONS(255), 1, anon_sym_BANG_LBRACE, - ACTIONS(425), 1, + ACTIONS(257), 1, aux_sym_type_unit_token1, - ACTIONS(428), 1, + ACTIONS(259), 1, sym_type_implicit_var, - ACTIONS(431), 1, + ACTIONS(261), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(434), 1, + ACTIONS(263), 1, anon_sym_POUND_BANG, - ACTIONS(437), 1, - sym_operator, - ACTIONS(440), 1, - sym_id, - STATE(982), 1, + STATE(505), 1, sym_primitive_reverse_atom, - STATE(121), 3, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(114), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(88), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 14, + ACTIONS(17), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7438] = 11, + [7268] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - STATE(288), 1, + STATE(474), 1, sym_primitive_reverse_atom, - STATE(23), 3, + STATE(75), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(69), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 19, + ACTIONS(19), 30, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19899,26 +21345,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [7495] = 5, + [7320] = 5, ACTIONS(9), 1, sym_comment, - STATE(982), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(121), 3, + STATE(156), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 25, + ACTIONS(17), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -19929,6 +21380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -19939,230 +21391,230 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [7540] = 16, + [7371] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, - anon_sym_BANG, - ACTIONS(451), 1, - anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, - sym_type_implicit_var, - ACTIONS(457), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, - anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(130), 3, + STATE(154), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 14, - anon_sym_EQ, + ACTIONS(19), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7607] = 16, + [7422] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(132), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 14, + ACTIONS(13), 20, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7674] = 16, + [7489] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(133), 3, + STATE(126), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 14, + ACTIONS(11), 29, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7741] = 16, + [7540] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(122), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(138), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 14, + ACTIONS(11), 20, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7808] = 5, + [7607] = 5, ACTIONS(9), 1, sym_comment, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(121), 3, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 25, + ACTIONS(15), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -20173,6 +21625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20183,86 +21637,86 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [7853] = 16, + [7658] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(25), 1, - anon_sym_BANG, - ACTIONS(27), 1, - anon_sym_BANG_LBRACE, - ACTIONS(29), 1, - aux_sym_type_unit_token1, - ACTIONS(31), 1, - sym_type_implicit_var, - ACTIONS(33), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, - anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, - sym_id, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(137), 3, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(13), 29, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [7920] = 12, + [7709] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(121), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(129), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 18, + ACTIONS(17), 20, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -20271,6 +21725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20281,93 +21737,104 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [7979] = 16, + [7776] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(138), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 14, + ACTIONS(19), 20, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8046] = 11, + [7843] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(123), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 19, + ACTIONS(7), 20, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20378,42 +21845,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8103] = 11, + [7910] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 19, + ACTIONS(15), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20424,43 +21899,42 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8160] = 12, + [7977] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, - anon_sym_BANG, - ACTIONS(451), 1, - anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, - sym_type_implicit_var, - ACTIONS(457), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, - anon_sym_POUND_BANG, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(121), 3, + STATE(134), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 18, + ACTIONS(17), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20471,36 +21945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8219] = 5, + [8028] = 13, ACTIONS(9), 1, sym_comment, - STATE(982), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + anon_sym_BANG, + ACTIONS(427), 1, + anon_sym_BANG_LBRACE, + ACTIONS(429), 1, + aux_sym_type_unit_token1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(121), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(147), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 25, + ACTIONS(11), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20511,26 +21999,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8264] = 5, + [8095] = 5, ACTIONS(9), 1, sym_comment, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(121), 3, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 25, + ACTIONS(19), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -20541,6 +22033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20551,42 +22045,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8309] = 11, + [8146] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(27), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(29), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - STATE(288), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(23), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(155), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(34), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 19, + ACTIONS(19), 20, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20597,43 +22099,42 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8366] = 12, + [8213] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, - anon_sym_BANG, - ACTIONS(451), 1, - anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, - sym_type_implicit_var, - ACTIONS(457), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, - anon_sym_POUND_BANG, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(121), 3, + STATE(145), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 18, + ACTIONS(19), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20644,247 +22145,250 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8425] = 16, + [8264] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(123), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(148), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(17), 20, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8492] = 16, + [8331] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, + ACTIONS(397), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(128), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 14, + ACTIONS(15), 20, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8559] = 16, + [8398] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, - anon_sym_BANG, - ACTIONS(451), 1, - anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, - sym_type_implicit_var, - ACTIONS(457), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, - anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(135), 3, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 14, + ACTIONS(13), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8626] = 16, + [8449] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, - anon_sym_BANG, - ACTIONS(451), 1, - anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, - sym_type_implicit_var, - ACTIONS(457), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, - anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, - sym_id, - STATE(982), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(136), 3, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 14, + ACTIONS(15), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8693] = 12, + [8500] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(449), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - STATE(982), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(121), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(146), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 18, + ACTIONS(7), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20895,100 +22399,148 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8752] = 16, + [8567] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(140), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(142), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 29, anon_sym_LPAREN, - ACTIONS(445), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(447), 1, anon_sym_DASH_GT, - ACTIONS(449), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(451), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, sym_type_implicit_var, - ACTIONS(457), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(463), 1, + sym_macro_id, sym_id, - STATE(982), 1, + sym_qualified_id, + sym_force_id, + [8618] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(134), 3, + STATE(139), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 14, + ACTIONS(7), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [8819] = 16, + [8669] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(437), 1, anon_sym_LPAREN, - ACTIONS(445), 1, + ACTIONS(440), 1, + anon_sym_LBRACE, + ACTIONS(443), 1, anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, ACTIONS(449), 1, anon_sym_BANG, - ACTIONS(451), 1, + ACTIONS(452), 1, anon_sym_BANG_LBRACE, - ACTIONS(453), 1, - aux_sym_type_unit_token1, ACTIONS(455), 1, + aux_sym_type_unit_token1, + ACTIONS(458), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(461), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(464), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, + ACTIONS(467), 1, sym_operator, - ACTIONS(463), 1, + ACTIONS(470), 1, sym_id, - STATE(982), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(143), 3, + ACTIONS(446), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(141), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(42), 16, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -20997,41 +22549,42 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [8886] = 11, + [8744] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - STATE(597), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(79), 3, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 18, + ACTIONS(21), 29, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21042,41 +22595,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8942] = 11, + [8795] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - STATE(597), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 18, + ACTIONS(13), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21087,41 +22649,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [8998] = 11, + [8862] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - STATE(597), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 18, + ACTIONS(15), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21132,41 +22703,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [9054] = 11, + [8929] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(181), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - STATE(597), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(79), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 18, + ACTIONS(19), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21177,98 +22757,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [9110] = 16, + [8996] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(146), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(163), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 13, + ACTIONS(19), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [9176] = 16, + [9063] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(473), 1, + anon_sym_LPAREN, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(479), 1, + anon_sym_forall, + ACTIONS(485), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(488), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(491), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(494), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(497), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(500), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, + ACTIONS(503), 1, sym_operator, - ACTIONS(199), 1, + ACTIONS(506), 1, sym_id, - STATE(597), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(148), 3, + ACTIONS(482), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 13, + ACTIONS(42), 16, + anon_sym_EQ, anon_sym_PIPE, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21277,48 +22869,56 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [9242] = 16, + [9138] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(512), 1, + anon_sym_LBRACE, + ACTIONS(515), 1, + anon_sym_forall, + ACTIONS(521), 1, anon_sym_BANG, - ACTIONS(183), 1, + ACTIONS(524), 1, anon_sym_BANG_LBRACE, - ACTIONS(185), 1, + ACTIONS(527), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(530), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(533), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(536), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, + ACTIONS(539), 1, sym_operator, - ACTIONS(199), 1, + ACTIONS(542), 1, sym_id, - STATE(597), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(147), 3, + ACTIONS(518), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 13, + ACTIONS(42), 16, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -21327,1581 +22927,1880 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_id, sym_qualified_id, sym_force_id, - [9308] = 16, + [9213] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(181), 1, - anon_sym_BANG, - ACTIONS(183), 1, - anon_sym_BANG_LBRACE, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, - sym_type_implicit_var, - ACTIONS(189), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, - anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, - sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(597), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(149), 3, + STATE(160), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(53), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 13, + ACTIONS(11), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_macro_id, + sym_id, sym_qualified_id, sym_force_id, - [9374] = 16, + [9264] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_BANG_LBRACE, - ACTIONS(475), 1, - aux_sym_type_unit_token1, - ACTIONS(477), 1, - sym_type_implicit_var, - ACTIONS(479), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, - anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(155), 3, + STATE(127), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 11, + ACTIONS(7), 29, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [9438] = 12, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [9315] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(473), 1, - anon_sym_BANG_LBRACE, - ACTIONS(477), 1, - sym_type_implicit_var, - ACTIONS(479), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, - anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 15, + ACTIONS(21), 29, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [9494] = 12, + sym_qualified_id, + sym_force_id, + [9366] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(473), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(393), 1, + anon_sym_BANG, + ACTIONS(395), 1, anon_sym_BANG_LBRACE, - ACTIONS(477), 1, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(401), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(403), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - STATE(1621), 1, + STATE(619), 1, sym_primitive_reverse_atom, - STATE(157), 3, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(150), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(124), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 15, + ACTIONS(21), 20, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_or, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [9550] = 16, + sym_qualified_id, + sym_force_id, + [9433] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(487), 1, - anon_sym_LPAREN, - ACTIONS(490), 1, - anon_sym_forall, - ACTIONS(493), 1, - anon_sym_DASH_GT, - ACTIONS(496), 1, - anon_sym_BANG, - ACTIONS(499), 1, - anon_sym_BANG_LBRACE, - ACTIONS(502), 1, - aux_sym_type_unit_token1, - ACTIONS(505), 1, - sym_type_implicit_var, - ACTIONS(508), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(511), 1, - anon_sym_POUND_BANG, - ACTIONS(514), 1, - sym_operator, - ACTIONS(517), 1, - sym_id, - STATE(1621), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [9614] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(465), 1, + ACTIONS(19), 29, anon_sym_LPAREN, - ACTIONS(467), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(469), 1, anon_sym_DASH_GT, - ACTIONS(471), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(473), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, sym_type_implicit_var, - ACTIONS(479), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, - sym_primitive_reverse_atom, - STATE(156), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(170), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [9678] = 12, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [9484] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(473), 1, - anon_sym_BANG_LBRACE, - ACTIONS(477), 1, - sym_type_implicit_var, - ACTIONS(479), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, - anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 15, + ACTIONS(19), 29, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [9734] = 5, + sym_qualified_id, + sym_force_id, + [9535] = 5, ACTIONS(9), 1, sym_comment, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, STATE(157), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 22, + ACTIONS(17), 29, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [9776] = 5, + sym_qualified_id, + sym_force_id, + [9586] = 5, ACTIONS(9), 1, sym_comment, - STATE(1621), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(161), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 22, + ACTIONS(19), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [9818] = 12, + sym_qualified_id, + sym_force_id, + [9637] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(473), 1, - anon_sym_BANG_LBRACE, - ACTIONS(477), 1, - sym_type_implicit_var, - ACTIONS(479), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, - anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 15, + ACTIONS(15), 29, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [9874] = 5, + sym_qualified_id, + sym_force_id, + [9688] = 5, ACTIONS(9), 1, sym_comment, - STATE(1621), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(157), 3, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 22, + ACTIONS(21), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [9916] = 16, + sym_qualified_id, + sym_force_id, + [9739] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(159), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(21), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [9980] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [9806] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(162), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 11, + ACTIONS(21), 20, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10044] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [9873] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, + STATE(577), 1, + sym_primitive_reverse_atom, + STATE(151), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 29, anon_sym_LPAREN, - ACTIONS(467), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(469), 1, anon_sym_DASH_GT, - ACTIONS(471), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(473), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, sym_type_implicit_var, - ACTIONS(479), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, - sym_primitive_reverse_atom, - STATE(160), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(170), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10108] = 5, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [9924] = 13, ACTIONS(9), 1, sym_comment, - STATE(1621), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, + anon_sym_BANG, + ACTIONS(411), 1, + anon_sym_BANG_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(157), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(166), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 22, + ACTIONS(7), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10150] = 16, + sym_qualified_id, + sym_force_id, + [9991] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(411), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, + ACTIONS(413), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(415), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(417), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(419), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(167), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(144), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 11, + ACTIONS(13), 20, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10214] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10058] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(163), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(169), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(17), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10278] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10125] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(471), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(427), 1, anon_sym_BANG_LBRACE, - ACTIONS(475), 1, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, - sym_id, - STATE(1621), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(161), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(162), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(170), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(19), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10342] = 5, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10192] = 13, ACTIONS(9), 1, sym_comment, - STATE(1834), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + anon_sym_BANG, + ACTIONS(427), 1, + anon_sym_BANG_LBRACE, + ACTIONS(429), 1, + aux_sym_type_unit_token1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(151), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(19), 20, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10383] = 5, + sym_qualified_id, + sym_force_id, + [10259] = 13, ACTIONS(9), 1, sym_comment, - STATE(1834), 1, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(409), 1, + anon_sym_BANG, + ACTIONS(411), 1, + anon_sym_BANG_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + STATE(623), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(131), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(142), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(11), 20, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10424] = 5, + sym_qualified_id, + sym_force_id, + [10326] = 5, ACTIONS(9), 1, sym_comment, - STATE(1779), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(164), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(7), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10465] = 5, + sym_qualified_id, + sym_force_id, + [10377] = 13, ACTIONS(9), 1, sym_comment, - STATE(1834), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, + anon_sym_BANG, + ACTIONS(29), 1, + anon_sym_BANG_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(190), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(21), 20, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10506] = 16, + sym_qualified_id, + sym_force_id, + [10443] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, - anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(526), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(247), 3, + STATE(172), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_COMMA, + ACTIONS(19), 20, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10569] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10509] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, - anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(526), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(245), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, - anon_sym_COMMA, + ACTIONS(19), 20, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10632] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10575] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(252), 3, + STATE(174), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, - anon_sym_EQ, + ACTIONS(17), 20, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10695] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10641] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(253), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, - anon_sym_EQ, + ACTIONS(15), 20, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10758] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10707] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(29), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, + ACTIONS(31), 1, aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(33), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(35), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, - sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(233), 3, + STATE(13), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13), 20, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_COLON, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10821] = 5, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10773] = 13, ACTIONS(9), 1, sym_comment, - STATE(1779), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, + anon_sym_BANG, + ACTIONS(29), 1, + anon_sym_BANG_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(176), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(11), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10862] = 5, + sym_qualified_id, + sym_force_id, + [10839] = 13, ACTIONS(9), 1, sym_comment, - STATE(1779), 1, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(27), 1, + anon_sym_BANG, + ACTIONS(29), 1, + anon_sym_BANG_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + STATE(319), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(177), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(3), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(7), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [10905] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, + ACTIONS(139), 1, sym_type_implicit_var, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(182), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [10903] = 16, + sym_qualified_id, + sym_force_id, + [10970] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(594), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, - sym_operator, - ACTIONS(606), 1, - sym_id, - STATE(1922), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(225), 3, + STATE(183), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(11), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [10966] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11035] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(254), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + ACTIONS(13), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11029] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11100] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_LPAREN, - ACTIONS(611), 1, - anon_sym_forall, - ACTIONS(614), 1, - anon_sym_DASH_GT, - ACTIONS(617), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(620), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(623), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(626), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(629), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(632), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(635), 1, - sym_operator, - ACTIONS(638), 1, - sym_id, - STATE(1856), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(184), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + ACTIONS(15), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11092] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11165] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, - anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(526), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(244), 3, + STATE(185), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, - anon_sym_COMMA, + ACTIONS(17), 19, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_COLON, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11155] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11230] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(255), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + ACTIONS(19), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11218] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11295] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, + anon_sym_BANG, + ACTIONS(135), 1, + anon_sym_BANG_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(187), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 19, anon_sym_LPAREN, - ACTIONS(522), 1, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(524), 1, anon_sym_DASH_GT, - ACTIONS(526), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11360] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(131), 1, + anon_sym_EQ_GT, + ACTIONS(133), 1, anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(135), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(139), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(141), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(143), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, + STATE(355), 1, sym_primitive_reverse_atom, - STATE(246), 3, + STATE(49), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(40), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, - anon_sym_COMMA, + ACTIONS(21), 19, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_COLON, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11281] = 12, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [11425] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(572), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(576), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(559), 1, sym_operator, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(237), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(17), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -22909,42 +24808,48 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11336] = 12, + [11487] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(572), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(576), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(559), 1, sym_operator, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(13), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -22952,89 +24857,142 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11391] = 16, + [11549] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(641), 1, + STATE(1510), 1, + sym_primitive_reverse_atom, + STATE(191), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(201), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 24, anon_sym_LPAREN, - ACTIONS(644), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(647), 1, anon_sym_DASH_GT, - ACTIONS(650), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(653), 1, anon_sym_BANG_LBRACE, - ACTIONS(656), 1, aux_sym_type_unit_token1, - ACTIONS(659), 1, sym_type_implicit_var, - ACTIONS(662), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(665), 1, anon_sym_POUND_BANG, - ACTIONS(668), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(671), 1, sym_id, - STATE(1834), 1, + [11595] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(561), 1, + anon_sym_LPAREN, + ACTIONS(564), 1, + anon_sym_LBRACE, + ACTIONS(567), 1, + anon_sym_forall, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(576), 1, + anon_sym_BANG_LBRACE, + ACTIONS(579), 1, + aux_sym_type_unit_token1, + ACTIONS(582), 1, + sym_type_implicit_var, + ACTIONS(585), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(588), 1, + anon_sym_POUND_BANG, + ACTIONS(591), 1, + sym_operator, + ACTIONS(594), 1, + sym_id, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(570), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 10, + ACTIONS(42), 11, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11454] = 12, + [11665] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(572), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(576), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(611), 1, sym_operator, - STATE(1913), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(21), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -23042,42 +25000,48 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11509] = 12, + [11727] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(572), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(576), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(611), 1, sym_operator, - STATE(1913), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(192), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(19), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -23085,37 +25049,43 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11564] = 12, + [11789] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(594), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(598), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(611), 1, sym_operator, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(19), 15, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, @@ -23128,37 +25098,43 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11619] = 12, + [11851] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(594), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(598), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(611), 1, sym_operator, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(194), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(17), 15, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, @@ -23171,80 +25147,84 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11674] = 12, + [11913] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(594), 1, - anon_sym_BANG_LBRACE, - ACTIONS(598), 1, - sym_type_implicit_var, - ACTIONS(600), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, - anon_sym_POUND_BANG, - ACTIONS(604), 1, - sym_operator, - STATE(1922), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(205), 3, + STATE(190), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(7), 24, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [11729] = 12, + [11959] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(594), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(598), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(611), 1, sym_operator, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(15), 15, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, @@ -23257,27 +25237,31 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [11784] = 5, + [12021] = 5, ACTIONS(9), 1, sym_comment, - STATE(1779), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(15), 24, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -23285,6 +25269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -23293,74 +25278,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [11825] = 16, + [12067] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, + STATE(1510), 1, + sym_primitive_reverse_atom, + STATE(200), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(201), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 24, anon_sym_LPAREN, - ACTIONS(588), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(590), 1, anon_sym_DASH_GT, - ACTIONS(592), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(594), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, sym_type_implicit_var, - ACTIONS(600), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(606), 1, sym_id, - STATE(1922), 1, + [12113] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(223), 3, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, - anon_sym_EQ, + ACTIONS(19), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [11888] = 5, + sym_operator, + sym_id, + [12159] = 5, ACTIONS(9), 1, sym_comment, - STATE(1834), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(190), 3, + STATE(198), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(11), 24, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -23368,6 +25392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -23376,26 +25401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [11929] = 5, + [12205] = 5, ACTIONS(9), 1, sym_comment, - STATE(1856), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(184), 3, + STATE(203), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(19), 24, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -23412,26 +25442,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [11970] = 5, + [12251] = 5, ACTIONS(9), 1, sym_comment, - STATE(1856), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(184), 3, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(21), 24, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -23448,44 +25483,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [12011] = 16, + [12297] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, + ACTIONS(613), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(616), 1, + anon_sym_LBRACE, + ACTIONS(619), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, + ACTIONS(625), 1, anon_sym_BANG, - ACTIONS(594), 1, + ACTIONS(628), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, + ACTIONS(631), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(634), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(637), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(640), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(643), 1, sym_operator, - ACTIONS(606), 1, + ACTIONS(646), 1, sym_id, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(196), 3, + ACTIONS(622), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(42), 11, anon_sym_EQ, + anon_sym_COLON, anon_sym__, anon_sym_or, anon_sym_LT_DASH, @@ -23495,138 +25536,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12074] = 16, + [12367] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, - anon_sym_BANG, - ACTIONS(594), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(559), 1, sym_operator, - ACTIONS(606), 1, - sym_id, - STATE(1922), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(195), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(15), 15, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12137] = 16, + sym_id, + [12429] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, - anon_sym_BANG, - ACTIONS(594), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(559), 1, sym_operator, - ACTIONS(606), 1, - sym_id, - STATE(1922), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(194), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, + ACTIONS(21), 15, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12200] = 16, + sym_id, + [12491] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(680), 1, - anon_sym_DASH_GT, - ACTIONS(683), 1, - anon_sym_BANG, - ACTIONS(686), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(689), 1, - aux_sym_type_unit_token1, - ACTIONS(692), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(695), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(698), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(701), 1, + ACTIONS(611), 1, sym_operator, - ACTIONS(704), 1, - sym_id, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 10, + ACTIONS(13), 15, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, anon_sym_LT_DASH, @@ -23636,383 +25682,366 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12263] = 16, + sym_id, + [12553] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, - anon_sym_BANG, - ACTIONS(594), 1, - anon_sym_BANG_LBRACE, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, - sym_type_implicit_var, - ACTIONS(600), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, - anon_sym_POUND_BANG, - ACTIONS(604), 1, - sym_operator, - ACTIONS(606), 1, - sym_id, - STATE(1922), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(193), 3, + STATE(231), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, + ACTIONS(11), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12326] = 16, + sym_operator, + sym_id, + [12599] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(192), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(211), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(7), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12389] = 16, + sym_id, + [12661] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(191), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(214), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(11), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12452] = 8, - ACTIONS(9), 1, - sym_comment, - ACTIONS(709), 1, - anon_sym_COLON, - ACTIONS(711), 1, - aux_sym_number_token1, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(506), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [12499] = 16, + [12723] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(232), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, + ACTIONS(13), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12562] = 5, + sym_id, + [12785] = 13, ACTIONS(9), 1, sym_comment, - STATE(1856), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, + anon_sym_forall, + ACTIONS(603), 1, + anon_sym_BANG_LBRACE, + ACTIONS(605), 1, + sym_type_implicit_var, + ACTIONS(607), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(609), 1, + anon_sym_POUND_BANG, + ACTIONS(611), 1, + sym_operator, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(184), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(197), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(11), 15, anon_sym_LPAREN, anon_sym_EQ, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_id, - [12603] = 16, + [12847] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(603), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(605), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(607), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(609), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(611), 1, sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(189), 3, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(207), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12666] = 16, + sym_id, + [12909] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(719), 1, - anon_sym_DASH_GT, - ACTIONS(722), 1, - anon_sym_BANG, - ACTIONS(725), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(728), 1, - aux_sym_type_unit_token1, - ACTIONS(731), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(734), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(737), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(740), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(743), 1, - sym_id, - STATE(1913), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 10, + ACTIONS(15), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12729] = 5, + sym_id, + [12971] = 5, ACTIONS(9), 1, sym_comment, - STATE(1856), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(184), 3, + STATE(218), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(7), 24, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24021,6 +26050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24029,185 +26059,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [12770] = 16, + [13017] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, - anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, - sym_type_implicit_var, - ACTIONS(578), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, - anon_sym_POUND_BANG, - ACTIONS(582), 1, - sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(188), 3, + STATE(219), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12833] = 16, + sym_operator, + sym_id, + [13063] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(570), 1, - anon_sym_BANG, - ACTIONS(572), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, - aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(559), 1, sym_operator, - ACTIONS(584), 1, - sym_id, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(229), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(206), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(19), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12896] = 16, + sym_id, + [13125] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, + STATE(1504), 1, + sym_primitive_reverse_atom, + STATE(204), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(216), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 24, anon_sym_LPAREN, - ACTIONS(566), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(568), 1, anon_sym_DASH_GT, - ACTIONS(570), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(572), 1, anon_sym_BANG_LBRACE, - ACTIONS(574), 1, aux_sym_type_unit_token1, - ACTIONS(576), 1, sym_type_implicit_var, - ACTIONS(578), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(584), 1, sym_id, - STATE(1913), 1, + [13171] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(228), 3, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(15), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [12959] = 16, + sym_operator, + sym_id, + [13217] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, + STATE(1504), 1, + sym_primitive_reverse_atom, + STATE(221), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(216), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 24, anon_sym_LPAREN, - ACTIONS(588), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(590), 1, anon_sym_DASH_GT, - ACTIONS(592), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(594), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, sym_type_implicit_var, - ACTIONS(600), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(606), 1, sym_id, - STATE(1922), 1, + [13263] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(227), 3, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, + ACTIONS(19), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_or, anon_sym_LT_DASH, @@ -24217,166 +26311,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13022] = 16, + sym_operator, + sym_id, + [13309] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(766), 1, - sym_id, - STATE(1779), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(239), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(228), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, + ACTIONS(17), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13085] = 16, + sym_id, + [13371] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(768), 1, + STATE(1501), 1, + sym_primitive_reverse_atom, + STATE(225), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(208), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 24, anon_sym_LPAREN, - ACTIONS(771), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(774), 1, anon_sym_DASH_GT, - ACTIONS(777), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(780), 1, anon_sym_BANG_LBRACE, - ACTIONS(783), 1, aux_sym_type_unit_token1, - ACTIONS(786), 1, sym_type_implicit_var, - ACTIONS(789), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(792), 1, anon_sym_POUND_BANG, - ACTIONS(795), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(798), 1, sym_id, - STATE(1779), 1, + [13417] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(223), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(68), 10, + ACTIONS(19), 24, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13148] = 16, + sym_operator, + sym_id, + [13463] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(668), 1, + anon_sym_LBRACE, + ACTIONS(671), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, + ACTIONS(677), 1, anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(680), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, + ACTIONS(683), 1, aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(686), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(689), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(692), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(695), 1, sym_operator, - ACTIONS(766), 1, + ACTIONS(698), 1, sym_id, - STATE(1779), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(238), 3, + ACTIONS(674), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, + ACTIONS(42), 11, anon_sym_COMMA, anon_sym_EQ, anon_sym_COLON, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13211] = 5, + [13533] = 5, ACTIONS(9), 1, sym_comment, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + STATE(227), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(19), 24, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24394,25 +26538,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13252] = 5, + [13579] = 5, ACTIONS(9), 1, sym_comment, - STATE(1922), 1, + STATE(1504), 1, sym_primitive_reverse_atom, - STATE(205), 3, + STATE(204), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(216), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(21), 24, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24430,146 +26579,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13293] = 7, + [13625] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(801), 1, - aux_sym_number_token1, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(335), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(655), 1, + anon_sym_BANG_LBRACE, + ACTIONS(657), 1, + sym_type_implicit_var, + ACTIONS(659), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(661), 1, + anon_sym_POUND_BANG, + ACTIONS(663), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [13338] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(1922), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(205), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(19), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_id, - [13379] = 16, + [13687] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, - anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, - anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, - sym_type_implicit_var, - ACTIONS(760), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, - anon_sym_POUND_BANG, - ACTIONS(764), 1, - sym_operator, - ACTIONS(766), 1, - sym_id, - STATE(1779), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(237), 3, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(19), 24, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13442] = 5, + sym_operator, + sym_id, + [13733] = 5, ACTIONS(9), 1, sym_comment, - STATE(1922), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(205), 3, + STATE(229), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(17), 24, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24578,7 +26702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24587,27 +26710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13483] = 5, + [13779] = 5, ACTIONS(9), 1, sym_comment, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(213), 3, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 21, + ACTIONS(15), 24, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24615,6 +26742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24623,27 +26751,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13524] = 5, + [13825] = 5, ACTIONS(9), 1, sym_comment, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(213), 3, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 21, + ACTIONS(13), 24, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24651,6 +26783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24659,161 +26792,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13565] = 20, - ACTIONS(9), 1, - sym_comment, - ACTIONS(801), 1, - aux_sym_number_token1, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(807), 1, - anon_sym_COLON, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - STATE(516), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(707), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [13636] = 16, + [13871] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(655), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(657), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(659), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(661), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(663), 1, sym_operator, - ACTIONS(766), 1, - sym_id, - STATE(1779), 1, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(236), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(234), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(19), 15, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13699] = 5, + sym_id, + [13933] = 13, ACTIONS(9), 1, sym_comment, - STATE(1913), 1, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, + anon_sym_forall, + ACTIONS(655), 1, + anon_sym_BANG_LBRACE, + ACTIONS(657), 1, + sym_type_implicit_var, + ACTIONS(659), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(661), 1, + anon_sym_POUND_BANG, + ACTIONS(663), 1, + sym_operator, + STATE(1510), 1, sym_primitive_reverse_atom, - STATE(213), 3, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(191), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(201), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 21, + ACTIONS(21), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_id, - [13740] = 5, + [13995] = 5, ACTIONS(9), 1, sym_comment, - STATE(1913), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(213), 3, + STATE(232), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(216), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 21, + ACTIONS(7), 24, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -24821,6 +26922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24829,121 +26931,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [13781] = 8, - ACTIONS(9), 1, - sym_comment, - ACTIONS(801), 1, - aux_sym_number_token1, - ACTIONS(829), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(500), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [13828] = 16, + [14041] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(559), 1, sym_operator, - ACTIONS(766), 1, - sym_id, - STATE(1779), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(181), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(205), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(11), 15, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [13891] = 12, + sym_id, + [14103] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(748), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(754), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(758), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(559), 1, sym_operator, - STATE(1779), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(220), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(225), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(19), 15, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, @@ -24951,6 +27021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -24958,35 +27029,40 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [13946] = 12, + [14165] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(748), 1, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(754), 1, + ACTIONS(551), 1, anon_sym_BANG_LBRACE, - ACTIONS(758), 1, + ACTIONS(553), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(555), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(557), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(559), 1, sym_operator, - STATE(1779), 1, + STATE(1501), 1, sym_primitive_reverse_atom, - STATE(220), 3, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(189), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(208), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(7), 15, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, @@ -24994,6 +27070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25001,85 +27078,127 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14001] = 12, + [14227] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(748), 1, + STATE(1603), 1, + sym_primitive_reverse_atom, + STATE(255), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(750), 1, anon_sym_DASH_GT, - ACTIONS(754), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(758), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(760), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - STATE(1779), 1, + sym_id, + [14272] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(220), 3, + STATE(279), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(11), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [14056] = 12, + [14317] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(748), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(754), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(758), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(715), 1, sym_operator, STATE(1779), 1, sym_primitive_reverse_atom, - STATE(220), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(15), 14, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25087,230 +27206,223 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14111] = 16, + [14378] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(715), 1, sym_operator, - ACTIONS(766), 1, - sym_id, STATE(1779), 1, sym_primitive_reverse_atom, - STATE(180), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(250), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, - anon_sym_COMMA, + ACTIONS(7), 14, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14174] = 16, + sym_id, + [14439] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, - anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, - anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, - sym_type_implicit_var, - ACTIONS(760), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, - anon_sym_POUND_BANG, - ACTIONS(764), 1, - sym_operator, - ACTIONS(766), 1, - sym_id, STATE(1779), 1, sym_primitive_reverse_atom, - STATE(173), 3, + STATE(248), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, - anon_sym_COMMA, + ACTIONS(7), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14237] = 16, + sym_operator, + sym_id, + [14484] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(752), 1, - anon_sym_BANG, - ACTIONS(754), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(760), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(715), 1, sym_operator, - ACTIONS(766), 1, - sym_id, STATE(1779), 1, sym_primitive_reverse_atom, - STATE(197), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(267), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(240), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_COMMA, + ACTIONS(17), 14, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14300] = 16, + sym_id, + [14545] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(249), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 23, anon_sym_LPAREN, - ACTIONS(522), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(524), 1, anon_sym_DASH_GT, - ACTIONS(526), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(528), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, sym_type_implicit_var, - ACTIONS(534), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, - sym_primitive_reverse_atom, - STATE(174), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(248), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14363] = 12, + sym_operator, + sym_id, + [14590] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(528), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(532), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + ACTIONS(731), 1, sym_operator, - STATE(1834), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(268), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(19), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25318,42 +27430,47 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14418] = 12, + [14651] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(528), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(532), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + ACTIONS(731), 1, sym_operator, - STATE(1834), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(19), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25361,85 +27478,127 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14473] = 12, + [14712] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(522), 1, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(258), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(524), 1, anon_sym_DASH_GT, - ACTIONS(528), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(532), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(534), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - STATE(1834), 1, + sym_id, + [14757] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(190), 3, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(15), 23, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [14528] = 12, + [14802] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(528), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(532), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + ACTIONS(715), 1, sym_operator, - STATE(1834), 1, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(190), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, ACTIONS(13), 14, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25447,269 +27606,411 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14583] = 16, + [14863] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(526), 1, - anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, - aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + ACTIONS(731), 1, sym_operator, - ACTIONS(540), 1, - sym_id, - STATE(1834), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(172), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(247), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(17), 14, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14646] = 16, + sym_id, + [14924] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(526), 1, - anon_sym_BANG, - ACTIONS(528), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, - aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + ACTIONS(731), 1, sym_operator, - ACTIONS(540), 1, + STATE(1603), 1, + sym_primitive_reverse_atom, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(255), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 14, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_id, - STATE(1834), 1, + [14985] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + anon_sym_forall, + ACTIONS(723), 1, + anon_sym_BANG_LBRACE, + ACTIONS(725), 1, + sym_type_implicit_var, + ACTIONS(727), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(729), 1, + anon_sym_POUND_BANG, + ACTIONS(731), 1, + sym_operator, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(171), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, + ACTIONS(13), 14, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14709] = 16, + sym_id, + [15046] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(256), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 23, anon_sym_LPAREN, - ACTIONS(522), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(524), 1, anon_sym_DASH_GT, - ACTIONS(526), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(528), 1, anon_sym_BANG_LBRACE, - ACTIONS(530), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, sym_type_implicit_var, - ACTIONS(534), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [15091] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(739), 1, + anon_sym_forall, + ACTIONS(745), 1, + anon_sym_BANG, + ACTIONS(748), 1, + anon_sym_BANG_LBRACE, + ACTIONS(751), 1, + aux_sym_type_unit_token1, + ACTIONS(754), 1, + sym_type_implicit_var, + ACTIONS(757), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(760), 1, + anon_sym_POUND_BANG, + ACTIONS(763), 1, sym_operator, - ACTIONS(540), 1, + ACTIONS(766), 1, sym_id, - STATE(1834), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(199), 3, + ACTIONS(742), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(248), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, + ACTIONS(42), 10, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14772] = 16, + [15160] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(258), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 23, anon_sym_LPAREN, - ACTIONS(544), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(546), 1, anon_sym_DASH_GT, - ACTIONS(548), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(550), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, sym_type_implicit_var, - ACTIONS(556), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(562), 1, sym_id, - STATE(1856), 1, + [15205] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(200), 3, + STATE(262), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(19), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [14835] = 12, + sym_operator, + sym_id, + [15250] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(772), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(550), 1, + ACTIONS(781), 1, + anon_sym_BANG, + ACTIONS(784), 1, anon_sym_BANG_LBRACE, - ACTIONS(554), 1, + ACTIONS(787), 1, + aux_sym_type_unit_token1, + ACTIONS(790), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(793), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(796), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(799), 1, sym_operator, - STATE(1856), 1, + ACTIONS(802), 1, + sym_id, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(184), 3, + ACTIONS(778), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 14, - anon_sym_LPAREN, + ACTIONS(42), 10, anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_id, - [14890] = 12, + [15319] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(550), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(554), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(731), 1, sym_operator, - STATE(1856), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(184), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(252), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, ACTIONS(11), 14, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, @@ -25721,42 +28022,47 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [14945] = 12, + [15380] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(550), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(554), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(715), 1, sym_operator, - STATE(1856), 1, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(184), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(241), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(11), 14, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -25764,38 +28070,43 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [15000] = 12, + [15441] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(550), 1, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - ACTIONS(554), 1, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(731), 1, sym_operator, - STATE(1856), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(184), 3, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(253), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(7), 14, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, @@ -25807,223 +28118,268 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [15055] = 16, + [15502] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(258), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 23, anon_sym_LPAREN, - ACTIONS(544), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(546), 1, anon_sym_DASH_GT, - ACTIONS(548), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(550), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, sym_type_implicit_var, - ACTIONS(556), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(562), 1, sym_id, - STATE(1856), 1, + [15547] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, + anon_sym_forall, + ACTIONS(707), 1, + anon_sym_BANG_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(715), 1, + sym_operator, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(201), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(264), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(100), 10, + ACTIONS(19), 14, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [15118] = 16, + sym_id, + [15608] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, - anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, - aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(715), 1, sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(211), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(41), 10, + ACTIONS(21), 14, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [15181] = 16, + sym_id, + [15669] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(548), 1, - anon_sym_BANG, - ACTIONS(550), 1, + ACTIONS(811), 1, anon_sym_BANG_LBRACE, - ACTIONS(552), 1, - aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(813), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(815), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(817), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, + ACTIONS(819), 1, sym_operator, - ACTIONS(562), 1, - sym_id, - STATE(1856), 1, + STATE(1593), 1, sym_primitive_reverse_atom, - STATE(214), 3, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(293), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(256), 4, + STATE(288), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 10, - anon_sym_EQ, + ACTIONS(19), 14, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [15244] = 7, + sym_id, + [15730] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(711), 1, - aux_sym_number_token1, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(417), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 21, + STATE(1603), 1, + sym_primitive_reverse_atom, + STATE(277), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [15289] = 16, + [15775] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(592), 1, - anon_sym_BANG, - ACTIONS(594), 1, + ACTIONS(707), 1, anon_sym_BANG_LBRACE, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(709), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(711), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(713), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, + ACTIONS(715), 1, sym_operator, - ACTIONS(606), 1, - sym_id, - STATE(1922), 1, + STATE(1779), 1, sym_primitive_reverse_atom, - STATE(222), 3, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(258), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(198), 4, + STATE(245), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(19), 10, + ACTIONS(19), 14, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_or, anon_sym_LT_DASH, @@ -26033,205 +28389,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [15352] = 2, + sym_id, + [15836] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(723), 1, anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(725), 1, sym_type_implicit_var, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(729), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(731), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [15386] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(835), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(485), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 20, + STATE(1603), 1, + sym_primitive_reverse_atom, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(255), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [15430] = 7, + [15897] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(839), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(507), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 20, + ACTIONS(821), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(824), 1, + anon_sym_LBRACE, + ACTIONS(827), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(833), 1, + anon_sym_BANG, + ACTIONS(836), 1, + anon_sym_BANG_LBRACE, + ACTIONS(839), 1, + aux_sym_type_unit_token1, + ACTIONS(842), 1, + sym_type_implicit_var, + ACTIONS(845), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(848), 1, + anon_sym_POUND_BANG, + ACTIONS(851), 1, sym_operator, - sym_macro_id, + ACTIONS(854), 1, sym_id, - sym_qualified_id, - sym_force_id, - [15474] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(843), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(508), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 20, - anon_sym_LPAREN, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(830), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(269), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(42), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_EQ, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [15518] = 7, + [15966] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(847), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(478), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 20, + STATE(1786), 1, + sym_primitive_reverse_atom, + STATE(269), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [15562] = 5, + [16011] = 5, ACTIONS(9), 1, sym_comment, - STATE(1981), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(402), 3, + STATE(270), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(19), 23, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26248,75 +28570,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15602] = 19, + [16056] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(849), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - STATE(511), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - ACTIONS(841), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [15670] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(1986), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(394), 3, + STATE(269), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(379), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26324,6 +28601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26332,62 +28610,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15710] = 7, + [16101] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(853), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(474), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 20, + STATE(1786), 1, + sym_primitive_reverse_atom, + STATE(272), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [15754] = 5, + [16146] = 5, ACTIONS(9), 1, sym_comment, - STATE(1981), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(402), 3, + STATE(269), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(15), 23, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26404,26 +28690,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15794] = 5, + [16191] = 5, ACTIONS(9), 1, sym_comment, - STATE(2017), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(269), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(13), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26431,6 +28721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26439,63 +28730,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15834] = 7, + [16236] = 13, ACTIONS(9), 1, sym_comment, ACTIONS(857), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(472), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 20, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(269), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [15878] = 5, + [16297] = 5, ACTIONS(9), 1, sym_comment, - STATE(2017), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(13), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26503,6 +28809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26511,26 +28818,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15918] = 5, + [16342] = 5, ACTIONS(9), 1, sym_comment, - STATE(2017), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(274), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(11), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26538,6 +28849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26546,63 +28858,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [15958] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(470), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [16002] = 5, + [16387] = 5, ACTIONS(9), 1, sym_comment, - STATE(2017), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(15), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26610,6 +28889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26618,63 +28898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16042] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(709), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(506), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [16086] = 5, + [16432] = 5, ACTIONS(9), 1, sym_comment, - STATE(1986), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(394), 3, + STATE(239), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(379), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(17), 23, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26682,6 +28929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26690,146 +28938,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16126] = 18, + [16477] = 13, ACTIONS(9), 1, sym_comment, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, ACTIONS(863), 1, - anon_sym_LPAREN, - ACTIONS(868), 1, - anon_sym_PIPE, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, ACTIONS(871), 1, - anon_sym_forall, - ACTIONS(874), 1, - anon_sym_LBRACK, - ACTIONS(877), 1, - anon_sym_let, - ACTIONS(880), 1, - anon_sym_do, - ACTIONS(883), 1, - anon_sym_with, - ACTIONS(889), 1, - sym_floating, - ACTIONS(892), 1, - anon_sym_DQUOTE, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(895), 2, sym_operator, - sym_macro_id, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(886), 3, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(276), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 14, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(898), 3, + sym_floating, + anon_sym_DQUOTE, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(866), 4, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [16192] = 7, + [16538] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(903), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(468), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(292), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16236] = 5, + [16599] = 13, ACTIONS(9), 1, sym_comment, - STATE(2054), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(339), 3, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(269), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(371), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 20, + ACTIONS(19), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_id, - [16276] = 5, + [16660] = 5, ACTIONS(9), 1, sym_comment, - STATE(1986), 1, + STATE(1593), 1, sym_primitive_reverse_atom, - STATE(394), 3, + STATE(291), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(379), 4, + STATE(288), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(7), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26845,26 +29122,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16316] = 5, + [16705] = 5, ACTIONS(9), 1, sym_comment, - STATE(1986), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(394), 3, + STATE(287), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(379), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26872,6 +29153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -26880,62 +29162,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16356] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(907), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(487), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [16400] = 5, + [16750] = 5, ACTIONS(9), 1, sym_comment, - STATE(1981), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(402), 3, + STATE(275), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(7), 23, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26952,25 +29202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16440] = 5, + [16795] = 5, ACTIONS(9), 1, sym_comment, - STATE(1981), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(402), 3, + STATE(255), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(240), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(21), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -26987,167 +29242,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16480] = 7, + [16840] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(466), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [16524] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(913), 28, + STATE(1593), 1, + sym_primitive_reverse_atom, + STATE(296), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16558] = 5, + [16885] = 13, ACTIONS(9), 1, sym_comment, - STATE(2054), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(339), 3, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(283), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(371), 4, + STATE(278), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 20, + ACTIONS(17), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, sym_id, - [16598] = 7, + [16946] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(509), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 20, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(295), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16642] = 5, + [17007] = 5, ACTIONS(9), 1, sym_comment, - STATE(2054), 1, + STATE(1593), 1, sym_primitive_reverse_atom, - STATE(339), 3, + STATE(301), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(371), 4, + STATE(288), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 20, + ACTIONS(13), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -27163,132 +29418,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16682] = 2, + [17052] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 28, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_id, + [17113] = 13, + ACTIONS(9), 1, + sym_comment, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, sym_type_implicit_var, + ACTIONS(815), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 14, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16716] = 7, + [17174] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(923), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(510), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 20, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(269), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16760] = 7, + [17235] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(927), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(462), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 20, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16804] = 5, + [17296] = 5, ACTIONS(9), 1, sym_comment, - STATE(2054), 1, + STATE(1593), 1, sym_primitive_reverse_atom, - STATE(339), 3, + STATE(301), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(371), 4, + STATE(288), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 20, + ACTIONS(15), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -27304,513 +29650,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [16844] = 7, + [17341] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(929), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(512), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 20, + STATE(1593), 1, + sym_primitive_reverse_atom, + STATE(298), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16888] = 7, + [17386] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(931), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(514), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 20, + STATE(1593), 1, + sym_primitive_reverse_atom, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16932] = 7, + [17431] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(518), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, + STATE(1593), 1, + sym_primitive_reverse_atom, + STATE(300), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [16976] = 7, + [17476] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(935), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(520), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 20, + STATE(1593), 1, + sym_primitive_reverse_atom, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17020] = 7, + [17521] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(937), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(525), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 20, + ACTIONS(873), 1, anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACE, + ACTIONS(879), 1, + anon_sym_forall, + ACTIONS(885), 1, + anon_sym_BANG, + ACTIONS(888), 1, + anon_sym_BANG_LBRACE, + ACTIONS(891), 1, + aux_sym_type_unit_token1, + ACTIONS(894), 1, + sym_type_implicit_var, + ACTIONS(897), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(900), 1, + anon_sym_POUND_BANG, + ACTIONS(903), 1, + sym_operator, + ACTIONS(906), 1, + sym_id, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(882), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(42), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_COLON, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [17064] = 7, + [17590] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(939), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(527), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 20, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(303), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 14, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17108] = 7, + [17651] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(941), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(460), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 20, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(811), 1, + anon_sym_BANG_LBRACE, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(301), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17152] = 7, + [17712] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(943), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(530), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 20, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(306), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17196] = 7, + [17773] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(945), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(534), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(863), 1, + anon_sym_BANG_LBRACE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [17240] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(947), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(536), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 20, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(294), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [17284] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(949), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - STATE(476), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - ACTIONS(837), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [17352] = 2, + [17834] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(863), 1, anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(865), 1, sym_type_implicit_var, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(871), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [17386] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(831), 28, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(269), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 14, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17420] = 12, + [17895] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - ACTIONS(959), 1, + ACTIONS(917), 1, sym_type_implicit_var, - ACTIONS(961), 1, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, + ACTIONS(921), 1, anon_sym_POUND_BANG, - ACTIONS(965), 1, + ACTIONS(923), 1, sym_operator, - STATE(2017), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(419), 3, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(318), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, @@ -27829,33 +30149,38 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [17474] = 7, + [17955] = 8, ACTIONS(9), 1, sym_comment, - ACTIONS(967), 1, + ACTIONS(927), 1, anon_sym_COLON, - STATE(234), 1, + ACTIONS(929), 1, + aux_sym_number_token1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(570), 2, + STATE(435), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 20, + ACTIONS(925), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -27866,40 +30191,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [17518] = 12, + [18005] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - STATE(2017), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(311), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 13, + ACTIONS(7), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_QMARK, sym_hex_integer, @@ -27907,41 +30228,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [17572] = 12, + [18049] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - STATE(2017), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(312), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(11), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_QMARK, sym_hex_integer, @@ -27949,41 +30267,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [17626] = 12, + [18093] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - STATE(2017), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(419), 3, + STATE(318), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(388), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 13, + ACTIONS(13), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, anon_sym_QMARK, sym_hex_integer, @@ -27991,156 +30306,178 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [17680] = 2, + [18137] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 28, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(318), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17714] = 2, + [18181] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 28, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(314), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17748] = 2, + [18225] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 28, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(318), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17782] = 12, + [18269] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, - anon_sym_BANG_LBRACE, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - STATE(1981), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(402), 3, + STATE(317), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(13), 13, + ACTIONS(19), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, sym_id, - [17836] = 2, + [18313] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 28, + ACTIONS(931), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -28152,6 +30489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28162,91 +30500,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [17870] = 2, + [18351] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 28, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(318), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [17904] = 12, + [18395] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(936), 1, + anon_sym_LBRACE, + ACTIONS(939), 1, anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, + ACTIONS(945), 1, + anon_sym_BANG, + ACTIONS(948), 1, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + ACTIONS(951), 1, + aux_sym_type_unit_token1, + ACTIONS(954), 1, sym_type_implicit_var, - ACTIONS(983), 1, + ACTIONS(957), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, + ACTIONS(960), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, + ACTIONS(963), 1, sym_operator, - STATE(1981), 1, + ACTIONS(966), 1, + sym_id, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(402), 3, + ACTIONS(942), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(318), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, + ACTIONS(42), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_id, - [17958] = 2, + [18463] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 28, + ACTIONS(969), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -28258,6 +30615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28268,97 +30626,131 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [17992] = 2, + [18501] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(917), 1, sym_type_implicit_var, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(923), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(318), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [18026] = 2, + [18561] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(917), 1, sym_type_implicit_var, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(923), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(320), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [18060] = 7, + [18621] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(999), 1, - anon_sym_COLON, - STATE(234), 1, + ACTIONS(929), 1, + aux_sym_number_token1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(479), 2, + STATE(404), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 20, + ACTIONS(925), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28369,41 +30761,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18104] = 12, + [18669] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + ACTIONS(917), 1, sym_type_implicit_var, - ACTIONS(983), 1, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, + ACTIONS(921), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, + ACTIONS(923), 1, sym_operator, - STATE(1981), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(402), 3, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(318), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(19), 13, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -28411,73 +30808,93 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [18158] = 2, + [18729] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(917), 1, sym_type_implicit_var, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(923), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(323), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [18192] = 12, + [18789] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + ACTIONS(917), 1, sym_type_implicit_var, - ACTIONS(983), 1, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, + ACTIONS(921), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, + ACTIONS(923), 1, sym_operator, - STATE(1981), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(402), 3, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(318), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(383), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(7), 13, + ACTIONS(15), 13, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -28485,214 +30902,176 @@ static const uint16_t ts_small_parse_table[] = { sym_floating, anon_sym_DQUOTE, sym_id, - [18246] = 18, + [18849] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1001), 1, + ACTIONS(971), 32, anon_sym_LPAREN, - ACTIONS(1004), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1007), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1010), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1013), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(1016), 1, anon_sym_do, - ACTIONS(1019), 1, anon_sym_with, - ACTIONS(1025), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1028), 1, anon_sym_DQUOTE, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(1031), 2, sym_operator, sym_macro_id, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1022), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1034), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(866), 4, + [18887] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 32, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - [18312] = 12, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1037), 1, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(339), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [18366] = 16, + sym_qualified_id, + sym_force_id, + [18925] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(975), 32, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(453), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [18428] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [18963] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(977), 32, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(455), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [18490] = 6, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [19001] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(335), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 21, + ACTIONS(979), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28703,18 +31082,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18532] = 2, + [19039] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 28, + ACTIONS(981), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -28722,9 +31103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28735,32 +31118,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18566] = 6, + [19077] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(340), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 21, + ACTIONS(983), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28771,32 +31154,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18608] = 6, + [19115] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 21, + ACTIONS(985), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28807,128 +31190,104 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18650] = 16, + [19153] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(987), 32, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(456), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [18712] = 19, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [19191] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(989), 32, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(809), 1, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(516), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(707), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [18780] = 7, + [19229] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1059), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(495), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 20, + ACTIONS(991), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -28939,78 +31298,68 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18824] = 16, + [19267] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(993), 32, anon_sym_LPAREN, - ACTIONS(1064), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1067), 1, anon_sym_DASH_GT, - ACTIONS(1070), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1073), 1, anon_sym_BANG_LBRACE, - ACTIONS(1076), 1, aux_sym_type_unit_token1, - ACTIONS(1079), 1, sym_type_implicit_var, - ACTIONS(1082), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1085), 1, anon_sym_POUND_BANG, - ACTIONS(1088), 1, - sym_operator, - ACTIONS(1091), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(339), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(68), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [18886] = 6, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [19305] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 21, + ACTIONS(995), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29021,32 +31370,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18928] = 6, + [19343] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(343), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 21, + ACTIONS(997), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29057,45 +31406,45 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [18970] = 16, + [19381] = 13, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - ACTIONS(1039), 1, - anon_sym_DASH_GT, - ACTIONS(1041), 1, + ACTIONS(915), 1, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + ACTIONS(917), 1, sym_type_implicit_var, - ACTIONS(1045), 1, + ACTIONS(919), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, + ACTIONS(921), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, + ACTIONS(923), 1, sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, + STATE(1830), 1, sym_primitive_reverse_atom, - STATE(329), 3, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(307), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(371), 4, + STATE(310), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 9, + ACTIONS(7), 13, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym__, anon_sym_QMARK, sym_hex_integer, @@ -29103,32 +31452,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [19032] = 6, + sym_id, + [19441] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 21, + ACTIONS(999), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29139,68 +31489,79 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19074] = 6, + [19479] = 13, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(345), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 21, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, + anon_sym_forall, + ACTIONS(915), 1, + anon_sym_BANG_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(923), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(325), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 13, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym__, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [19116] = 6, + [19539] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 21, + ACTIONS(1001), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29211,32 +31572,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19158] = 6, + [19577] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(348), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 21, + ACTIONS(1003), 32, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29247,33 +31608,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19200] = 7, + [19615] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(829), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(500), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 20, + ACTIONS(973), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29284,32 +31643,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19244] = 6, + [19652] = 19, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(1005), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_PIPE, + ACTIONS(1013), 1, + anon_sym_forall, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1019), 1, + anon_sym_let, + ACTIONS(1022), 1, + anon_sym_do, + ACTIONS(1025), 1, + anon_sym_with, + ACTIONS(1028), 1, + anon_sym_handler, + ACTIONS(1034), 1, + sym_floating, + ACTIONS(1037), 1, + anon_sym_DQUOTE, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(279), 2, + ACTIONS(1040), 2, + sym_operator, + sym_macro_id, + STATE(346), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + ACTIONS(1031), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1043), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 21, + ACTIONS(1008), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [19723] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29320,32 +31730,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19286] = 6, + [19760] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(350), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 21, + ACTIONS(979), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29356,32 +31765,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19328] = 6, + [19797] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 21, + ACTIONS(983), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29392,32 +31800,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19370] = 6, + [19834] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(352), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 21, + ACTIONS(985), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29428,32 +31835,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19412] = 6, + [19871] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 21, + ACTIONS(975), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29464,32 +31870,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19454] = 6, + [19908] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(354), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 21, + ACTIONS(987), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29500,32 +31905,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19496] = 6, + [19945] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 21, + ACTIONS(989), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29536,32 +31940,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19538] = 6, + [19982] = 7, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(1048), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(356), 2, + STATE(532), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 21, + ACTIONS(1046), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29572,32 +31980,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19580] = 6, + [20029] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 21, + ACTIONS(969), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29608,32 +32015,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19622] = 6, + [20066] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(358), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 21, + ACTIONS(991), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29644,32 +32050,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19664] = 6, + [20103] = 7, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(1052), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(279), 2, + STATE(527), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 21, + ACTIONS(1050), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29680,32 +32090,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19706] = 6, + [20150] = 6, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(361), 2, + STATE(371), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 21, + ACTIONS(1054), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29716,81 +32129,101 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19748] = 19, + [20195] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(993), 31, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(809), 1, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1094), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(583), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [20232] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(915), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [19816] = 6, + [20269] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 21, + ACTIONS(997), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29801,32 +32234,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19858] = 6, + [20306] = 7, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(1058), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(363), 2, + STATE(509), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 21, + ACTIONS(1056), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29837,32 +32274,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19900] = 6, + [20353] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(279), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 21, + ACTIONS(999), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29873,32 +32309,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19942] = 6, + [20390] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(365), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 21, + ACTIONS(1001), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29909,32 +32344,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [19984] = 6, + [20427] = 20, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(929), 1, + aux_sym_number_token1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1062), 1, + anon_sym_COLON, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1070), 1, + anon_sym_do, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(279), 2, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(597), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + ACTIONS(925), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 21, + [20500] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29945,32 +32432,31 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [20026] = 6, + [20537] = 2, ACTIONS(9), 1, sym_comment, - STATE(224), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(367), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 21, + ACTIONS(985), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -29981,32 +32467,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [20068] = 6, + [20574] = 7, ACTIONS(9), 1, sym_comment, - STATE(224), 1, + ACTIONS(1088), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(279), 2, + STATE(502), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(332), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(1096), 21, + ACTIONS(1086), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -30017,385 +32507,364 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [20110] = 12, + [20621] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(1003), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(394), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [20164] = 12, + sym_qualified_id, + sym_force_id, + [20658] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(979), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(394), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, - anon_sym_LPAREN, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [20695] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1046), 23, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [20218] = 16, + sym_qualified_id, + sym_force_id, + [20740] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, - anon_sym_forall, - ACTIONS(1039), 1, - anon_sym_DASH_GT, - ACTIONS(1041), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, - sym_type_implicit_var, - ACTIONS(1045), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, - anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(378), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1046), 23, anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(295), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20280] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [20785] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(987), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(291), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20342] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [20822] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(989), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(289), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20404] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [20859] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(991), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1053), 1, - anon_sym_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(281), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20466] = 12, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [20896] = 8, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, - anon_sym_forall, - ACTIONS(1100), 1, - anon_sym_DASH_GT, - ACTIONS(1102), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, - sym_type_implicit_var, - ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, - anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(394), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(1090), 1, + anon_sym_COLON, + ACTIONS(1092), 1, + aux_sym_number_token1, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(551), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(925), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [20520] = 12, + sym_qualified_id, + sym_force_id, + [20945] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(969), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(394), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [20574] = 7, + sym_qualified_id, + sym_force_id, + [20982] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1112), 1, - aux_sym_number_token1, - STATE(376), 1, + STATE(322), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(612), 2, + STATE(346), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 20, + ACTIONS(1050), 23, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -30406,910 +32875,838 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [20618] = 16, + [21027] = 21, ACTIONS(9), 1, sym_comment, + ACTIONS(1092), 1, + aux_sym_number_token1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, + anon_sym_PIPE, ACTIONS(1098), 1, - anon_sym_forall, + anon_sym_COLON, ACTIONS(1100), 1, - anon_sym_DASH_GT, + anon_sym_forall, ACTIONS(1102), 1, - anon_sym_BANG_LBRACE, + anon_sym_LBRACK, ACTIONS(1104), 1, - sym_type_implicit_var, + anon_sym_let, ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, + anon_sym_do, ACTIONS(1108), 1, - anon_sym_POUND_BANG, + anon_sym_with, ACTIONS(1110), 1, - sym_operator, + anon_sym_handler, ACTIONS(1114), 1, - anon_sym_LPAREN, + sym_floating, ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + anon_sym_DQUOTE, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(627), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(925), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(375), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [21102] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(389), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1050), 23, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20680] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21147] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(931), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(282), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20742] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21184] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(971), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(283), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20804] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21221] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(993), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(268), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20866] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21258] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(973), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1100), 1, anon_sym_DASH_GT, - ACTIONS(1102), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(278), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20928] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21295] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(995), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(977), 1, anon_sym_DASH_GT, - ACTIONS(979), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + sym_macro_id, sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(285), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + sym_qualified_id, + sym_force_id, + [21332] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(404), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(925), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [20990] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21377] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(997), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(977), 1, anon_sym_DASH_GT, - ACTIONS(979), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(286), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21052] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21414] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(981), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(977), 1, anon_sym_DASH_GT, - ACTIONS(979), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(266), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21114] = 20, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21451] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(711), 1, - aux_sym_number_token1, - ACTIONS(1130), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 23, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1134), 1, anon_sym_COLON, - ACTIONS(1136), 1, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(647), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [21184] = 16, + [21496] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, + ACTIONS(971), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(977), 1, anon_sym_DASH_GT, - ACTIONS(979), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(981), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(270), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21246] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21533] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(400), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 23, anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(271), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21308] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21578] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(1003), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(955), 1, anon_sym_DASH_GT, - ACTIONS(957), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(959), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(961), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(273), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21370] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21615] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, + ACTIONS(1122), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(538), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 22, anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(274), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21432] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21662] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(999), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(955), 1, anon_sym_DASH_GT, - ACTIONS(957), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(959), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(961), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(276), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21494] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21699] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, - anon_sym_forall, - ACTIONS(1100), 1, - anon_sym_DASH_GT, - ACTIONS(1102), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, - sym_type_implicit_var, - ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, - anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(406), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 23, anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(374), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21556] = 20, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21744] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1112), 1, - aux_sym_number_token1, - ACTIONS(1164), 1, + ACTIONS(977), 31, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1168), 1, anon_sym_COLON, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(707), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(644), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + [21781] = 7, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1092), 1, + aux_sym_number_token1, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(427), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [21626] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1098), 1, - anon_sym_forall, - ACTIONS(1100), 1, - anon_sym_DASH_GT, - ACTIONS(1102), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, - sym_type_implicit_var, - ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, - anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, + ACTIONS(925), 22, anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(369), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21688] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21828] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1001), 31, anon_sym_LPAREN, - ACTIONS(1193), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1196), 1, anon_sym_DASH_GT, - ACTIONS(1199), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1202), 1, anon_sym_BANG_LBRACE, - ACTIONS(1205), 1, aux_sym_type_unit_token1, - ACTIONS(1208), 1, sym_type_implicit_var, - ACTIONS(1211), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1214), 1, anon_sym_POUND_BANG, - ACTIONS(1217), 1, - sym_operator, - ACTIONS(1220), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(394), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(68), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21750] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [21865] = 21, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(929), 1, + aux_sym_number_token1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1100), 1, - anon_sym_DASH_GT, - ACTIONS(1102), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1104), 1, - sym_type_implicit_var, - ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, - anon_sym_POUND_BANG, - ACTIONS(1110), 1, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1070), 1, + anon_sym_do, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1126), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1116), 1, - anon_sym_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(368), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(379), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, + sym_macro_id, + STATE(704), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(925), 3, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym__, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [21812] = 2, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [21940] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 28, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31320,18 +33717,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [21846] = 2, + [21985] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 28, + ACTIONS(975), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31342,6 +33741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31352,346 +33752,251 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [21880] = 16, + [22022] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, - anon_sym_BANG_LBRACE, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, + ACTIONS(1130), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(415), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 22, anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(327), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [21942] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, - anon_sym_BANG_LBRACE, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + sym_macro_id, sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(325), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [22004] = 19, + sym_qualified_id, + sym_force_id, + [22069] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 23, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1223), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(607), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(905), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + [22114] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [22072] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, - anon_sym_BANG_LBRACE, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, + ACTIONS(1128), 23, anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(320), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [22134] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [22159] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(931), 31, anon_sym_LPAREN, - ACTIONS(1228), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1231), 1, anon_sym_DASH_GT, - ACTIONS(1234), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1237), 1, anon_sym_BANG_LBRACE, - ACTIONS(1240), 1, aux_sym_type_unit_token1, - ACTIONS(1243), 1, sym_type_implicit_var, - ACTIONS(1246), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1249), 1, anon_sym_POUND_BANG, - ACTIONS(1252), 1, - sym_operator, - ACTIONS(1255), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(402), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(68), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [22196] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [22196] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(979), 1, - anon_sym_BANG_LBRACE, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(346), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1132), 23, anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, - sym_id, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(317), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_EQ, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [22258] = 19, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [22241] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(927), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(435), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(925), 22, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(809), 1, anon_sym_forall, - ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1258), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(613), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(833), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [22326] = 2, + [22288] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 28, + ACTIONS(977), 31, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31699,9 +34004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31712,28 +34019,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22360] = 2, + [22325] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 28, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(403), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31744,18 +34058,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22394] = 2, + [22370] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 28, + ACTIONS(973), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31765,7 +34079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31776,18 +34092,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22428] = 2, + [22406] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 28, + ACTIONS(1003), 30, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31798,6 +34115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31808,67 +34126,52 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22462] = 19, + [22442] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(993), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, + anon_sym_in, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1260), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(608), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(845), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [22530] = 2, + [22478] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 28, + ACTIONS(995), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31878,7 +34181,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31889,64 +34194,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22564] = 16, + [22514] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(313), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(19), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [22626] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(997), 28, + ACTIONS(997), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -31956,7 +34215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -31967,78 +34228,68 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22660] = 16, + [22550] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 22, anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(312), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(100), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [22722] = 6, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [22594] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(417), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 21, + ACTIONS(931), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32049,32 +34300,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22764] = 6, + [22630] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(421), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 21, + ACTIONS(999), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32085,81 +34334,86 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22806] = 19, + [22666] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1262), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1126), 1, anon_sym_COLON, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(602), 2, + STATE(704), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(925), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(851), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [22874] = 6, + [22738] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + STATE(488), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 21, + ACTIONS(1054), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32170,110 +34424,108 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [22916] = 16, + [22782] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(477), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 22, anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(311), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(41), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [22978] = 16, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [22826] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1264), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1267), 1, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1270), 1, - anon_sym_DASH_GT, - ACTIONS(1273), 1, - anon_sym_BANG, - ACTIONS(1276), 1, - anon_sym_BANG_LBRACE, - ACTIONS(1279), 1, - aux_sym_type_unit_token1, - ACTIONS(1282), 1, - sym_type_implicit_var, - ACTIONS(1285), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1288), 1, - anon_sym_POUND_BANG, - ACTIONS(1291), 1, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1134), 1, + anon_sym_COLON, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1118), 2, sym_operator, - ACTIONS(1294), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(419), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(68), 9, + sym_macro_id, + STATE(694), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1054), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [23040] = 2, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [22898] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 28, + ACTIONS(1001), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -32283,7 +34535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32294,32 +34548,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23074] = 6, + [22934] = 7, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1136), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + STATE(580), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 21, + ACTIONS(1086), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32330,32 +34587,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23116] = 6, + [22980] = 8, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1140), 1, + aux_sym_number_token1, + STATE(424), 1, sym_string, - STATE(1667), 1, + STATE(1856), 1, sym_integer, - STATE(425), 2, + STATE(775), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 21, + ACTIONS(925), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32366,127 +34627,87 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23158] = 19, + [23028] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1297), 1, + ACTIONS(1142), 1, anon_sym_COLON, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(594), 2, + STATE(674), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(855), 3, + ACTIONS(1128), 3, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [23226] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(957), 1, - anon_sym_BANG_LBRACE, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1158), 1, - anon_sym_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(309), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(388), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - [23288] = 6, + [23100] = 7, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1144), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + STATE(578), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 21, + ACTIONS(1056), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32497,32 +34718,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23330] = 6, + [23146] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(428), 2, + STATE(477), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 21, + ACTIONS(1128), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32533,81 +34756,68 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23372] = 19, + [23190] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1003), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, + anon_sym_in, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(480), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(921), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [23440] = 6, + [23226] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + STATE(420), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 21, + ACTIONS(1128), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32618,32 +34828,36 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23482] = 6, + [23270] = 8, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1146), 1, + anon_sym_COLON, + ACTIONS(1148), 1, + aux_sym_number_token1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - STATE(430), 2, + STATE(761), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 21, + ACTIONS(925), 20, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32654,32 +34868,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23524] = 6, + [23318] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 21, + ACTIONS(1001), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32690,32 +34902,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23566] = 6, + [23354] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(432), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 21, + ACTIONS(977), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32726,32 +34936,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23608] = 6, + [23390] = 20, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1150), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(594), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + ACTIONS(1046), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 21, + [23462] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32762,32 +35022,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23650] = 6, + [23498] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(435), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 21, + ACTIONS(1128), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32798,81 +35060,64 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23692] = 19, + [23542] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(981), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(809), 1, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(585), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(859), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [23760] = 6, + [23578] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 21, + ACTIONS(999), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32883,32 +35128,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23802] = 6, + [23614] = 7, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1152), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(437), 2, + STATE(569), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 21, + ACTIONS(1050), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32919,32 +35167,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23844] = 6, + [23660] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 21, + ACTIONS(1003), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32955,32 +35201,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23886] = 6, + [23696] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(439), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 21, + ACTIONS(983), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -32991,68 +35235,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [23928] = 6, + [23732] = 20, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 21, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, + ACTIONS(1066), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1154), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(655), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1056), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [23970] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(441), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 21, + [23804] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33063,68 +35321,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24012] = 6, + [23840] = 21, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 21, + ACTIONS(1140), 1, + aux_sym_number_token1, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1160), 1, anon_sym_COLON, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(925), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(791), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [24054] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(443), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 21, + [23914] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33135,32 +35408,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24096] = 6, + [23950] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 21, + ACTIONS(989), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33171,32 +35442,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24138] = 6, + [23986] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(445), 2, + STATE(451), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 21, + ACTIONS(1046), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33207,32 +35480,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24180] = 6, + [24030] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 21, + ACTIONS(991), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33243,81 +35514,64 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24222] = 19, + [24066] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(997), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1303), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(572), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(901), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [24290] = 6, + [24102] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(449), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 21, + ACTIONS(995), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33328,81 +35582,86 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24332] = 19, + [24138] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1305), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1184), 1, anon_sym_COLON, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(550), 2, + STATE(652), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(909), 3, + ACTIONS(1086), 3, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(347), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [24400] = 6, + [24210] = 6, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(328), 2, + STATE(477), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 21, + ACTIONS(1050), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33413,32 +35672,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24442] = 6, + [24254] = 7, ACTIONS(9), 1, sym_comment, - STATE(259), 1, + ACTIONS(1186), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(451), 2, + STATE(559), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 21, + ACTIONS(1046), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33449,32 +35711,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24484] = 6, + [24300] = 2, ACTIONS(9), 1, sym_comment, - STATE(259), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(328), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(1096), 21, + ACTIONS(993), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33485,34 +35745,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24526] = 8, + [24336] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1112), 1, - aux_sym_number_token1, - ACTIONS(1307), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(817), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 19, + ACTIONS(971), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33523,192 +35779,120 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24572] = 12, + [24372] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(991), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(339), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_id, - [24626] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, + anon_sym_in, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1309), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(521), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(925), 3, + [24408] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 30, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [24694] = 12, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1037), 1, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(339), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [24748] = 12, + sym_qualified_id, + sym_force_id, + [24444] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(993), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1039), 1, anon_sym_DASH_GT, - ACTIONS(1041), 1, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_BANG_LBRACE, - ACTIONS(1043), 1, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(339), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(371), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - [24802] = 2, + sym_qualified_id, + sym_force_id, + [24480] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 27, + ACTIONS(989), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -33718,7 +35902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33729,31 +35915,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24835] = 6, + [24516] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, + ACTIONS(1148), 1, + aux_sym_number_token1, + STATE(459), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - STATE(564), 2, + STATE(670), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 20, + ACTIONS(925), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33764,32 +35954,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24876] = 7, + [24562] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1311), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(692), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 19, + ACTIONS(997), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33800,31 +35988,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24919] = 6, + [24598] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 20, + ACTIONS(987), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33835,32 +36022,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [24960] = 7, + [24634] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1313), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(827), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 19, + ACTIONS(985), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33871,31 +36056,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25003] = 6, + [24670] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 20, + ACTIONS(999), 30, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33906,32 +36090,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25044] = 7, + [24706] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1315), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(826), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 19, + ACTIONS(983), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -33942,185 +36124,134 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25087] = 18, + [24742] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(889), 1, - sym_floating, - ACTIONS(892), 1, - anon_sym_DQUOTE, - ACTIONS(1317), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1320), 1, - anon_sym_PIPE, - ACTIONS(1323), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1326), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1329), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1332), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1335), 1, + ACTIONS(1072), 1, anon_sym_with, - STATE(234), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1188), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1338), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(709), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(866), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - ACTIONS(886), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(898), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + ACTIONS(1128), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [25152] = 7, + [24814] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1341), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(825), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 19, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1064), 1, anon_sym_forall, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [25195] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(234), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1190), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(464), 2, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(671), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, - anon_sym_LPAREN, + aux_sym_expression_repeat5, + ACTIONS(1046), 3, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [25236] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1343), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(824), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [25279] = 6, + [24886] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 20, + ACTIONS(1001), 30, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34131,32 +36262,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25320] = 7, + [24922] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1345), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(823), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 19, + ACTIONS(989), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34167,31 +36296,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25363] = 6, + [24958] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 20, + ACTIONS(981), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34202,32 +36330,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25404] = 7, + [24994] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(822), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 19, + ACTIONS(979), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34238,31 +36364,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25447] = 6, + [25030] = 6, ACTIONS(9), 1, sym_comment, - STATE(234), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(464), 2, + STATE(427), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 20, + ACTIONS(925), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34273,32 +36402,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25488] = 7, + [25074] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1349), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(821), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 19, + ACTIONS(977), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34309,31 +36436,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25531] = 6, + [25110] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 20, + ACTIONS(931), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34344,32 +36470,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25572] = 7, + [25146] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1351), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(820), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 19, + ACTIONS(969), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34380,149 +36504,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25615] = 18, + [25182] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1098), 1, + anon_sym_COLON, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(627), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - ACTIONS(841), 3, + aux_sym_expression_repeat5, + ACTIONS(925), 3, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [25680] = 7, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1353), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(819), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [25723] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [25764] = 6, + [25254] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 20, + ACTIONS(975), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34533,79 +36590,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25805] = 18, + [25290] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1192), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1195), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1198), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1201), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1204), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1207), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1210), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1213), 1, + anon_sym_handler, + ACTIONS(1219), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1222), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1225), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(477), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1216), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1228), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(925), 3, + ACTIONS(1008), 4, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + anon_sym_COLON, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [25870] = 7, + [25360] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1355), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(818), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 19, + ACTIONS(977), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34616,16 +36675,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25913] = 2, + [25396] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 27, + ACTIONS(979), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -34633,10 +36694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34647,32 +36709,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25946] = 7, + [25432] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1307), 1, + ACTIONS(1090), 1, anon_sym_COLON, - STATE(452), 1, + STATE(376), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(817), 2, + STATE(551), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 19, + ACTIONS(925), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34683,32 +36748,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [25989] = 7, + [25478] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1357), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(816), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 19, + ACTIONS(991), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34719,31 +36782,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26032] = 6, + [25514] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 20, + ACTIONS(981), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34754,32 +36816,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26073] = 7, + [25550] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1359), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(815), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 19, + ACTIONS(1003), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34790,31 +36850,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26116] = 6, + [25586] = 7, ACTIONS(9), 1, sym_comment, - STATE(234), 1, + ACTIONS(1231), 1, + aux_sym_number_token1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(464), 2, + STATE(708), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(1096), 20, + ACTIONS(925), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34825,16 +36889,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26157] = 2, + [25632] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 27, + ACTIONS(931), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -34844,8 +36911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34856,113 +36923,139 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26190] = 8, + [25668] = 21, ACTIONS(9), 1, sym_comment, - ACTIONS(1361), 1, - anon_sym_COLON, - ACTIONS(1363), 1, + ACTIONS(1231), 1, aux_sym_number_token1, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(843), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 18, + ACTIONS(1233), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1235), 1, anon_sym_PIPE, + ACTIONS(1237), 1, + anon_sym_COLON, + ACTIONS(1239), 1, anon_sym_forall, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(782), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [26235] = 20, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [25742] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(1369), 1, - anon_sym_COLON, - ACTIONS(1371), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1385), 1, - aux_sym_number_token1, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(539), 1, + ACTIONS(1261), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(913), 2, + STATE(640), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1086), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [26304] = 2, + [25814] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 27, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(477), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1046), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -34973,16 +37066,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26337] = 2, + [25858] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 27, + ACTIONS(983), 30, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -34990,10 +37085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35004,47 +37100,69 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26370] = 2, + [25894] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 27, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1263), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(615), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [26403] = 2, + ACTIONS(1086), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [25964] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 27, + ACTIONS(975), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35056,6 +37174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35066,51 +37185,69 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26436] = 6, + [26000] = 19, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 20, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(1064), 1, anon_sym_forall, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1265), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(611), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [26477] = 2, + ACTIONS(1056), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [26070] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 27, + ACTIONS(985), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35120,8 +37257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35132,16 +37270,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26510] = 2, + [26106] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 27, + ACTIONS(975), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35151,8 +37292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35163,113 +37304,121 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26543] = 2, + [26142] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 27, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1267), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(608), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [26576] = 2, + ACTIONS(1050), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [26212] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 27, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [26609] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(234), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1269), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(464), 2, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(661), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 20, - anon_sym_LPAREN, + aux_sym_expression_repeat5, + ACTIONS(1050), 3, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [26650] = 2, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [26284] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 27, + ACTIONS(1001), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35279,8 +37428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35291,16 +37441,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26683] = 2, + [26320] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 27, + ACTIONS(987), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35310,8 +37462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35322,47 +37475,70 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26716] = 2, + [26356] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 27, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1271), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(605), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [26749] = 2, + ACTIONS(1046), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [26426] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 27, + ACTIONS(969), 30, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35372,8 +37548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35384,16 +37560,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26782] = 2, + [26462] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 27, + ACTIONS(989), 30, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -35403,8 +37581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35415,24 +37594,26 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26815] = 6, + [26498] = 6, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 20, + ACTIONS(1132), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, @@ -35440,6 +37621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35450,31 +37632,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26856] = 6, + [26542] = 7, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + ACTIONS(1273), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(557), 2, + STATE(548), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 20, + ACTIONS(1128), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35485,31 +37671,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26897] = 6, + [26588] = 19, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1070), 1, + anon_sym_do, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1275), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(557), 2, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(603), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + ACTIONS(1054), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 20, + [26658] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35520,31 +37756,30 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26938] = 6, + [26694] = 2, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 20, + ACTIONS(969), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35555,31 +37790,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [26979] = 6, + [26730] = 7, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + ACTIONS(1140), 1, + aux_sym_number_token1, + STATE(507), 1, sym_string, - STATE(1667), 1, + STATE(1856), 1, sym_integer, - STATE(557), 2, + STATE(641), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 20, + ACTIONS(925), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35590,71 +37829,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27020] = 18, + [26776] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(991), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(915), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27085] = 6, + [26812] = 6, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 20, + ACTIONS(1086), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, @@ -35662,6 +37890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35672,79 +37901,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27126] = 19, + [26856] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1393), 1, + ACTIONS(1277), 1, anon_sym_COLON, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(905), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(760), 2, + STATE(602), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1128), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [27193] = 6, + [26926] = 2, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, + ACTIONS(975), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -35755,258 +37986,258 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27234] = 20, + [26962] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_EQ, - ACTIONS(1363), 1, - aux_sym_number_token1, - ACTIONS(1395), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(1399), 1, - anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1279), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(869), 2, + STATE(570), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1050), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [27303] = 18, + [27034] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(993), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(837), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27368] = 19, + [27070] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(995), 30, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1421), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(833), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(756), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27435] = 6, + [27106] = 20, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 20, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1064), 1, anon_sym_forall, + ACTIONS(1066), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1281), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(685), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1054), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [27476] = 19, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [27178] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1062), 1, + anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1423), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(845), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(752), 2, + STATE(597), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(925), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [27543] = 6, + [27248] = 7, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + ACTIONS(1283), 1, + anon_sym_COLON, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(557), 2, + STATE(555), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 20, + ACTIONS(1054), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36017,222 +38248,166 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27584] = 18, + [27294] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(971), 30, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(909), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27649] = 19, + [27330] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(997), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1425), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(905), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(749), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27716] = 19, + [27366] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(977), 30, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1427), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(851), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(748), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27783] = 19, + [27402] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(979), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1429), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(833), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(745), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27850] = 6, + [27438] = 2, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 20, + ACTIONS(981), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36243,79 +38418,64 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27891] = 19, + [27474] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(971), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1431), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(845), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(743), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [27958] = 6, + [27510] = 2, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 20, + ACTIONS(983), 30, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36326,120 +38486,94 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [27999] = 19, + [27546] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(985), 30, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1433), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(855), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(744), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28066] = 19, + [27582] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(973), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1435), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(851), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(742), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28133] = 6, + [27618] = 6, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 20, + ACTIONS(1056), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, @@ -36447,6 +38581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36457,32 +38592,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [28174] = 7, + [27662] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1385), 1, - aux_sym_number_token1, - STATE(531), 1, + STATE(397), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - STATE(729), 2, + STATE(477), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 19, + ACTIONS(1132), 22, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36493,120 +38630,145 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [28217] = 19, + [27706] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(973), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1437), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(855), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(738), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [27742] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28284] = 19, + [27778] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1028), 1, + anon_sym_handler, + ACTIONS(1034), 1, + sym_floating, + ACTIONS(1037), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1291), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1297), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1300), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1303), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(1439), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(859), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1306), 2, sym_operator, sym_macro_id, - STATE(740), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1031), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1043), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1008), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [28351] = 6, + [27848] = 6, ACTIONS(9), 1, sym_comment, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 20, + ACTIONS(1050), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, @@ -36614,6 +38776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36624,212 +38787,173 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [28392] = 19, + [27892] = 21, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1148), 1, + aux_sym_number_token1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1313), 1, + anon_sym_COLON, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1441), 1, - anon_sym_COLON, - STATE(452), 1, + STATE(430), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - ACTIONS(859), 2, + ACTIONS(925), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(737), 2, + STATE(732), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [28459] = 6, + [27966] = 20, ACTIONS(9), 1, sym_comment, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(1096), 20, + ACTIONS(1094), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1096), 1, anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, + ACTIONS(1102), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1104), 1, anon_sym_let, + ACTIONS(1106), 1, anon_sym_do, + ACTIONS(1108), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [28500] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1443), 1, + ACTIONS(1337), 1, anon_sym_COLON, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(736), 2, + STATE(614), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1056), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [28567] = 19, + [28038] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(971), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1445), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(733), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28634] = 8, + [28074] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1385), 1, - aux_sym_number_token1, - ACTIONS(1447), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(397), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - STATE(964), 2, + STATE(528), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 18, + ACTIONS(1086), 22, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36840,113 +38964,95 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [28679] = 19, + [28118] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(477), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 22, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1449), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(728), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + [28162] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [28746] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1164), 1, + ACTIONS(1046), 22, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1451), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(725), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28813] = 2, + [28206] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 27, + ACTIONS(931), 30, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -36957,6 +39063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -36967,267 +39074,307 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [28846] = 19, + [28242] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(537), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 22, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1453), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(925), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(718), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + [28286] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(477), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [28913] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1164), 1, + ACTIONS(1056), 22, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1455), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [28330] = 8, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1231), 1, + aux_sym_number_token1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(452), 1, + STATE(542), 1, sym_string, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(925), 2, + STATE(763), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(925), 20, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, anon_sym_in, - ACTIONS(1186), 2, - sym_operator, - sym_macro_id, - STATE(709), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [28980] = 19, + [28378] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(801), 1, - aux_sym_number_token1, - ACTIONS(803), 1, + ACTIONS(987), 30, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1457), 1, - anon_sym_COLON, - STATE(234), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [28414] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(707), 2, + STATE(541), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1050), 22, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - STATE(940), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29047] = 19, + [28458] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(999), 30, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1459), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(921), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(703), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29114] = 19, + [28494] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1461), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(921), 2, + ACTIONS(1046), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(707), 2, + STATE(738), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [29181] = 2, + [28565] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 27, + ACTIONS(1343), 1, + anon_sym_COLON, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(768), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 20, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37238,27 +39385,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29214] = 2, + [28610] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 27, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37269,122 +39422,134 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29247] = 18, + [28653] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1345), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1348), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1351), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1354), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1357), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1360), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1363), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1366), 1, + anon_sym_handler, + ACTIONS(1372), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1375), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1378), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1008), 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(1369), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1381), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(901), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [29312] = 19, + [28722] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1384), 1, anon_sym_COLON, - STATE(452), 1, + STATE(430), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - ACTIONS(915), 2, + ACTIONS(1054), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(696), 2, + STATE(736), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [29379] = 2, + [28793] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 27, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37395,65 +39560,50 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29412] = 19, + [28836] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(931), 29, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1136), 1, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1465), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(915), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(695), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29479] = 2, + [28871] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 27, + ACTIONS(971), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -37463,7 +39613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37474,17 +39626,17 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29512] = 2, + [28906] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 27, + ACTIONS(973), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -37494,7 +39646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37505,27 +39659,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29545] = 2, + [28941] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 27, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1046), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37536,160 +39696,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29578] = 18, + [28984] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1025), 1, - sym_floating, - ACTIONS(1028), 1, - anon_sym_DQUOTE, - ACTIONS(1467), 1, + ACTIONS(1003), 29, anon_sym_LPAREN, - ACTIONS(1470), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1473), 1, anon_sym_forall, - ACTIONS(1476), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1479), 1, anon_sym_let, - ACTIONS(1482), 1, anon_sym_do, - ACTIONS(1485), 1, + anon_sym_in, anon_sym_with, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(1488), 2, - sym_operator, - sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(866), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1022), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1034), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29643] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1491), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(841), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(683), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29710] = 19, + [29019] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1001), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, - anon_sym_COLON, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(841), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(685), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [29777] = 2, + [29054] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 27, + ACTIONS(999), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -37699,7 +39782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37710,32 +39795,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29810] = 7, + [29089] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1363), 1, - aux_sym_number_token1, - STATE(561), 1, + STATE(376), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - STATE(652), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 19, + ACTIONS(1050), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37746,31 +39832,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29853] = 6, + [29132] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(1096), 20, + ACTIONS(997), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37781,31 +39865,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29894] = 6, + [29167] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(562), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 20, + ACTIONS(995), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37816,31 +39898,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29935] = 6, + [29202] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 20, + ACTIONS(993), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37851,113 +39931,101 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [29976] = 19, + [29237] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(991), 29, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1136), 1, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1495), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(837), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(662), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [30043] = 19, + [29272] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1497), 1, + ACTIONS(1386), 1, anon_sym_COLON, - STATE(452), 1, + STATE(430), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - ACTIONS(837), 2, + ACTIONS(1128), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(653), 2, + STATE(726), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [30110] = 2, + [29343] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 27, + ACTIONS(989), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -37967,7 +40035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -37978,17 +40048,17 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30143] = 2, + [29378] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 27, + ACTIONS(987), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -37998,7 +40068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38009,79 +40081,62 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30176] = 19, + [29413] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(985), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1168), 1, - anon_sym_COLON, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(707), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(644), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [30243] = 6, + [29448] = 2, ACTIONS(9), 1, sym_comment, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 20, + ACTIONS(983), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38092,27 +40147,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30284] = 2, + [29483] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 27, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38123,63 +40184,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30317] = 18, + [29526] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1056), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(859), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [30382] = 2, + [29595] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 27, + ACTIONS(981), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -38187,10 +40252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38201,17 +40267,17 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30415] = 2, + [29630] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 27, + ACTIONS(979), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -38221,7 +40287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38232,31 +40300,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30448] = 6, + [29665] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 20, + ACTIONS(977), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38267,66 +40333,80 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30489] = 6, + [29700] = 20, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(575), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 20, + ACTIONS(1309), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1311), 1, anon_sym_PIPE, + ACTIONS(1313), 1, anon_sym_COLON, + ACTIONS(1315), 1, anon_sym_forall, + ACTIONS(1317), 1, anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_let, + ACTIONS(1321), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1323), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, + STATE(732), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - [30530] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 20, + [29771] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38337,31 +40417,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30571] = 6, + [29806] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(577), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 20, + ACTIONS(975), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38372,31 +40450,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30612] = 6, + [29841] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 20, + ACTIONS(969), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38407,31 +40483,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30653] = 6, + [29876] = 6, ACTIONS(9), 1, sym_comment, STATE(376), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(579), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 20, + ACTIONS(1086), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38442,66 +40520,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30694] = 6, + [29919] = 20, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 20, + ACTIONS(929), 1, + aux_sym_number_token1, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1064), 1, anon_sym_forall, + ACTIONS(1066), 1, anon_sym_LBRACK, + ACTIONS(1068), 1, anon_sym_let, - anon_sym_do, - anon_sym_in, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1388), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(883), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [30735] = 6, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [29990] = 6, ACTIONS(9), 1, sym_comment, STATE(376), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(581), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 20, + ACTIONS(1132), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38512,78 +40608,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30776] = 18, + [30033] = 21, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(925), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1394), 1, + anon_sym_COLON, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1412), 1, + aux_sym_number_token1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(646), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(921), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(921), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [30841] = 6, + [30106] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 20, + ACTIONS(973), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38594,78 +40693,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30882] = 18, + [30141] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(971), 29, anon_sym_LPAREN, - ACTIONS(805), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(809), 1, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - ACTIONS(855), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [30947] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(584), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38676,149 +40726,80 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [30988] = 6, + [30176] = 20, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 20, + ACTIONS(1309), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1311), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1315), 1, anon_sym_forall, + ACTIONS(1317), 1, anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_let, + ACTIONS(1321), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1323), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [31029] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1134), 1, + ACTIONS(1420), 1, anon_sym_COLON, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(707), 2, + ACTIONS(1050), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(647), 2, + STATE(747), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [31096] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(587), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [31137] = 6, + [30247] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 20, + ACTIONS(1001), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38829,66 +40810,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31178] = 6, + [30282] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(590), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1422), 1, anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [31219] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(376), 1, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - STATE(605), 2, + STATE(724), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 20, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38899,31 +40848,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31260] = 6, + [30327] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(592), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 20, + ACTIONS(999), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -38934,78 +40881,85 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31301] = 18, + [30362] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(805), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(234), 1, + ACTIONS(1424), 1, + anon_sym_COLON, + STATE(430), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1056), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(753), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(851), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(347), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [31366] = 6, + [30433] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, + ACTIONS(1426), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - STATE(605), 2, + STATE(751), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 20, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39016,31 +40970,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31407] = 6, + [30478] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(595), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 20, + ACTIONS(997), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39051,16 +41003,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31448] = 2, + [30513] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 27, + ACTIONS(995), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -39068,10 +41022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39082,75 +41036,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31481] = 19, + [30548] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(711), 1, - aux_sym_number_token1, - ACTIONS(1130), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1311), 1, + anon_sym_PIPE, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1499), 1, + ACTIONS(1428), 1, anon_sym_COLON, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(707), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1086), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(900), 2, + STATE(734), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [31548] = 2, + [30619] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 27, + STATE(459), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(689), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39161,31 +41124,79 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31581] = 6, + [30662] = 19, ACTIONS(9), 1, sym_comment, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, STATE(376), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(612), 2, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + ACTIONS(1050), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 20, + [30731] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39196,31 +41207,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31622] = 6, + [30766] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, + ACTIONS(1430), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - STATE(605), 2, + STATE(759), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 20, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39231,63 +41245,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31663] = 18, + [30811] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(845), 3, + ACTIONS(1128), 4, anon_sym_COMMA, - anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [31728] = 2, + [30878] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 27, + ACTIONS(991), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -39295,10 +41313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39309,16 +41327,18 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31761] = 2, + [30913] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 27, + ACTIONS(989), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -39326,10 +41346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39340,78 +41360,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31794] = 18, + [30948] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(987), 29, anon_sym_LPAREN, - ACTIONS(1504), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1507), 1, anon_sym_forall, - ACTIONS(1510), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_let, - ACTIONS(1516), 1, anon_sym_do, - ACTIONS(1519), 1, anon_sym_with, - ACTIONS(1525), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1528), 1, anon_sym_DQUOTE, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(1531), 2, sym_operator, sym_macro_id, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(866), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - ACTIONS(1522), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1534), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - [31859] = 6, + [30983] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, + ACTIONS(1432), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - STATE(615), 2, + STATE(762), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 20, + ACTIONS(1046), 20, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39422,110 +41431,116 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [31900] = 18, + [31028] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(1096), 3, + ACTIONS(1054), 4, anon_sym_COMMA, - anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [31965] = 18, + [31095] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(833), 3, + ACTIONS(1046), 4, anon_sym_COMMA, - anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32030] = 2, + [31162] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 27, + ACTIONS(985), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -39533,10 +41548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39547,47 +41562,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32063] = 2, + [31197] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 27, + ACTIONS(1060), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1064), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1066), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1068), 1, anon_sym_let, + ACTIONS(1070), 1, anon_sym_do, + ACTIONS(1072), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [32096] = 2, + ACTIONS(1050), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [31264] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 27, + ACTIONS(983), 29, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -39595,10 +41630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39609,31 +41644,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32129] = 6, + [31299] = 7, ACTIONS(9), 1, sym_comment, - STATE(376), 1, + ACTIONS(1434), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - STATE(605), 2, + STATE(770), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 20, + ACTIONS(1054), 20, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39644,78 +41682,78 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32170] = 18, + [31344] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(805), 1, - anon_sym_PIPE, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(464), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - ACTIONS(905), 3, + ACTIONS(1056), 4, anon_sym_COMMA, - anon_sym_SEMI_SEMI, anon_sym_RBRACE, - STATE(347), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32235] = 6, + [31411] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(601), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 20, + ACTIONS(981), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39726,31 +41764,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32276] = 6, + [31446] = 2, ACTIONS(9), 1, sym_comment, - STATE(376), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(605), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 20, + ACTIONS(979), 29, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39761,168 +41797,129 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32317] = 18, + [31481] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1537), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(837), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(899), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [32381] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(841), 2, + ACTIONS(1086), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_RBRACK, - ACTIONS(1152), 2, - sym_operator, - sym_macro_id, - STATE(893), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(277), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32445] = 18, + [31548] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1092), 1, + aux_sym_number_token1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1541), 1, + ACTIONS(1436), 1, anon_sym_COLON, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(915), 2, + ACTIONS(925), 2, + anon_sym_SEMI_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(892), 2, + STATE(896), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32509] = 6, + [31619] = 2, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(643), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(1096), 19, + ACTIONS(977), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -39933,202 +41930,235 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32549] = 18, + [31654] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1499), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(707), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(900), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1086), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32613] = 18, + [31723] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1543), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(921), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(891), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1132), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32677] = 6, + [31790] = 20, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(619), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 19, + ACTIONS(1233), 1, anon_sym_LPAREN, + ACTIONS(1235), 1, anon_sym_PIPE, + ACTIONS(1237), 1, anon_sym_COLON, + ACTIONS(1239), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(782), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [32717] = 18, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [31861] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1235), 1, + anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1545), 1, + ACTIONS(1438), 1, anon_sym_COLON, - STATE(209), 1, + STATE(542), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(925), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1128), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(889), 2, + STATE(784), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [32781] = 6, + [31932] = 7, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + ACTIONS(1440), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(772), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 19, + ACTIONS(1128), 20, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40139,76 +42169,62 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32821] = 18, + [31977] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(969), 29, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1547), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(909), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(888), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [32885] = 6, + [32012] = 2, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(624), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 19, + ACTIONS(975), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40219,76 +42235,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [32925] = 18, + [32047] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(975), 29, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1549), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(901), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(887), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [32989] = 6, + [32082] = 7, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + ACTIONS(1138), 1, + anon_sym_COLON, + STATE(424), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(775), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 19, + ACTIONS(925), 20, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40299,76 +42306,66 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33029] = 18, + [32127] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(969), 29, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1551), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(859), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(886), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [33093] = 6, + [32162] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(628), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 19, + ACTIONS(1132), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40379,76 +42376,70 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33133] = 18, + [32205] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(507), 1, + sym_string, + STATE(1856), 1, + sym_integer, + STATE(624), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 21, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(855), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(885), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [33197] = 6, + [32248] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 19, + ACTIONS(1086), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40459,76 +42450,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33237] = 18, + [32291] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, - anon_sym_COLON, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(851), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(884), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1128), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [33301] = 6, + [32360] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(632), 2, + STATE(626), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 19, + ACTIONS(1056), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40539,76 +42537,70 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33341] = 18, + [32403] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(507), 1, + sym_string, + STATE(1856), 1, + sym_integer, + STATE(549), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 21, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, - anon_sym_COLON, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(845), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(883), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [33405] = 6, + [32446] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(629), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 19, + ACTIONS(1050), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40619,76 +42611,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33445] = 18, + [32489] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1235), 1, + anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1442), 1, anon_sym_COLON, - STATE(209), 1, + STATE(542), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(833), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1054), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(882), 2, + STATE(787), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [33509] = 6, + [32560] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(636), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 19, + ACTIONS(1050), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40699,110 +42699,134 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33549] = 18, + [32603] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1235), 1, + anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1561), 1, + ACTIONS(1444), 1, anon_sym_COLON, - STATE(209), 1, + STATE(542), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(905), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1046), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(881), 2, + STATE(794), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [33613] = 6, + [32674] = 19, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(643), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 19, + ACTIONS(1446), 1, anon_sym_LPAREN, + ACTIONS(1449), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1452), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(1455), 1, anon_sym_LBRACK, + ACTIONS(1458), 1, anon_sym_let, + ACTIONS(1461), 1, anon_sym_do, + ACTIONS(1464), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1467), 1, + anon_sym_handler, + ACTIONS(1473), 1, sym_floating, + ACTIONS(1476), 1, anon_sym_DQUOTE, + STATE(484), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1479), 2, sym_operator, sym_macro_id, + STATE(634), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1008), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + ACTIONS(1470), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1482), 3, sym_id, sym_qualified_id, sym_force_id, - [33653] = 6, + STATE(705), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [32743] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(640), 2, + STATE(632), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 19, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40813,30 +42837,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33693] = 6, + [32786] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 19, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -40847,156 +42874,121 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33733] = 18, + [32829] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1563), 1, + STATE(507), 1, + sym_string, + STATE(1856), 1, + sym_integer, + STATE(636), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 21, anon_sym_LPAREN, - ACTIONS(1566), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1569), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1572), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, anon_sym_let, - ACTIONS(1578), 1, anon_sym_do, - ACTIONS(1581), 1, anon_sym_with, - ACTIONS(1587), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1590), 1, anon_sym_DQUOTE, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(866), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(1593), 2, sym_operator, sym_macro_id, - STATE(643), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1584), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1596), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - [33797] = 18, + [32872] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1235), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1485), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(837), 2, + ACTIONS(1050), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1186), 2, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(811), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [33861] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(642), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [33901] = 6, + [32943] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(643), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, + ACTIONS(1054), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41007,76 +42999,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [33941] = 18, + [32986] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(837), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1132), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34005] = 6, + [33055] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(507), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - STATE(646), 2, + STATE(549), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 19, + ACTIONS(1128), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41087,21 +43086,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34045] = 6, + [33098] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - STATE(652), 2, + STATE(639), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 19, + ACTIONS(1128), 21, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -41111,6 +43111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41121,89 +43123,73 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34085] = 6, + [33141] = 20, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(643), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 19, + ACTIONS(1233), 1, anon_sym_LPAREN, + ACTIONS(1235), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1239), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [34125] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(561), 1, + ACTIONS(1487), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(654), 2, + ACTIONS(1056), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, + sym_operator, + sym_macro_id, + STATE(809), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 19, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [34165] = 6, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [33212] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - STATE(666), 2, + STATE(641), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 19, + ACTIONS(925), 21, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -41213,6 +43199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41223,76 +43211,86 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34205] = 18, + [33255] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1235), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1489), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(841), 2, + ACTIONS(1086), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1186), 2, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(805), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34269] = 6, + [33326] = 8, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + ACTIONS(1412), 1, + aux_sym_number_token1, + ACTIONS(1491), 1, + anon_sym_COLON, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(666), 2, + STATE(849), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 19, + ACTIONS(925), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41303,30 +43301,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34309] = 6, + [33373] = 2, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(658), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 19, + ACTIONS(1003), 29, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41337,202 +43334,283 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34349] = 18, + [33408] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1158), 1, + anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1493), 1, anon_sym_COLON, - STATE(234), 1, + STATE(424), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1086), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - ACTIONS(905), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(911), 2, + STATE(806), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34413] = 18, + [33479] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1158), 1, + anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1601), 1, + ACTIONS(1495), 1, anon_sym_COLON, - STATE(234), 1, + STATE(424), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1056), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - ACTIONS(833), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(912), 2, + STATE(802), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34477] = 6, + [33550] = 20, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 19, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1158), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + ACTIONS(1497), 1, + anon_sym_COLON, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1050), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(799), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [34517] = 18, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [33621] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1158), 1, + anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1603), 1, + ACTIONS(1499), 1, anon_sym_COLON, - STATE(234), 1, + STATE(424), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1046), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - ACTIONS(845), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(916), 2, + STATE(725), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34581] = 6, + [33692] = 19, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1070), 1, + anon_sym_do, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(664), 2, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + ACTIONS(1132), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 19, + [33761] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41543,156 +43621,181 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34621] = 18, + [33796] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1158), 1, + anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1605), 1, + ACTIONS(1501), 1, anon_sym_COLON, - STATE(234), 1, + STATE(424), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1054), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - ACTIONS(851), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(917), 2, + STATE(807), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34685] = 18, + [33867] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(841), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + ACTIONS(1086), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34749] = 6, + [33936] = 20, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(650), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 19, + ACTIONS(1156), 1, anon_sym_LPAREN, + ACTIONS(1158), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1162), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + ACTIONS(1503), 1, + anon_sym_COLON, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1128), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(796), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [34789] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 19, + [34007] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41703,114 +43806,108 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34829] = 18, + [34042] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1158), 1, + anon_sym_PIPE, + ACTIONS(1160), 1, + anon_sym_COLON, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1607), 1, - anon_sym_COLON, - STATE(234), 1, + STATE(424), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(925), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - ACTIONS(855), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(918), 2, + STATE(791), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [34893] = 18, + [34113] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(981), 29, anon_sym_LPAREN, - ACTIONS(1612), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1615), 1, anon_sym_forall, - ACTIONS(1618), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1621), 1, anon_sym_let, - ACTIONS(1624), 1, anon_sym_do, - ACTIONS(1627), 1, anon_sym_with, - ACTIONS(1633), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1636), 1, anon_sym_DQUOTE, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(866), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1639), 2, sym_operator, sym_macro_id, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1630), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1642), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - [34957] = 6, + [34148] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(669), 2, + STATE(670), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 19, + ACTIONS(925), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41819,6 +43916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41829,76 +43927,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [34997] = 18, + [34191] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_COLON, - STATE(234), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - ACTIONS(859), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(919), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1056), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [35061] = 6, + [34260] = 7, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + ACTIONS(1505), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(666), 2, + STATE(797), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 19, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41909,76 +44015,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35101] = 18, + [34305] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1647), 1, + ACTIONS(1507), 1, anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - ACTIONS(901), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(920), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [35165] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(561), 1, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(673), 2, + STATE(795), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 19, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -41989,76 +44053,62 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35205] = 18, + [34350] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(983), 29, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1649), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - ACTIONS(909), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(921), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [35269] = 6, + [34385] = 2, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 19, + ACTIONS(985), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42069,76 +44119,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35309] = 18, + [34420] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1651), 1, + ACTIONS(1509), 1, anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - ACTIONS(925), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(923), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [35373] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(561), 1, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(677), 2, + STATE(793), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 19, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42149,68 +44157,57 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35413] = 18, + [34465] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(987), 29, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(811), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(813), 1, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1653), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - ACTIONS(921), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(928), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [35477] = 6, + [34500] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(672), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, + ACTIONS(1128), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42219,6 +44216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42229,30 +44227,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35517] = 6, + [34543] = 2, ACTIONS(9), 1, sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(643), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 19, + ACTIONS(989), 29, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42263,22 +44260,24 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35557] = 6, + [34578] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(681), 2, + STATE(689), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, + ACTIONS(1128), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42287,6 +44286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42297,68 +44297,74 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35597] = 18, + [34621] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1655), 1, - anon_sym_COLON, - STATE(234), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - ACTIONS(915), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(931), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1050), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [35661] = 6, + [34690] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(689), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 19, + ACTIONS(1054), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42367,6 +44373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42377,30 +44384,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35701] = 6, + [34733] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(459), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, STATE(678), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 19, + ACTIONS(1054), 21, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42411,76 +44421,84 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35741] = 18, + [34776] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1096), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(376), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(915), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1054), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [35805] = 6, + [34845] = 7, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + ACTIONS(1511), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(643), 2, + STATE(786), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 19, + ACTIONS(1046), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42491,76 +44509,62 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35845] = 18, + [34890] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(991), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(915), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [35909] = 6, + [34925] = 2, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(687), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 19, + ACTIONS(993), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42571,22 +44575,24 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35949] = 6, + [34960] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(689), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 19, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42595,6 +44601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42605,30 +44612,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [35989] = 6, + [35003] = 2, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(693), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(855), 19, + ACTIONS(995), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42639,76 +44645,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36029] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1657), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - ACTIONS(841), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(936), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [36093] = 6, + [35038] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(459), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - STATE(684), 2, + STATE(682), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 19, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42719,30 +44682,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36133] = 6, + [35081] = 7, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + ACTIONS(1513), 1, + anon_sym_COLON, + STATE(542), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(643), 2, + STATE(779), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 19, + ACTIONS(1054), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42753,30 +44720,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36173] = 6, + [35126] = 6, ACTIONS(9), 1, sym_comment, - STATE(452), 1, + STATE(459), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - STATE(765), 2, + STATE(689), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 19, + ACTIONS(1050), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42787,30 +44757,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36213] = 6, + [35169] = 2, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 19, + ACTIONS(997), 29, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42821,22 +44790,24 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36253] = 6, + [35204] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(697), 2, + STATE(686), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 19, + ACTIONS(1050), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42845,6 +44816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42855,114 +44827,111 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36293] = 18, + [35247] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(921), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1046), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [36357] = 18, + [35316] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + STATE(459), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(689), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 21, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1172), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(921), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [36421] = 6, + [35359] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(593), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 19, + ACTIONS(1056), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42971,6 +44940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -42981,136 +44951,157 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36461] = 18, + [35402] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(999), 29, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, anon_sym_let, - ACTIONS(815), 1, anon_sym_do, - ACTIONS(817), 1, anon_sym_with, - ACTIONS(821), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_COLON, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, sym_operator, sym_macro_id, - ACTIONS(837), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(939), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [36525] = 6, + [35437] = 19, ACTIONS(9), 1, sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(700), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 19, + ACTIONS(1515), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1518), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1521), 1, anon_sym_forall, + ACTIONS(1524), 1, anon_sym_LBRACK, + ACTIONS(1527), 1, anon_sym_let, + ACTIONS(1530), 1, anon_sym_do, + ACTIONS(1533), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1536), 1, + anon_sym_handler, + ACTIONS(1542), 1, sym_floating, + ACTIONS(1545), 1, anon_sym_DQUOTE, + STATE(459), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(1548), 2, sym_operator, sym_macro_id, + STATE(689), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1008), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(1539), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1551), 3, sym_id, sym_qualified_id, sym_force_id, - [36565] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(561), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(666), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 19, + [35506] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1213), 1, + anon_sym_handler, + ACTIONS(1219), 1, + sym_floating, + ACTIONS(1222), 1, + anon_sym_DQUOTE, + ACTIONS(1554), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1557), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1560), 1, anon_sym_forall, + ACTIONS(1563), 1, anon_sym_LBRACK, + ACTIONS(1566), 1, anon_sym_let, + ACTIONS(1569), 1, anon_sym_do, + ACTIONS(1572), 1, anon_sym_with, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1575), 2, + sym_operator, + sym_macro_id, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1008), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1216), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1228), 3, sym_id, sym_qualified_id, sym_force_id, - [36605] = 6, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [35575] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(702), 2, + STATE(692), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 19, + ACTIONS(1086), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -43119,6 +45110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43129,22 +45121,24 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36645] = 6, + [35618] = 6, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(689), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 19, + ACTIONS(1132), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -43153,6 +45147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43163,122 +45158,117 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36685] = 18, + [35661] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(931), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(925), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [36749] = 18, + [35696] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1096), 1, + anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1457), 1, - anon_sym_COLON, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(707), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - ACTIONS(825), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(940), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1046), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [36813] = 6, + [35765] = 7, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + ACTIONS(1146), 1, + anon_sym_COLON, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(706), 2, + STATE(761), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 19, + ACTIONS(925), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43289,30 +45279,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36853] = 6, + [35810] = 7, ACTIONS(9), 1, sym_comment, - STATE(561), 1, + ACTIONS(1578), 1, + anon_sym_COLON, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(666), 2, + STATE(729), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(649), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(1096), 19, + ACTIONS(1128), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43323,76 +45317,72 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36893] = 18, + [35855] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1580), 1, + anon_sym_COLON, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(739), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 20, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1136), 1, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(925), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [36957] = 6, + [35900] = 7, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + ACTIONS(1582), 1, + anon_sym_COLON, + STATE(430), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - STATE(691), 2, + STATE(748), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 19, + ACTIONS(1046), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43403,77 +45393,67 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [36997] = 18, + [35945] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(971), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [37061] = 7, + [35980] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(1584), 1, anon_sym_COLON, - STATE(539), 1, + STATE(430), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - STATE(941), 2, + STATE(754), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 18, + ACTIONS(1050), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43484,31 +45464,29 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37103] = 7, + [36025] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_COLON, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(942), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 18, + ACTIONS(973), 29, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43519,31 +45497,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37145] = 7, + [36060] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1586), 1, anon_sym_COLON, - STATE(539), 1, + STATE(430), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - STATE(944), 2, + STATE(757), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 18, + ACTIONS(1056), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43554,31 +45535,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37187] = 7, + [36105] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1667), 1, + ACTIONS(1588), 1, anon_sym_COLON, - STATE(539), 1, + STATE(430), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - STATE(947), 2, + STATE(755), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 18, + ACTIONS(1086), 20, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43589,31 +45573,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37229] = 7, + [36150] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1669), 1, - anon_sym_COLON, - STATE(539), 1, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1070), 1, + anon_sym_do, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + ACTIONS(1128), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [36219] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(949), 2, + STATE(708), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 18, + ACTIONS(925), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43624,31 +45660,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37271] = 7, + [36262] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(1671), 1, - anon_sym_COLON, - STATE(539), 1, + ACTIONS(1412), 1, + aux_sym_number_token1, + STATE(706), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - STATE(950), 2, + STATE(743), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 18, + ACTIONS(925), 20, anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43659,31 +45698,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37313] = 7, + [36307] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1673), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(951), 2, + STATE(710), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 18, + ACTIONS(1128), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43694,31 +45735,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37355] = 7, + [36350] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1675), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(952), 2, + STATE(634), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 18, + ACTIONS(1128), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43729,76 +45772,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37397] = 18, + [36393] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1070), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1054), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [37461] = 6, + [36462] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(643), 2, + STATE(634), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 19, + ACTIONS(1054), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43809,31 +45859,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37501] = 7, + [36505] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1677), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(953), 2, + STATE(712), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 18, + ACTIONS(1054), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43844,31 +45896,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37543] = 7, + [36548] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1679), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(954), 2, + STATE(634), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 18, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43879,31 +45933,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37585] = 7, + [36591] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(955), 2, + STATE(714), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 18, + ACTIONS(1046), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43914,31 +45970,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37627] = 7, + [36634] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1683), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(957), 2, + STATE(634), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 18, + ACTIONS(1050), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43949,31 +46007,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37669] = 7, + [36677] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(959), 2, + STATE(717), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 18, + ACTIONS(1050), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -43984,77 +46044,66 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37711] = 18, + [36720] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1003), 29, anon_sym_LPAREN, - ACTIONS(1166), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1170), 1, anon_sym_forall, - ACTIONS(1172), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LBRACK, - ACTIONS(1174), 1, anon_sym_let, - ACTIONS(1176), 1, anon_sym_do, - ACTIONS(1178), 1, anon_sym_with, - ACTIONS(1182), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, sym_operator, sym_macro_id, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [37775] = 7, + [36755] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1447), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(964), 2, + STATE(634), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 18, + ACTIONS(1056), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44065,26 +46114,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37817] = 2, + [36798] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 26, + STATE(484), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(719), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44095,76 +46151,70 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37849] = 18, + [36841] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(484), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(634), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 21, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(901), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [37913] = 6, + [36884] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(484), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - STATE(643), 2, + STATE(721), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 19, + ACTIONS(1086), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44175,26 +46225,33 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37953] = 2, + [36927] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 26, + STATE(484), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(634), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(705), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1132), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44205,26 +46262,34 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [37985] = 2, + [36970] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 26, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(763), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(925), 20, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44235,15 +46300,17 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38017] = 2, + [37015] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 26, + ACTIONS(1001), 29, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -44253,8 +46320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44265,76 +46333,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38049] = 18, + [37050] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, - anon_sym_LPAREN, - ACTIONS(1166), 1, - anon_sym_PIPE, - ACTIONS(1170), 1, - anon_sym_forall, - ACTIONS(1172), 1, - anon_sym_LBRACK, - ACTIONS(1174), 1, - anon_sym_let, - ACTIONS(1176), 1, - anon_sym_do, - ACTIONS(1178), 1, - anon_sym_with, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - STATE(452), 1, + STATE(424), 1, sym_string, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(859), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, - sym_operator, - sym_macro_id, STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - [38113] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(531), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(719), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 19, + ACTIONS(1132), 20, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44345,194 +46369,228 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38153] = 2, + [37092] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 26, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1050), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [38185] = 18, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [37160] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(859), 2, + ACTIONS(1054), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38249] = 18, + [37228] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, - anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1176), 1, - anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1590), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(855), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(765), 2, + ACTIONS(1086), 2, + anon_sym_COMMA, + anon_sym_do, + STATE(830), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38313] = 18, + [37296] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, - anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1176), 1, - anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1592), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(851), 2, + ACTIONS(1056), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(831), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38377] = 2, + [37364] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 26, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(801), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 20, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44543,67 +46601,169 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38409] = 18, + [37406] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1594), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1050), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(832), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [37474] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1596), 1, + anon_sym_COLON, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1046), 2, + anon_sym_COMMA, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1082), 2, + sym_operator, + sym_macro_id, + STATE(846), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [37542] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_PIPE, + ACTIONS(1315), 1, + anon_sym_forall, + ACTIONS(1317), 1, + anon_sym_LBRACK, + ACTIONS(1319), 1, + anon_sym_let, + ACTIONS(1321), 1, + anon_sym_do, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(855), 2, + ACTIONS(1128), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38473] = 6, + [37610] = 6, ACTIONS(9), 1, sym_comment, - STATE(531), 1, + STATE(706), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - STATE(729), 2, + STATE(743), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(741), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(707), 19, + ACTIONS(925), 20, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, @@ -44613,6 +46773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44623,238 +46784,269 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38513] = 18, + [37652] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(452), 1, + STATE(430), 1, sym_string, - STATE(1879), 1, + STATE(1876), 1, sym_integer, - ACTIONS(845), 2, + ACTIONS(1132), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38577] = 18, + [37720] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, - anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1176), 1, - anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1598), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(833), 2, + ACTIONS(1054), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(858), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38641] = 18, + [37788] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(430), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(851), 2, + ACTIONS(1046), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38705] = 18, + [37856] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, - anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1176), 1, - anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(452), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1600), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(905), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(765), 2, + ACTIONS(1128), 2, + anon_sym_COMMA, + anon_sym_do, + STATE(869), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38769] = 2, + [37924] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 26, + ACTIONS(1309), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1311), 1, anon_sym_PIPE, + ACTIONS(1315), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1317), 1, anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_let, + ACTIONS(1321), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1323), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(1050), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, + STATE(801), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - [38801] = 7, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [37992] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(876), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(905), 18, + ACTIONS(1046), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, @@ -44862,6 +47054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44872,123 +47065,180 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [38843] = 18, + [38034] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + ACTIONS(1388), 1, + anon_sym_COLON, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(845), 2, + ACTIONS(925), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(883), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38907] = 18, + [38102] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(925), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1170), 1, + ACTIONS(1394), 1, + anon_sym_COLON, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1172), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1174), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1176), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1178), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1182), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(452), 1, + STATE(646), 1, sym_string, - STATE(1879), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1096), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1186), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(921), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1180), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [38971] = 7, + [38172] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1689), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1602), 1, anon_sym_COLON, - STATE(489), 1, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1086), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(909), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [38240] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(875), 2, + STATE(752), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 18, + ACTIONS(1128), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -44999,26 +47249,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39013] = 2, + [38282] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 26, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(776), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 20, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45029,77 +47285,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39045] = 18, + [38324] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1128), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1604), 1, + anon_sym_COLON, + STATE(646), 1, sym_string, - STATE(1667), 1, + STATE(1902), 1, sym_integer, - ACTIONS(833), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(930), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39109] = 7, + [38394] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1691), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(874), 2, + STATE(749), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 18, + ACTIONS(1128), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45110,71 +47371,73 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39151] = 19, + [38436] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1311), 1, anon_sym_PIPE, - ACTIONS(1399), 1, - anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1315), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1317), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1319), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1321), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1323), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - STATE(489), 1, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1056), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, - STATE(869), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39217] = 7, + [38504] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1693), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(872), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 18, + ACTIONS(1050), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, @@ -45182,6 +47445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45192,69 +47456,108 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39259] = 18, + [38546] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(752), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 20, anon_sym_LPAREN, - ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1136), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(905), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, + sym_id, + sym_qualified_id, + sym_force_id, + [38588] = 20, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1054), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, + anon_sym_forall, + ACTIONS(1398), 1, + anon_sym_LBRACK, + ACTIONS(1400), 1, + anon_sym_let, + ACTIONS(1402), 1, + anon_sym_do, + ACTIONS(1404), 1, + anon_sym_with, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, + sym_floating, + ACTIONS(1414), 1, + anon_sym_DQUOTE, + ACTIONS(1606), 1, + anon_sym_COLON, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + ACTIONS(1416), 2, + sym_operator, + sym_macro_id, + STATE(929), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39323] = 7, + [38658] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(424), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - STATE(871), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 18, + ACTIONS(1086), 20, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -45263,6 +47566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45273,152 +47578,158 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39365] = 19, + [38700] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(837), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1611), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1614), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1617), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1620), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1623), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1626), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1629), 1, + anon_sym_handler, + ACTIONS(1635), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1638), 1, anon_sym_DQUOTE, - ACTIONS(1697), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1008), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(1641), 2, sym_operator, sym_macro_id, - STATE(865), 2, + STATE(752), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1632), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1644), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39431] = 7, + [38768] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1699), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(868), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 18, + ACTIONS(1309), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1311), 1, anon_sym_PIPE, + ACTIONS(1315), 1, anon_sym_forall, + ACTIONS(1317), 1, anon_sym_LBRACK, + ACTIONS(1319), 1, anon_sym_let, + ACTIONS(1321), 1, anon_sym_do, + ACTIONS(1323), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(1086), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1333), 2, sym_operator, sym_macro_id, + STATE(801), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1327), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - [39473] = 18, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [38836] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(801), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 20, anon_sym_LPAREN, - ACTIONS(1132), 1, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1136), 1, anon_sym_forall, - ACTIONS(1138), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(1096), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [39537] = 7, + [38878] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1701), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(867), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 18, + ACTIONS(1132), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, @@ -45426,6 +47737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45436,71 +47748,73 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39579] = 19, + [38920] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1703), 1, + ACTIONS(1647), 1, anon_sym_COLON, - STATE(489), 1, + STATE(376), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1050), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(861), 2, + STATE(927), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39645] = 7, + [38988] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(430), 1, sym_string, - STATE(2032), 1, + STATE(1876), 1, sym_integer, - STATE(864), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 18, + ACTIONS(1086), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, @@ -45508,6 +47822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45518,99 +47833,72 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39687] = 2, + [39030] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 26, + ACTIONS(1046), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1392), 1, anon_sym_PIPE, + ACTIONS(1396), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1398), 1, anon_sym_LBRACK, + ACTIONS(1400), 1, anon_sym_let, + ACTIONS(1402), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1404), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [39719] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1525), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1528), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1707), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_PIPE, - ACTIONS(1713), 1, - anon_sym_forall, - ACTIONS(1716), 1, - anon_sym_LBRACK, - ACTIONS(1719), 1, - anon_sym_let, - ACTIONS(1722), 1, - anon_sym_do, - ACTIONS(1725), 1, - anon_sym_with, - STATE(452), 1, + ACTIONS(1649), 1, + anon_sym_COLON, + STATE(646), 1, sym_string, - STATE(1879), 1, + STATE(1902), 1, sym_integer, - ACTIONS(866), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1728), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(765), 2, + STATE(915), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1522), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1534), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(483), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [39783] = 7, + [39100] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(424), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - STATE(863), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(925), 18, + ACTIONS(1056), 20, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -45619,6 +47907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45629,61 +47919,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39825] = 7, + [39142] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(862), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 18, + ACTIONS(1094), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, + ACTIONS(1102), 1, anon_sym_LBRACK, + ACTIONS(1104), 1, anon_sym_let, + ACTIONS(1106), 1, anon_sym_do, + ACTIONS(1108), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, + ACTIONS(1116), 1, anon_sym_DQUOTE, + ACTIONS(1651), 1, + anon_sym_COLON, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1046), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, + STATE(924), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [39867] = 2, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [39210] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 26, + STATE(430), 1, + sym_string, + STATE(1876), 1, + sym_integer, + STATE(801), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(695), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 20, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45694,137 +48004,68 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [39899] = 9, - ACTIONS(3), 1, + [39252] = 6, + ACTIONS(9), 1, sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - STATE(769), 1, + STATE(424), 1, sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, + STATE(1856), 1, sym_integer, - STATE(935), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(1737), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [39945] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_AT, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(935), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, + sym_identifier, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 12, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [39991] = 9, - ACTIONS(3), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [39294] = 6, + ACTIONS(9), 1, sym_comment, - ACTIONS(1747), 1, - anon_sym_AT, - STATE(769), 1, + STATE(542), 1, sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, + STATE(1832), 1, sym_integer, - STATE(937), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1743), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(1745), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [40037] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(951), 26, + sym_identifier, + ACTIONS(1128), 20, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -45835,214 +48076,230 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [40069] = 19, + [39336] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1050), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1749), 1, + ACTIONS(1653), 1, anon_sym_COLON, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(859), 2, + STATE(906), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40135] = 19, + [39406] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1366), 1, + anon_sym_handler, + ACTIONS(1372), 1, + sym_floating, + ACTIONS(1375), 1, + anon_sym_DQUOTE, + ACTIONS(1655), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1658), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1661), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1664), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1667), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1670), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1673), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(1751), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(424), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1008), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1676), 2, sym_operator, sym_macro_id, - STATE(989), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1369), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1381), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40201] = 19, + [39474] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 1, + ACTIONS(1056), 1, anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1753), 1, + ACTIONS(1679), 1, anon_sym_COLON, - STATE(539), 1, + STATE(646), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(986), 2, + STATE(903), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40267] = 19, + [39544] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1681), 1, anon_sym_COLON, - STATE(539), 1, + STATE(376), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1054), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(983), 2, + STATE(922), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40333] = 2, + [39612] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 26, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 20, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46053,258 +48310,157 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [40365] = 19, + [39654] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 1, + ACTIONS(1086), 1, anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1757), 1, + ACTIONS(1683), 1, anon_sym_COLON, - STATE(539), 1, + STATE(646), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(980), 2, + STATE(899), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40431] = 19, + [39724] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, - anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(424), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1389), 2, - sym_operator, - sym_macro_id, - STATE(977), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40497] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(859), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(1367), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1371), 1, anon_sym_forall, - ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, anon_sym_let, - ACTIONS(1377), 1, anon_sym_do, - ACTIONS(1379), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(1761), 1, - anon_sym_COLON, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, - sym_operator, - sym_macro_id, - STATE(974), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [40563] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_PIPE, - ACTIONS(1401), 1, - anon_sym_forall, - ACTIONS(1403), 1, - anon_sym_LBRACK, - ACTIONS(1405), 1, - anon_sym_let, - ACTIONS(1407), 1, - anon_sym_do, - ACTIONS(1409), 1, - anon_sym_with, - ACTIONS(1413), 1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1763), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(857), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - [40629] = 19, + [39766] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1765), 1, + ACTIONS(1685), 1, anon_sym_COLON, - STATE(539), 1, + STATE(376), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(971), 2, + ACTIONS(1128), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + STATE(812), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40695] = 7, + [39834] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(424), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - STATE(860), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 18, + ACTIONS(1054), 20, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -46313,6 +48469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46323,449 +48481,435 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [40737] = 19, + [39876] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1467), 1, + anon_sym_handler, + ACTIONS(1473), 1, + sym_floating, + ACTIONS(1476), 1, + anon_sym_DQUOTE, + ACTIONS(1687), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1690), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1693), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1696), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1699), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1702), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1705), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1008), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1708), 2, sym_operator, sym_macro_id, - STATE(855), 2, + STATE(773), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1470), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1482), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40803] = 19, + [39944] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1771), 1, + ACTIONS(1436), 1, anon_sym_COLON, - STATE(539), 1, + STATE(376), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(925), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(968), 2, + STATE(896), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40869] = 19, + [40012] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 20, anon_sym_LPAREN, - ACTIONS(1397), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(1401), 1, anon_sym_forall, - ACTIONS(1403), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(854), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [40054] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(752), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [40935] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(1397), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1403), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(853), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [40096] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(785), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41001] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(1367), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1373), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1375), 1, anon_sym_let, - ACTIONS(1377), 1, anon_sym_do, - ACTIONS(1379), 1, anon_sym_with, - ACTIONS(1383), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1387), 1, anon_sym_DQUOTE, - ACTIONS(1777), 1, - anon_sym_COLON, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, sym_operator, sym_macro_id, - STATE(963), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + [40138] = 7, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_COLON, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(886), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41067] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1086), 19, anon_sym_LPAREN, - ACTIONS(1397), 1, anon_sym_PIPE, - ACTIONS(1401), 1, anon_sym_forall, - ACTIONS(1403), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1779), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(852), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [40182] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41133] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(1397), 1, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1401), 1, anon_sym_forall, - ACTIONS(1403), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1781), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(851), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [40224] = 7, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1713), 1, + anon_sym_COLON, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(877), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41199] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1056), 19, anon_sym_LPAREN, - ACTIONS(1367), 1, anon_sym_PIPE, - ACTIONS(1371), 1, anon_sym_forall, - ACTIONS(1373), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1375), 1, anon_sym_let, - ACTIONS(1377), 1, anon_sym_do, - ACTIONS(1379), 1, anon_sym_with, - ACTIONS(1383), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1387), 1, anon_sym_DQUOTE, - ACTIONS(1783), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [40268] = 7, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1715), 1, anon_sym_COLON, - STATE(539), 1, + STATE(646), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1389), 2, - sym_operator, - sym_macro_id, - STATE(956), 2, + STATE(873), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1050), 19, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [41265] = 19, + [40312] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1235), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1785), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(542), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1128), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(850), 2, + STATE(773), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41331] = 2, + [40380] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 26, + ACTIONS(1717), 1, + anon_sym_COLON, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(870), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1046), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46776,73 +48920,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41363] = 19, + [40424] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1235), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(542), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1054), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(948), 2, + STATE(773), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41429] = 2, + [40492] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 26, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(752), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46853,26 +49005,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41461] = 2, + [40534] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 26, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46883,61 +49041,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41493] = 2, + [40576] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 26, + ACTIONS(1233), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1235), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1239), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1046), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [41525] = 7, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [40644] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(856), 2, + STATE(800), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 18, + ACTIONS(1050), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -46948,73 +49126,69 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41567] = 19, + [40686] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1719), 1, + anon_sym_COLON, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(862), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1054), 19, anon_sym_LPAREN, - ACTIONS(1397), 1, anon_sym_PIPE, - ACTIONS(1401), 1, anon_sym_forall, - ACTIONS(1403), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1791), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(848), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [40730] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(752), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41633] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(991), 26, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47025,103 +49199,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41665] = 19, + [40772] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1158), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1793), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(424), 1, sym_string, - STATE(1948), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1128), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - STATE(938), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41731] = 2, + [40840] = 7, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 26, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(1721), 1, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [41763] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(973), 26, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(853), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1128), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47132,26 +49285,32 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41795] = 2, + [40884] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 26, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47162,73 +49321,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41827] = 19, + [40926] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(837), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1235), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1239), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1241), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1243), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1245), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1247), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, - anon_sym_COLON, - STATE(539), 1, + STATE(542), 1, sym_string, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1050), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, - STATE(924), 2, + STATE(773), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41893] = 2, + [40994] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 26, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47239,120 +49406,117 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [41925] = 19, + [41036] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1158), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1162), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1164), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1166), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1168), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1170), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1797), 1, - anon_sym_COLON, - STATE(489), 1, + STATE(424), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1054), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, - STATE(847), 2, + STATE(765), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [41991] = 19, + [41104] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1132), 20, anon_sym_LPAREN, - ACTIONS(1397), 1, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1401), 1, anon_sym_forall, - ACTIONS(1403), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, anon_sym_let, - ACTIONS(1407), 1, anon_sym_do, - ACTIONS(1409), 1, + anon_sym_in, anon_sym_with, - ACTIONS(1413), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(1799), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, sym_operator, sym_macro_id, - STATE(846), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + [41146] = 6, + ACTIONS(9), 1, + sym_comment, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(808), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [42057] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(831), 26, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47363,61 +49527,81 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [42089] = 7, + [41188] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(849), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 18, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1056), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [42131] = 2, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [41256] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 26, + STATE(706), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(752), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47428,142 +49612,179 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [42163] = 19, + [41298] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1536), 1, + anon_sym_handler, + ACTIONS(1542), 1, + sym_floating, + ACTIONS(1545), 1, + anon_sym_DQUOTE, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1726), 1, anon_sym_PIPE, - ACTIONS(1369), 1, - anon_sym_COLON, - ACTIONS(1371), 1, + ACTIONS(1729), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1732), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1735), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1738), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1741), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + STATE(430), 1, sym_string, - STATE(1948), 1, + STATE(1876), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1008), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(1744), 2, sym_operator, sym_macro_id, - STATE(913), 2, + STATE(801), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1539), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1551), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(695), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [42229] = 7, + [41366] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1361), 1, - anon_sym_COLON, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(843), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(707), 18, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1086), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [42271] = 2, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [41434] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 26, + ACTIONS(1094), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1100), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1102), 1, anon_sym_LBRACK, + ACTIONS(1104), 1, anon_sym_let, + ACTIONS(1106), 1, anon_sym_do, + ACTIONS(1108), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, + ACTIONS(1116), 1, anon_sym_DQUOTE, + ACTIONS(1747), 1, + anon_sym_COLON, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1056), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, + STATE(917), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [42303] = 6, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [41502] = 6, ACTIONS(9), 1, sym_comment, - STATE(452), 1, + STATE(706), 1, sym_string, - STATE(1879), 1, + STATE(1902), 1, sym_integer, - STATE(765), 2, + STATE(790), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(1096), 19, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47574,132 +49795,179 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [42343] = 6, + [41544] = 19, ACTIONS(9), 1, sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 19, + ACTIONS(1233), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1235), 1, anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1132), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [42383] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(837), 19, + [41612] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1132), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [42423] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(622), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(841), 19, + [41680] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1156), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1158), 1, anon_sym_PIPE, + ACTIONS(1162), 1, anon_sym_forall, + ACTIONS(1164), 1, anon_sym_LBRACK, + ACTIONS(1166), 1, anon_sym_let, + ACTIONS(1168), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1170), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, + STATE(424), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1046), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(1180), 2, sym_operator, sym_macro_id, + STATE(765), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1174), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [42463] = 6, + STATE(622), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [41748] = 6, ACTIONS(9), 1, sym_comment, - STATE(452), 1, + STATE(706), 1, sym_string, - STATE(1879), 1, + STATE(1902), 1, sym_integer, - STATE(765), 2, + STATE(752), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + aux_sym_expression_repeat5, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 19, + ACTIONS(1132), 20, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47710,64 +49978,82 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [42503] = 6, + [41790] = 19, ACTIONS(9), 1, sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 19, + ACTIONS(1233), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1235), 1, anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1086), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [42543] = 6, + STATE(722), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [41858] = 7, ACTIONS(9), 1, sym_comment, - STATE(452), 1, + ACTIONS(1491), 1, + anon_sym_COLON, + STATE(646), 1, sym_string, - STATE(1879), 1, + STATE(1902), 1, sym_integer, - STATE(765), 2, + STATE(849), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, ACTIONS(925), 19, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -47778,1452 +50064,1818 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [42583] = 6, + [41902] = 19, ACTIONS(9), 1, sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 19, + ACTIONS(1233), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1235), 1, anon_sym_PIPE, + ACTIONS(1239), 1, anon_sym_forall, + ACTIONS(1241), 1, anon_sym_LBRACK, + ACTIONS(1243), 1, anon_sym_let, + ACTIONS(1245), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1247), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, + STATE(542), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1056), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1257), 2, sym_operator, sym_macro_id, + STATE(773), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [42623] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(722), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 19, + [41970] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1094), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(1100), 1, anon_sym_forall, + ACTIONS(1102), 1, anon_sym_LBRACK, + ACTIONS(1104), 1, anon_sym_let, + ACTIONS(1106), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1108), 1, anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, + ACTIONS(1116), 1, anon_sym_DQUOTE, + STATE(376), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1054), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [42663] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(859), 19, + [42035] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, + ACTIONS(1755), 1, anon_sym_forall, + ACTIONS(1757), 1, anon_sym_LBRACK, + ACTIONS(1759), 1, anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1763), 1, anon_sym_with, + STATE(507), 1, + sym_string, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, + sym_operator, + sym_macro_id, + STATE(642), 2, + sym_expression, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - [42703] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 19, + [42102] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, + ACTIONS(1775), 1, anon_sym_LBRACK, + ACTIONS(1777), 1, anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1781), 1, anon_sym_with, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, + sym_operator, + sym_macro_id, + STATE(510), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [42743] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 19, + [42169] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, + ACTIONS(1775), 1, anon_sym_LBRACK, + ACTIONS(1777), 1, anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1781), 1, anon_sym_with, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, + sym_operator, + sym_macro_id, + STATE(380), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [42783] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(452), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(765), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(483), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 19, + [42236] = 20, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1787), 1, + anon_sym_RBRACE, + ACTIONS(1789), 1, anon_sym_PIPE, + ACTIONS(1791), 1, anon_sym_forall, + ACTIONS(1793), 1, anon_sym_LBRACK, + ACTIONS(1795), 1, anon_sym_let, + ACTIONS(1797), 1, anon_sym_do, - anon_sym_in, + ACTIONS(1799), 1, anon_sym_with, + ACTIONS(1801), 1, + anon_sym_const, + STATE(379), 1, + sym_string, + STATE(1647), 1, + sym_integer, + STATE(4212), 1, + sym_expression, + ACTIONS(1803), 2, + sym_operator, + sym_macro_id, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [42823] = 2, + STATE(475), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [42305] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 25, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1775), 1, anon_sym_LBRACK, + ACTIONS(1777), 1, anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, + ACTIONS(1781), 1, anon_sym_with, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, + sym_operator, + sym_macro_id, + STATE(737), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [42854] = 2, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [42372] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 25, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, + sym_floating, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1807), 1, + anon_sym_LBRACE, + ACTIONS(1809), 1, anon_sym_PIPE, + ACTIONS(1811), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(1813), 1, anon_sym_LBRACK, + ACTIONS(1815), 1, anon_sym_let, + ACTIONS(1817), 1, anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, + STATE(484), 1, + sym_string, + STATE(1832), 1, + sym_integer, + ACTIONS(1821), 2, + sym_operator, + sym_macro_id, + STATE(715), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - [42885] = 19, + STATE(705), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [42439] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_RBRACE, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1813), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(1815), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(1819), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3430), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(700), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [42950] = 19, + [42506] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(1823), 1, - anon_sym_RBRACE, - ACTIONS(1825), 1, - anon_sym_let, - ACTIONS(1827), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3422), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(698), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43015] = 19, + [42573] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1829), 1, - anon_sym_RBRACE, - ACTIONS(1831), 1, - anon_sym_let, - ACTIONS(1833), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3443), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(713), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43080] = 19, + [42640] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1845), 1, + aux_sym_number_token1, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1018), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [42687] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1835), 1, - anon_sym_RBRACE, - ACTIONS(1837), 1, - anon_sym_let, - ACTIONS(1839), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3448), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(354), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43145] = 19, + [42754] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + anon_sym_AT, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1018), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [42801] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1853), 1, + anon_sym_AT, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1017), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(1849), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1851), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [42848] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1841), 1, - anon_sym_RBRACE, - ACTIONS(1843), 1, - anon_sym_let, - ACTIONS(1845), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3461), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(357), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43210] = 19, + [42915] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1847), 1, - anon_sym_RBRACE, - ACTIONS(1849), 1, - anon_sym_let, - ACTIONS(1851), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3980), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(617), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43275] = 19, + [42982] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1853), 1, - anon_sym_RBRACE, - ACTIONS(1855), 1, - anon_sym_let, - ACTIONS(1857), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3468), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(675), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43340] = 19, + [43049] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1859), 1, - anon_sym_RBRACE, - ACTIONS(1861), 1, - anon_sym_let, - ACTIONS(1863), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3471), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(666), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43405] = 19, + [43116] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1867), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1869), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3469), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1132), 2, + anon_sym_COMMA, + anon_sym_do, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43470] = 19, + [43181] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(1871), 1, - anon_sym_RBRACE, - ACTIONS(1873), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1875), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3529), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1086), 2, + anon_sym_COMMA, + anon_sym_do, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43535] = 19, + [43246] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(1877), 1, - anon_sym_RBRACE, - ACTIONS(1879), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1881), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3437), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1056), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43600] = 19, + [43311] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(1883), 1, - anon_sym_RBRACE, - ACTIONS(1885), 1, - anon_sym_let, - ACTIONS(1887), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3975), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(668), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43665] = 19, + [43378] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(1889), 1, - anon_sym_RBRACE, - ACTIONS(1891), 1, - anon_sym_let, - ACTIONS(1893), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3571), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(564), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43730] = 6, + [43445] = 19, ACTIONS(9), 1, sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 18, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, + sym_floating, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + ACTIONS(1823), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_forall, + ACTIONS(1831), 1, anon_sym_LBRACK, + ACTIONS(1833), 1, anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, + ACTIONS(1837), 1, anon_sym_with, + STATE(459), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, + sym_operator, + sym_macro_id, + STATE(684), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - [43769] = 19, + STATE(660), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [43512] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1895), 1, - anon_sym_RBRACE, - ACTIONS(1897), 1, - anon_sym_let, - ACTIONS(1899), 1, - anon_sym_const, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3660), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(745), 2, + sym_expression, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43834] = 19, + [43579] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(1901), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_let, - ACTIONS(1905), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3664), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(680), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43899] = 18, + [43646] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, - anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(1875), 1, + anon_sym_let, + ACTIONS(1877), 1, + anon_sym_const, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + STATE(4045), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [43962] = 18, + [43715] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(651), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44025] = 18, + [43782] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(503), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44088] = 6, + [43849] = 19, ACTIONS(9), 1, sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 18, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, + ACTIONS(1414), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [44127] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(845), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(764), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44190] = 18, + [43916] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1897), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, anon_sym_forall, - ACTIONS(1403), 1, - anon_sym_LBRACK, - ACTIONS(1405), 1, - anon_sym_let, - ACTIONS(1407), 1, - anon_sym_do, - ACTIONS(1409), 1, - anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(1417), 2, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, sym_operator, - sym_macro_id, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1919), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - [44253] = 18, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(21), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [43979] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, - anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1921), 1, + anon_sym_RBRACE, + ACTIONS(1923), 1, + anon_sym_let, + ACTIONS(1925), 1, + anon_sym_const, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + STATE(4409), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44316] = 18, + [44048] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, + sym_floating, + ACTIONS(1414), 1, + anon_sym_DQUOTE, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(758), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44379] = 18, + [44115] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1897), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(842), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(19), 4, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1401), 1, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [44178] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1407), 1, - anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1050), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44442] = 18, + [44243] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1897), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(19), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [44306] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(650), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44505] = 6, + [44373] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(915), 18, + ACTIONS(1128), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -49234,165 +51886,161 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [44544] = 18, + [44414] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, + sym_floating, + ACTIONS(1414), 1, + anon_sym_DQUOTE, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(777), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44607] = 19, + [44481] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(926), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 17, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(1907), 1, - anon_sym_RBRACE, - ACTIONS(1909), 1, - anon_sym_let, - ACTIONS(1911), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4145), 1, - sym_expression, - ACTIONS(1821), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [44672] = 18, + [44520] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, - anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(5065), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44735] = 6, + [44587] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(921), 18, + ACTIONS(1054), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -49403,297 +52051,412 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [44774] = 18, + [44628] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, + sym_floating, + ACTIONS(1414), 1, + anon_sym_DQUOTE, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(788), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [44837] = 6, + [44695] = 19, ACTIONS(9), 1, sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 18, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, + sym_floating, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + ACTIONS(1823), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_forall, + ACTIONS(1831), 1, anon_sym_LBRACK, + ACTIONS(1833), 1, anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, + ACTIONS(1837), 1, anon_sym_with, + STATE(459), 1, + sym_string, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, + sym_operator, + sym_macro_id, + STATE(696), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - [44876] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(909), 18, + [44762] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1789), 1, anon_sym_PIPE, + ACTIONS(1791), 1, anon_sym_forall, + ACTIONS(1793), 1, anon_sym_LBRACK, - anon_sym_let, + ACTIONS(1797), 1, anon_sym_do, + ACTIONS(1799), 1, anon_sym_with, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1803), 2, + sym_operator, + sym_macro_id, + STATE(5063), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [44915] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(901), 18, + [44829] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, + ACTIONS(1887), 1, anon_sym_LBRACK, + ACTIONS(1889), 1, anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, + ACTIONS(1893), 1, anon_sym_with, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, + sym_operator, + sym_macro_id, + STATE(446), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [44954] = 18, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [44896] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1407), 1, - anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1046), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45017] = 19, + [44961] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_let, - ACTIONS(1917), 1, - anon_sym_const, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - STATE(3675), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(635), 2, + sym_expression, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45082] = 6, + [45028] = 17, ACTIONS(9), 1, sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 18, + ACTIONS(1897), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(847), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(17), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [45091] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, + ACTIONS(1775), 1, anon_sym_LBRACK, + ACTIONS(1777), 1, anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, + ACTIONS(1781), 1, anon_sym_with, + STATE(322), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, + sym_operator, + sym_macro_id, + STATE(409), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [45121] = 6, + STATE(386), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [45158] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 18, + ACTIONS(1046), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -49704,153 +52467,340 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [45160] = 18, + [45199] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(837), 1, - anon_sym_EQ, - ACTIONS(1395), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1401), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1403), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1405), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(1407), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1409), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - STATE(489), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(1417), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - STATE(958), 2, + STATE(630), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1411), 3, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(813), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45223] = 19, + [45266] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(1919), 1, + ACTIONS(1931), 1, anon_sym_RBRACE, - ACTIONS(1921), 1, + ACTIONS(1933), 1, anon_sym_let, - ACTIONS(1923), 1, + ACTIONS(1935), 1, anon_sym_const, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(4151), 1, + STATE(3958), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45288] = 6, + [45335] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, + sym_operator, + sym_id, + [45374] = 20, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_LPAREN, + ACTIONS(1789), 1, + anon_sym_PIPE, + ACTIONS(1791), 1, + anon_sym_forall, + ACTIONS(1793), 1, + anon_sym_LBRACK, + ACTIONS(1797), 1, + anon_sym_do, + ACTIONS(1799), 1, + anon_sym_with, + ACTIONS(1937), 1, + anon_sym_RBRACE, + ACTIONS(1939), 1, + anon_sym_let, + ACTIONS(1941), 1, + anon_sym_const, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - STATE(958), 2, + STATE(4122), 1, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + ACTIONS(1803), 2, + sym_operator, + sym_macro_id, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(851), 18, + [45443] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1008), 1, + anon_sym_DASH_GT, + ACTIONS(1629), 1, + anon_sym_handler, + ACTIONS(1635), 1, + sym_floating, + ACTIONS(1638), 1, + anon_sym_DQUOTE, + ACTIONS(1943), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1946), 1, anon_sym_PIPE, + ACTIONS(1949), 1, anon_sym_forall, + ACTIONS(1952), 1, anon_sym_LBRACK, + ACTIONS(1955), 1, anon_sym_let, + ACTIONS(1958), 1, anon_sym_do, + ACTIONS(1961), 1, anon_sym_with, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + ACTIONS(1964), 2, + sym_operator, + sym_macro_id, + STATE(867), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1632), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, + ACTIONS(1644), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [45510] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, + sym_operator, + sym_id, + [45549] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1064), 1, + anon_sym_forall, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_let, + ACTIONS(1072), 1, + anon_sym_with, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, + sym_string, + STATE(1567), 1, + sym_integer, + ACTIONS(1054), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(1082), 2, sym_operator, sym_macro_id, + STATE(531), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [45327] = 6, + STATE(407), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [45614] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(845), 18, + ACTIONS(1050), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -49861,75 +52811,125 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [45366] = 19, + [45655] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(1927), 1, - anon_sym_let, - ACTIONS(1929), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3428), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(730), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45431] = 6, + [45722] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(15), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [45785] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(833), 18, + ACTIONS(1056), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -49940,62 +52940,171 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [45470] = 6, + [45826] = 17, ACTIONS(9), 1, sym_comment, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 18, + ACTIONS(1897), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(13), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [45889] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1967), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_forall, + ACTIONS(1979), 1, + anon_sym_BANG, + ACTIONS(1982), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1985), 1, + aux_sym_type_unit_token1, + ACTIONS(1988), 1, + sym_type_implicit_var, + ACTIONS(1991), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1994), 1, + anon_sym_POUND_BANG, + ACTIONS(1997), 1, + sym_operator, + ACTIONS(2000), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1976), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(42), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [45952] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, + anon_sym_LPAREN, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, + ACTIONS(1887), 1, anon_sym_LBRACK, + ACTIONS(1889), 1, anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, + ACTIONS(1893), 1, anon_sym_with, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, + sym_operator, + sym_macro_id, + STATE(771), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - [45509] = 6, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [46019] = 6, ACTIONS(9), 1, sym_comment, - STATE(489), 1, + STATE(646), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(958), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - STATE(813), 3, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(1096), 18, + ACTIONS(1086), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -50006,3855 +53115,4588 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [45548] = 19, + [46060] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1931), 1, - anon_sym_RBRACE, - ACTIONS(1933), 1, - anon_sym_let, - ACTIONS(1935), 1, - anon_sym_const, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(4170), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(783), 2, + sym_expression, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45613] = 19, + [46127] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1937), 1, - anon_sym_RBRACE, - ACTIONS(1939), 1, - anon_sym_let, - ACTIONS(1941), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(4353), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(707), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45678] = 19, + [46194] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1945), 1, - anon_sym_let, - ACTIONS(1947), 1, - anon_sym_const, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(4106), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(781), 2, + sym_expression, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45743] = 20, - ACTIONS(3), 1, + [46261] = 19, + ACTIONS(9), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1951), 1, - anon_sym_COLON, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1959), 1, - anon_sym_AT, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1745), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1517), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [45810] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1130), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(322), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1096), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(465), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45871] = 17, + [46328] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(905), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(429), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45932] = 17, + [46395] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1060), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1064), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1068), 1, anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1072), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - STATE(209), 1, + ACTIONS(1124), 1, + anon_sym_PIPE, + STATE(308), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(833), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1082), 2, sym_operator, sym_macro_id, - STATE(557), 2, + ACTIONS(1128), 2, + anon_sym_COMMA, + anon_sym_do, + STATE(531), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(407), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [45993] = 17, + [46460] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, + sym_floating, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1807), 1, + anon_sym_LBRACE, + ACTIONS(1809), 1, + anon_sym_PIPE, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(484), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(845), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(638), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46054] = 17, + [46527] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(322), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(851), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(402), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46115] = 17, + [46594] = 6, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(646), 1, + sym_string, + STATE(1902), 1, + sym_integer, + STATE(867), 2, + sym_expression, + aux_sym_expression_repeat5, + STATE(810), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + ACTIONS(1132), 19, anon_sym_LPAREN, - ACTIONS(1136), 1, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(1138), 1, + anon_sym_DASH_GT, anon_sym_LBRACK, - ACTIONS(1140), 1, anon_sym_let, - ACTIONS(1142), 1, anon_sym_do, - ACTIONS(1144), 1, anon_sym_with, - ACTIONS(1148), 1, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(855), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [46176] = 17, + [46635] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(322), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(859), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(731), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46237] = 17, + [46702] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(901), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(438), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46298] = 17, + [46769] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 17, anon_sym_LPAREN, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(909), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, - sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [46359] = 19, + [46808] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(1973), 1, - anon_sym_RBRACE, - ACTIONS(1975), 1, - anon_sym_let, - ACTIONS(1977), 1, - anon_sym_const, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(4087), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(433), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46424] = 17, + [46875] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, + sym_floating, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1807), 1, + anon_sym_LBRACE, + ACTIONS(1809), 1, + anon_sym_PIPE, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(484), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(925), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(633), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46485] = 17, + [46942] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(397), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(921), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(544), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46546] = 17, + [47009] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(865), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 17, anon_sym_LPAREN, - ACTIONS(1136), 1, - anon_sym_forall, - ACTIONS(1138), 1, - anon_sym_LBRACK, - ACTIONS(1140), 1, - anon_sym_let, - ACTIONS(1142), 1, - anon_sym_do, - ACTIONS(1144), 1, - anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, - sym_string, - STATE(1667), 1, - sym_integer, - ACTIONS(915), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_RBRACK, - ACTIONS(1152), 2, sym_operator, - sym_macro_id, - STATE(557), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(277), 3, - sym_number, - sym_string_cons, - sym_identifier, - [46607] = 19, + [47048] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(1979), 1, + ACTIONS(2003), 1, anon_sym_RBRACE, - ACTIONS(1981), 1, + ACTIONS(2005), 1, anon_sym_let, - ACTIONS(1983), 1, + ACTIONS(2007), 1, anon_sym_const, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3935), 1, + STATE(4329), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46672] = 19, + [47117] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1897), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, + ACTIONS(1905), 1, + anon_sym_BANG, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(872), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(11), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [47180] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1989), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(4082), 1, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + ACTIONS(1128), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + STATE(690), 2, sym_expression, - ACTIONS(1821), 2, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [47245] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, + anon_sym_LPAREN, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, + anon_sym_forall, + ACTIONS(1887), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, + anon_sym_do, + ACTIONS(1893), 1, + anon_sym_with, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(760), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46737] = 20, - ACTIONS(3), 1, + [47312] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_or, - ACTIONS(1949), 1, + ACTIONS(1897), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1905), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(1907), 1, + anon_sym_BANG_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(874), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + ACTIONS(7), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_RBRACK, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [47375] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1132), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, + anon_sym_forall, + ACTIONS(1398), 1, + anon_sym_LBRACK, + ACTIONS(1400), 1, + anon_sym_let, + ACTIONS(1402), 1, + anon_sym_do, + ACTIONS(1404), 1, + anon_sym_with, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(1991), 1, - anon_sym_COLON, - ACTIONS(1993), 1, - anon_sym_AT, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + STATE(646), 1, sym_string, - STATE(2349), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1737), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - ACTIONS(1963), 2, + ACTIONS(1416), 2, + sym_operator, + sym_macro_id, + STATE(867), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, - STATE(1526), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1418), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, - [46804] = 20, - ACTIONS(3), 1, + sym_identifier, + [47442] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_or, - ACTIONS(1949), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(868), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 17, anon_sym_LPAREN, - ACTIONS(1953), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, + sym_operator, + sym_id, + [47481] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(1991), 1, - anon_sym_COLON, - ACTIONS(1995), 1, - aux_sym_number_token1, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + ACTIONS(1879), 1, + anon_sym_LPAREN, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, + anon_sym_forall, + ACTIONS(1887), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, + anon_sym_do, + ACTIONS(1893), 1, + anon_sym_with, + STATE(397), 1, sym_string, - STATE(2349), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1737), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - ACTIONS(1963), 2, + ACTIONS(1895), 2, + sym_operator, + sym_macro_id, + STATE(756), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, - STATE(1526), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, - [46871] = 19, + sym_identifier, + [47548] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(1997), 1, - anon_sym_RBRACE, - ACTIONS(1999), 1, - anon_sym_let, - ACTIONS(2001), 1, - anon_sym_const, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - STATE(3996), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(601), 2, + sym_expression, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46936] = 17, + [47615] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1086), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(646), 1, sym_string, - STATE(1667), 1, + STATE(1902), 1, sym_integer, - ACTIONS(841), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [46997] = 17, + [47682] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1136), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_PIPE, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1138), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1140), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(1142), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1144), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - STATE(209), 1, + STATE(322), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(837), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - ACTIONS(1152), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - STATE(557), 2, + STATE(496), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1146), 3, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(277), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47058] = 19, + [47749] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(2003), 1, - anon_sym_RBRACE, - ACTIONS(2005), 1, - anon_sym_let, - ACTIONS(2007), 1, - anon_sym_const, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - STATE(3701), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(596), 2, + sym_expression, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47123] = 19, + [47816] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1056), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1400), 1, + anon_sym_let, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(2009), 1, - anon_sym_RBRACE, - ACTIONS(2011), 1, - anon_sym_let, - ACTIONS(2013), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, + sym_floating, + ACTIONS(1414), 1, + anon_sym_DQUOTE, + STATE(646), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3704), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(867), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47188] = 19, + [47883] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, ACTIONS(1807), 1, - anon_sym_PIPE, + anon_sym_LBRACE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2017), 1, - anon_sym_let, - ACTIONS(2019), 1, - anon_sym_const, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3712), 1, - sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(547), 2, + sym_expression, + sym_do_block, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47253] = 19, + [47950] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(2021), 1, - anon_sym_RBRACE, - ACTIONS(2023), 1, - anon_sym_let, - ACTIONS(2025), 1, - anon_sym_const, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3736), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(792), 2, + sym_expression, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47318] = 10, - ACTIONS(3), 1, + [48017] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2027), 1, - anon_sym_COLON, - ACTIONS(2029), 1, - anon_sym_AT, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + STATE(376), 1, sym_string, - STATE(2349), 1, + STATE(1647), 1, sym_integer, - STATE(1196), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1743), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1745), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + ACTIONS(1132), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [47365] = 19, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [48082] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(2033), 1, - anon_sym_let, - ACTIONS(2035), 1, - anon_sym_const, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(4394), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(425), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47430] = 10, - ACTIONS(3), 1, + [48149] = 19, + ACTIONS(9), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_COLON, - ACTIONS(2039), 1, - anon_sym_AT, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1184), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1735), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1737), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, - [47477] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 1, - aux_sym_number_token1, - ACTIONS(2037), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, + anon_sym_PIPE, + ACTIONS(1773), 1, + anon_sym_forall, + ACTIONS(1775), 1, + anon_sym_LBRACK, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, + anon_sym_do, + ACTIONS(1781), 1, + anon_sym_with, + STATE(322), 1, sym_string, - STATE(2349), 1, + STATE(1567), 1, sym_integer, - STATE(1184), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, + ACTIONS(1783), 2, + sym_operator, + sym_macro_id, + STATE(466), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(1735), 5, + sym_identifier, + [48216] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1737), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, + anon_sym_forall, + ACTIONS(1887), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, + anon_sym_do, + ACTIONS(1893), 1, + anon_sym_with, + STATE(397), 1, + sym_string, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, + sym_operator, + sym_macro_id, + STATE(512), 2, + sym_expression, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [47524] = 19, + aux_sym_integer_token1, + ACTIONS(1120), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(471), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [48283] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2043), 1, - anon_sym_let, - ACTIONS(2045), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3739), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(495), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47589] = 19, + [48350] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2047), 1, - anon_sym_RBRACE, - ACTIONS(2049), 1, - anon_sym_let, - ACTIONS(2051), 1, - anon_sym_const, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(4048), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(546), 2, + sym_expression, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47654] = 17, + [48417] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1050), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(646), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - ACTIONS(1096), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47715] = 17, + [48484] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(905), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(452), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + sym_do_block, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47776] = 18, + [48551] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(837), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(539), 1, + STATE(376), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1086), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, sym_operator, sym_macro_id, - STATE(925), 2, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47839] = 19, + [48616] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(2055), 1, - anon_sym_let, - ACTIONS(2057), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3920), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(499), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47904] = 19, + [48683] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1769), 1, + anon_sym_LBRACE, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2059), 1, - anon_sym_RBRACE, - ACTIONS(2061), 1, - anon_sym_let, - ACTIONS(2063), 1, - anon_sym_const, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3915), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + STATE(372), 2, + sym_expression, + sym_do_block, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [47969] = 17, + [48750] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, + sym_floating, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1825), 1, + anon_sym_LBRACE, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(833), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(584), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + sym_do_block, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48030] = 17, + [48817] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1128), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(646), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - ACTIONS(845), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48091] = 17, + [48884] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - ACTIONS(851), 2, + ACTIONS(1046), 2, anon_sym_SEMI_SEMI, anon_sym_PIPE, - STATE(464), 2, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48152] = 17, + [48949] = 20, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1789), 1, + anon_sym_PIPE, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + ACTIONS(2009), 1, + anon_sym_RBRACE, + ACTIONS(2011), 1, + anon_sym_let, + ACTIONS(2013), 1, + anon_sym_const, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + STATE(3701), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(855), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48213] = 17, + [49018] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1094), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1100), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1102), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1104), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1106), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1108), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(376), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, - sym_operator, - sym_macro_id, - ACTIONS(859), 2, + ACTIONS(1050), 2, anon_sym_SEMI_SEMI, anon_sym_PIPE, - STATE(464), 2, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(690), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48274] = 17, + [49083] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, + anon_sym_PIPE, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(901), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(656), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48335] = 8, - ACTIONS(3), 1, + [49150] = 5, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(875), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, + sym_operator, + sym_id, + [49189] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1094), 1, + anon_sym_LPAREN, + ACTIONS(1100), 1, + anon_sym_forall, + ACTIONS(1102), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_let, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1108), 1, + anon_sym_with, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + STATE(376), 1, sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, + STATE(1647), 1, sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2065), 4, - anon_sym_LPAREN, - anon_sym__, + ACTIONS(1056), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(1118), 2, + sym_operator, + sym_macro_id, + STATE(690), 2, + sym_expression, + aux_sym_expression_repeat5, + ACTIONS(1112), 3, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, + ACTIONS(1120), 3, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, + sym_qualified_id, + sym_force_id, + STATE(480), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(2067), 12, + sym_identifier, + [49254] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(889), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 17, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48378] = 17, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, + sym_operator, + sym_id, + [49293] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1046), 1, + anon_sym_DASH_GT, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1392), 1, + anon_sym_PIPE, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(234), 1, + STATE(646), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - ACTIONS(909), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48439] = 18, + [49360] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 1, + ACTIONS(1054), 1, anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1390), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1392), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(1396), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(1398), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1400), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(1402), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(1404), 1, anon_sym_with, - ACTIONS(1383), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - STATE(539), 1, + STATE(646), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(1389), 2, + ACTIONS(1416), 2, sym_operator, sym_macro_id, - STATE(925), 2, + STATE(867), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + aux_sym_expression_repeat5, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(810), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48502] = 18, + [49427] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_DASH_GT, - ACTIONS(1587), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1590), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2069), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2072), 1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2075), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2078), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2081), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2084), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2087), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(539), 1, + STATE(706), 1, sym_string, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2090), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - STATE(925), 2, + STATE(746), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1584), 3, + sym_do_block, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1596), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48565] = 8, - ACTIONS(3), 1, + [49494] = 19, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2093), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2095), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, + ACTIONS(1178), 1, anon_sym_DQUOTE, - [48608] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, + ACTIONS(1749), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2099), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48651] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(813), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - ACTIONS(825), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(925), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, + STATE(618), 2, sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + sym_do_block, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [48712] = 8, - ACTIONS(3), 1, + [49561] = 17, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, + ACTIONS(2015), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2103), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48755] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2107), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48798] = 17, + anon_sym_or, + anon_sym_LT_DASH, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [49623] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, - ACTIONS(921), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [48859] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2061), 1, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2111), 12, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48902] = 8, - ACTIONS(3), 1, + anon_sym_or, + STATE(1027), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [49685] = 17, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, + ACTIONS(2063), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, + anon_sym_forall, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, + sym_operator, + ACTIONS(2085), 1, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2115), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48945] = 8, - ACTIONS(3), 1, + anon_sym_do, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [49747] = 5, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2119), 12, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [48988] = 8, - ACTIONS(3), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [49785] = 17, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2121), 4, + ACTIONS(2063), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, + anon_sym_forall, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, + sym_operator, + ACTIONS(2085), 1, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2123), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [49031] = 17, + anon_sym_do, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [49847] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, + sym_floating, + ACTIONS(1116), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(1789), 1, + anon_sym_PIPE, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, + ACTIONS(2087), 1, + anon_sym_let, + ACTIONS(2089), 1, + anon_sym_const, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(825), 2, + STATE(4673), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(915), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(347), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [49092] = 8, - ACTIONS(3), 1, + [49913] = 17, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2125), 4, + ACTIONS(2091), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, + anon_sym_BANG, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2127), 12, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(21), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [49135] = 18, + anon_sym_or, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [49975] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(2117), 1, + anon_sym_RPAREN, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1389), 2, + STATE(3744), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [49198] = 17, + [50041] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + ACTIONS(2063), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, sym_operator, - sym_macro_id, - ACTIONS(841), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2085), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [49259] = 17, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(949), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50103] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(803), 1, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(1013), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(809), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(811), 1, - anon_sym_LBRACK, - ACTIONS(813), 1, - anon_sym_let, - ACTIONS(815), 1, - anon_sym_do, - ACTIONS(817), 1, - anon_sym_with, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - STATE(234), 1, - sym_string, - STATE(1717), 1, - sym_integer, - ACTIONS(825), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, - ACTIONS(837), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(464), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(347), 3, - sym_number, - sym_string_cons, - sym_identifier, - [49320] = 6, + [50141] = 17, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(1096), 18, + ACTIONS(2063), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, sym_operator, - sym_macro_id, + ACTIONS(2085), 1, sym_id, - sym_qualified_id, - sym_force_id, - [49359] = 6, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(994), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50203] = 19, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(905), 18, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, + ACTIONS(2119), 1, anon_sym_PIPE, + ACTIONS(2121), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2123), 1, anon_sym_LBRACK, + ACTIONS(2125), 1, anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, + ACTIONS(2129), 1, anon_sym_with, + ACTIONS(2133), 1, + anon_sym_RPAREN, + STATE(399), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(3737), 1, + sym_expression, + ACTIONS(2131), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [49398] = 2, + STATE(418), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [50269] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 25, + ACTIONS(2015), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2023), 1, anon_sym_BANG, + ACTIONS(2025), 1, anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, aux_sym_type_unit_token1, + ACTIONS(2029), 1, sym_type_implicit_var, + ACTIONS(2031), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2035), 1, sym_operator, - sym_macro_id, + ACTIONS(2037), 1, sym_id, - sym_qualified_id, - sym_force_id, - [49429] = 6, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(1033), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50331] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(833), 18, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49468] = 17, - ACTIONS(3), 1, + [50369] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2135), 1, anon_sym_LPAREN, - ACTIONS(2134), 1, + ACTIONS(2138), 1, + anon_sym_LBRACE, + ACTIONS(2141), 1, + anon_sym_forall, + ACTIONS(2147), 1, anon_sym_BANG, - ACTIONS(2137), 1, + ACTIONS(2150), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2153), 1, aux_sym_type_unit_token1, - ACTIONS(2140), 1, - anon_sym__, - ACTIONS(2143), 1, - anon_sym_QMARK, - ACTIONS(2149), 1, - aux_sym_integer_token1, - ACTIONS(2152), 1, - sym_floating, - ACTIONS(2155), 1, - anon_sym_DQUOTE, - ACTIONS(2158), 1, + ACTIONS(2156), 1, + sym_type_implicit_var, + ACTIONS(2159), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2162), 1, + anon_sym_POUND_BANG, + ACTIONS(2165), 1, + sym_operator, + ACTIONS(2168), 1, sym_id, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - ACTIONS(2146), 2, - sym_hex_integer, - sym_octet_integer, - STATE(945), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2132), 5, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2144), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - [49529] = 19, + anon_sym_or, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50431] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2161), 1, - anon_sym_RBRACE, - ACTIONS(2163), 1, - anon_sym_let, - ACTIONS(2165), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2171), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3747), 1, + STATE(3709), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [49594] = 6, + [50497] = 17, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(845), 18, + ACTIONS(2063), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, anon_sym_forall, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, + sym_operator, + ACTIONS(2085), 1, + sym_id, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50559] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, sym_operator, - sym_macro_id, + ACTIONS(2195), 1, sym_id, - sym_qualified_id, - sym_force_id, - [49633] = 18, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [50621] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + ACTIONS(2197), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1389), 2, + STATE(3681), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [49696] = 6, + [50687] = 19, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(851), 18, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, + ACTIONS(2119), 1, anon_sym_PIPE, + ACTIONS(2121), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2123), 1, anon_sym_LBRACK, + ACTIONS(2125), 1, anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, + ACTIONS(2129), 1, anon_sym_with, + ACTIONS(2199), 1, + anon_sym_RPAREN, + STATE(399), 1, + sym_string, + STATE(1567), 1, + sym_integer, + STATE(4051), 1, + sym_expression, + ACTIONS(2131), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - [49735] = 6, - ACTIONS(9), 1, - sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - ACTIONS(855), 18, + [50753] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(936), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49774] = 6, + [50791] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(859), 18, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49813] = 6, + [50829] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(901), 18, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(954), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49852] = 6, + [50867] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(909), 18, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49891] = 6, + [50905] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(925), 18, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49930] = 6, + [50943] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(921), 18, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [49969] = 18, + [50981] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50032] = 6, + [51019] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(915), 18, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(989), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [50071] = 18, + [51057] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(1633), 1, - sym_floating, - ACTIONS(1636), 1, - anon_sym_DQUOTE, - ACTIONS(2167), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, anon_sym_forall, - ACTIONS(2176), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_let, - ACTIONS(2182), 1, - anon_sym_do, - ACTIONS(2185), 1, - anon_sym_with, - STATE(489), 1, - sym_string, - STATE(2032), 1, - sym_integer, - ACTIONS(2188), 2, + ACTIONS(2023), 1, + anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, sym_operator, - sym_macro_id, - STATE(958), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1630), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1642), 3, + ACTIONS(2037), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(813), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50134] = 6, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(933), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51119] = 17, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(841), 18, + ACTIONS(2039), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, + ACTIONS(2061), 1, sym_id, - sym_qualified_id, - sym_force_id, - [50173] = 19, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51181] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, ACTIONS(2191), 1, - anon_sym_RBRACE, + anon_sym_POUND_BANG, ACTIONS(2193), 1, - anon_sym_let, - ACTIONS(2195), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3771), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2195), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50238] = 19, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(979), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51243] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2197), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, - anon_sym_let, ACTIONS(2201), 1, - anon_sym_const, - STATE(230), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3774), 1, + STATE(3666), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [50303] = 19, + [51309] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(956), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2203), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2205), 1, - anon_sym_let, - ACTIONS(2207), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3782), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50368] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(909), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50431] = 6, + [51347] = 5, ACTIONS(9), 1, sym_comment, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - ACTIONS(837), 18, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, anon_sym_LPAREN, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [50470] = 19, + [51385] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(2211), 1, - anon_sym_let, - ACTIONS(2213), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2203), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3829), 1, + STATE(3656), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [50535] = 19, + [51451] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(959), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [51489] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2213), 1, + anon_sym_BANG, ACTIONS(2215), 1, - anon_sym_RBRACE, + anon_sym_BANG_LBRACE, ACTIONS(2217), 1, - anon_sym_let, + aux_sym_type_unit_token1, ACTIONS(2219), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3832), 1, - sym_expression, - ACTIONS(1821), 2, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2227), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50600] = 9, - ACTIONS(3), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(21), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51551] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(1995), 1, - aux_sym_number_token1, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1055), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1735), 5, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(986), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, anon_sym_LPAREN, - anon_sym__, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [51589] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(958), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_or, - aux_sym_integer_token1, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(1737), 10, + [51627] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(966), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [50645] = 18, + sym_operator, + sym_id, + [51665] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 1, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(990), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, anon_sym_DASH_GT, - ACTIONS(1365), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [51703] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + ACTIONS(2229), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1389), 2, + STATE(3639), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [50708] = 9, + [51769] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, + anon_sym_forall, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, + sym_operator, + ACTIONS(2061), 1, + sym_id, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(1009), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51831] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, + sym_operator, + ACTIONS(2195), 1, + sym_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(993), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51893] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2234), 1, + anon_sym_LBRACE, + ACTIONS(2237), 1, + anon_sym_forall, + ACTIONS(2243), 1, + anon_sym_BANG, + ACTIONS(2246), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2249), 1, + aux_sym_type_unit_token1, + ACTIONS(2252), 1, + sym_type_implicit_var, + ACTIONS(2255), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2258), 1, + anon_sym_POUND_BANG, + ACTIONS(2261), 1, + sym_operator, + ACTIONS(2264), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2240), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [51955] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_LPAREN, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, + anon_sym_BANG, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, + sym_id, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + STATE(939), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52017] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, + sym_operator, + ACTIONS(2195), 1, + sym_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(21), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52079] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, + anon_sym_forall, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, + sym_operator, + ACTIONS(2085), 1, + sym_id, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(937), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52141] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_LPAREN, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, + anon_sym_BANG, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, + sym_id, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - anon_sym_AT, - STATE(967), 1, + STATE(822), 1, sym_string, - STATE(969), 1, + STATE(824), 1, sym_pattern_var, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1055), 2, + STATE(1069), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1735), 5, + ACTIONS(2267), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(1737), 10, + ACTIONS(2269), 12, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, @@ -53864,33 +57706,33 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [50753] = 9, + [52247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, - anon_sym_AT, - STATE(967), 1, + STATE(822), 1, sym_string, - STATE(969), 1, + STATE(824), 1, sym_pattern_var, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1056), 2, + STATE(1057), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1743), 5, + ACTIONS(2271), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(1745), 10, + ACTIONS(2273), 12, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, @@ -53900,2876 +57742,2926 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [50798] = 18, + [52291] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(2195), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50861] = 19, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(988), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52353] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(969), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52415] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [52453] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, ACTIONS(2227), 1, - anon_sym_let, - ACTIONS(2229), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3840), 1, - sym_expression, - ACTIONS(1821), 2, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52515] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2195), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [50926] = 19, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52577] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [52615] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [52653] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2281), 1, + anon_sym_forall, + ACTIONS(2287), 1, + anon_sym_BANG, + ACTIONS(2290), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2293), 1, + aux_sym_type_unit_token1, + ACTIONS(2296), 1, + sym_type_implicit_var, + ACTIONS(2299), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2302), 1, + anon_sym_POUND_BANG, + ACTIONS(2305), 1, + sym_operator, + ACTIONS(2308), 1, + sym_id, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2284), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52715] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2231), 1, - anon_sym_RBRACE, - ACTIONS(2233), 1, - anon_sym_let, - ACTIONS(2235), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2311), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4212), 1, + STATE(3848), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [50991] = 18, + [52781] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, + anon_sym_BANG, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, + sym_operator, + ACTIONS(2195), 1, + sym_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52843] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 1, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, + anon_sym_forall, + ACTIONS(2071), 1, + anon_sym_BANG, + ACTIONS(2073), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, + aux_sym_type_unit_token1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2083), 1, + sym_operator, + ACTIONS(2085), 1, + sym_id, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, anon_sym_DASH_GT, - ACTIONS(1365), 1, + anon_sym_EQ_GT, + ACTIONS(21), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [52905] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + ACTIONS(2313), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1389), 2, + STATE(4339), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [51054] = 19, - ACTIONS(9), 1, + [52971] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1022), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2315), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2317), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [53015] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2319), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2322), 1, + anon_sym_LBRACE, + ACTIONS(2325), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2237), 1, + ACTIONS(2331), 1, + anon_sym_BANG, + ACTIONS(2334), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2337), 1, + aux_sym_type_unit_token1, + ACTIONS(2340), 1, + sym_type_implicit_var, + ACTIONS(2343), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2346), 1, + anon_sym_POUND_BANG, + ACTIONS(2349), 1, + sym_operator, + ACTIONS(2352), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2328), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2239), 1, - anon_sym_let, - ACTIONS(2241), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4027), 1, - sym_expression, - ACTIONS(1821), 2, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53077] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1003), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51119] = 19, + [53115] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2243), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, - anon_sym_let, - ACTIONS(2247), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2355), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3889), 1, + STATE(3582), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [51184] = 18, + [53181] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, + anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, anon_sym_DASH_GT, - ACTIONS(1365), 1, + anon_sym_EQ_GT, + ACTIONS(21), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53243] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, + sym_floating, + ACTIONS(1080), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1373), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(1377), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1379), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, + ACTIONS(2357), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1389), 2, + STATE(3591), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(726), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [51247] = 19, + [53309] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(2251), 1, - anon_sym_let, - ACTIONS(2253), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4219), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51312] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2255), 1, - anon_sym_RBRACE, - ACTIONS(2257), 1, - anon_sym_let, - ACTIONS(2259), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4240), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2227), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51377] = 18, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(987), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53371] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51440] = 19, + [53409] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(957), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2261), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2263), 1, - anon_sym_let, - ACTIONS(2265), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3971), 1, - sym_expression, - ACTIONS(1821), 2, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51505] = 2, + [53447] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 25, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1012), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_or, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [51536] = 18, + [53485] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(2061), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51599] = 8, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(1052), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53547] = 18, ACTIONS(3), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(922), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, + ACTIONS(2359), 1, anon_sym_LPAREN, + ACTIONS(2364), 1, + anon_sym_BANG, + ACTIONS(2367), 1, + aux_sym_type_unit_token1, + ACTIONS(2370), 1, anon_sym__, + ACTIONS(2373), 1, + anon_sym_or, + ACTIONS(2375), 1, + anon_sym_QMARK, + ACTIONS(2381), 1, aux_sym_integer_token1, + ACTIONS(2384), 1, + sym_floating, + ACTIONS(2387), 1, + anon_sym_DQUOTE, + ACTIONS(2390), 1, sym_id, - STATE(1005), 4, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + ACTIONS(2378), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1007), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2099), 12, + ACTIONS(2362), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [51642] = 2, + anon_sym_LT_DASH, + [53611] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 25, + ACTIONS(2205), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2213), 1, anon_sym_BANG, + ACTIONS(2215), 1, anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2225), 1, sym_operator, - sym_macro_id, + ACTIONS(2227), 1, sym_id, - sym_qualified_id, - sym_force_id, - [51673] = 18, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53673] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(2061), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51736] = 8, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(21), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53735] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(926), 2, + STATE(1050), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2103), 12, + ACTIONS(2393), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [51779] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(991), 25, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [51810] = 18, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1096), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_PIPE, - ACTIONS(1371), 1, - anon_sym_forall, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_let, - ACTIONS(1377), 1, - anon_sym_do, - ACTIONS(1379), 1, - anon_sym_with, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - STATE(539), 1, - sym_string, - STATE(1948), 1, - sym_integer, - ACTIONS(1389), 2, - sym_operator, - sym_macro_id, - STATE(925), 2, - sym_expression, - aux_sym_expression_repeat6, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(726), 3, - sym_number, - sym_string_cons, - sym_identifier, - [51873] = 8, + [53779] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(930), 2, + STATE(1047), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2115), 12, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [51916] = 2, + [53823] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 25, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_or, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [51947] = 2, + [53861] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 25, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [51978] = 2, + [53899] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 25, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1029), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [52009] = 2, + [53937] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 25, + ACTIONS(2205), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [53999] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, + anon_sym_forall, + ACTIONS(2071), 1, anon_sym_BANG, + ACTIONS(2073), 1, anon_sym_BANG_LBRACE, + ACTIONS(2075), 1, aux_sym_type_unit_token1, + ACTIONS(2077), 1, sym_type_implicit_var, + ACTIONS(2079), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2083), 1, sym_operator, - sym_macro_id, + ACTIONS(2085), 1, sym_id, - sym_qualified_id, - sym_force_id, - [52040] = 8, + STATE(2883), 1, + sym_primitive_reverse_atom, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_do, + STATE(935), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54061] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(927), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2111), 12, + ACTIONS(2401), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2403), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52083] = 8, + [54105] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(934), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2267), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2269), 12, + ACTIONS(2405), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2407), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52126] = 19, + [54149] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2091), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2271), 1, - anon_sym_RBRACE, - ACTIONS(2273), 1, - anon_sym_let, - ACTIONS(2275), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4035), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(2099), 1, + anon_sym_BANG, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2113), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [52191] = 19, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_or, + STATE(981), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54211] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2277), 1, - anon_sym_RBRACE, - ACTIONS(2279), 1, - anon_sym_let, - ACTIONS(2281), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2409), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3876), 1, + STATE(3964), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [52256] = 8, + [54277] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, + anon_sym_forall, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, + sym_operator, + ACTIONS(2061), 1, + sym_id, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(962), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54339] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(933), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2283), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2285), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [52299] = 19, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2411), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(2289), 1, - anon_sym_let, - ACTIONS(2291), 1, - anon_sym_const, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3880), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [52364] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(971), 25, - anon_sym_LPAREN, + ACTIONS(2413), 12, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [52395] = 8, + [54383] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(929), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2107), 12, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52438] = 2, + [54427] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 25, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_let, anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, sym_operator, - sym_macro_id, sym_id, - sym_qualified_id, - sym_force_id, - [52469] = 8, + [54465] = 8, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + STATE(822), 1, sym_string, - STATE(770), 1, + STATE(824), 1, sym_pattern_var, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(932), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2119), 12, + ACTIONS(2393), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52512] = 8, - ACTIONS(3), 1, + [54509] = 5, + ACTIONS(9), 1, sym_comment, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(935), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 12, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [52555] = 18, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [54547] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, + anon_sym_forall, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, + sym_operator, + ACTIONS(2061), 1, + sym_id, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_or, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54609] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2295), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(385), 1, + ACTIONS(2419), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3686), 1, + STATE(3550), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [52617] = 8, - ACTIONS(3), 1, + [54675] = 5, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1047), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2111), 10, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [52659] = 18, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [54713] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2311), 1, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3416), 1, - sym_expression, - ACTIONS(2309), 2, + anon_sym_RBRACE, + STATE(1008), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54775] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2227), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [52721] = 10, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(1015), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_COLON, - ACTIONS(2315), 1, - anon_sym_AT, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, + STATE(822), 1, sym_string, - STATE(2333), 1, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1620), 2, + STATE(1037), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1737), 9, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 12, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52767] = 18, + [54881] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, + anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [54943] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 16, anon_sym_LPAREN, - ACTIONS(2297), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2299), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2317), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3454), 1, - sym_expression, - ACTIONS(2309), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [52829] = 10, + [54981] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 1, - anon_sym_COLON, - ACTIONS(2321), 1, - anon_sym_AT, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, + STATE(822), 1, sym_string, - STATE(2333), 1, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1624), 2, + STATE(1025), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1743), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2411), 5, anon_sym_LPAREN, anon_sym__, + anon_sym_or, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + ACTIONS(2413), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [55025] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(946), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [55063] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1007), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1745), 9, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 12, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [52875] = 18, + [55107] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(1034), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(2297), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2299), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2323), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3484), 1, - sym_expression, - ACTIONS(2309), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [52937] = 18, + [55145] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, + anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT_DASH, + STATE(1068), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [55207] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2325), 1, + ACTIONS(2421), 1, anon_sym_RPAREN, - STATE(385), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3636), 1, + STATE(3501), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [52999] = 19, - ACTIONS(3), 1, + [55273] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_COLON, - ACTIONS(2331), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2181), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2183), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2337), 1, - anon_sym_AT, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2193), 1, + sym_operator, + ACTIONS(2195), 1, sym_id, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1745), 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(17), 3, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1628), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53063] = 19, - ACTIONS(3), 1, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(950), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [55335] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_BANG, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2351), 1, - anon_sym_COLON, - ACTIONS(2353), 1, - anon_sym_AT, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1633), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53127] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(2351), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1633), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53191] = 18, + [55373] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2355), 1, + ACTIONS(2423), 1, anon_sym_RPAREN, - STATE(385), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(4123), 1, + STATE(3502), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [53253] = 18, + [55439] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_LPAREN, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(1024), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2357), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4188), 1, - sym_expression, - ACTIONS(2309), 2, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [53315] = 18, + [55477] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(1042), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [55515] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2359), 1, + ACTIONS(2425), 1, anon_sym_RPAREN, - STATE(385), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3954), 1, + STATE(4135), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [53377] = 19, + [55581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(1991), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + STATE(822), 1, sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1737), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1526), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53441] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2267), 1, - anon_sym_or, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(907), 1, + STATE(824), 1, sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2269), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1553), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [53505] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, + ACTIONS(2271), 5, anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2117), 1, anon_sym_or, - ACTIONS(2363), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2119), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1558), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53569] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, sym_id, - ACTIONS(2113), 1, - anon_sym_or, - ACTIONS(2365), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2115), 2, + ACTIONS(2273), 12, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1559), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53633] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2105), 1, - anon_sym_or, - ACTIONS(2367), 1, + anon_sym_PIPE, anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2107), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1563), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53697] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, anon_sym_BANG, - ACTIONS(1955), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2109), 1, - anon_sym_or, - ACTIONS(2369), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2111), 2, - anon_sym_EQ, anon_sym_LT_DASH, - STATE(1564), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53761] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_COLON, - ACTIONS(2373), 1, - anon_sym_AT, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1619), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1735), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1737), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [53807] = 19, - ACTIONS(3), 1, + [55625] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(1949), 1, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 16, anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2101), 1, - anon_sym_or, - ACTIONS(2375), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2103), 2, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1568), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53871] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(2097), 1, - anon_sym_or, - ACTIONS(2377), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2099), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1571), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [53935] = 10, + [55663] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2381), 1, - anon_sym_AT, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(822), 1, sym_string, - STATE(2333), 1, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1730), 2, + STATE(1023), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1743), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1745), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [53981] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_COLON, - ACTIONS(2385), 1, - anon_sym_AT, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1731), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, + ACTIONS(2427), 5, anon_sym_LPAREN, anon_sym__, + anon_sym_or, aux_sym_integer_token1, sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 9, + ACTIONS(2429), 12, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [54027] = 10, + [55707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1995), 1, - aux_sym_number_token1, - ACTIONS(2371), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + STATE(822), 1, sym_string, - STATE(2349), 1, + STATE(824), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1619), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1735), 5, + ACTIONS(2267), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(1737), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [54073] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2383), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1731), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 9, + ACTIONS(2269), 12, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [54119] = 18, + [55751] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2387), 1, + ACTIONS(2431), 1, anon_sym_RPAREN, - STATE(385), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3721), 1, + STATE(4418), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [54181] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_or, - ACTIONS(1745), 1, - anon_sym_EQ, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2391), 1, - anon_sym_COLON, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2397), 1, - anon_sym_AT, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1632), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54247] = 18, + [55817] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2399), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3640), 1, - sym_expression, - ACTIONS(2309), 2, + ACTIONS(2047), 1, + anon_sym_BANG, + ACTIONS(2049), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2061), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [54309] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 1, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_or, - ACTIONS(1737), 1, - anon_sym_EQ, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2389), 1, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [55879] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, anon_sym_LPAREN, - ACTIONS(2393), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2401), 1, - anon_sym_COLON, - ACTIONS(2403), 1, - anon_sym_AT, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1635), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54375] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 1, - anon_sym_or, - ACTIONS(1737), 1, - anon_sym_EQ, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(1995), 1, - aux_sym_number_token1, - ACTIONS(2389), 1, + [55917] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(1026), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, anon_sym_LPAREN, - ACTIONS(2393), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2401), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1635), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54441] = 18, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [55955] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(947), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, anon_sym_LPAREN, - ACTIONS(2297), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2299), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2405), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4062), 1, - sym_expression, - ACTIONS(2309), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [54503] = 18, + [55993] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(1065), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, anon_sym_LPAREN, - ACTIONS(2297), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(2299), 1, anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - ACTIONS(2407), 1, - anon_sym_RPAREN, - STATE(385), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4007), 1, - sym_expression, - ACTIONS(2309), 2, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, - sym_number, - sym_string_cons, - sym_identifier, - [54565] = 19, + [56031] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2411), 1, - anon_sym_COLON, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2417), 1, - anon_sym_AT, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(822), 1, sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1745), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1666), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54629] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_COLON, - STATE(907), 1, + STATE(824), 1, sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1184), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1735), 5, + ACTIONS(2433), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(1737), 9, + ACTIONS(2435), 12, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_LT_DASH, @@ -56778,199 +60670,248 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [54673] = 19, - ACTIONS(3), 1, + [56075] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(1067), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(2409), 1, + [56113] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2091), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2419), 1, - anon_sym_COLON, - ACTIONS(2421), 1, - anon_sym_AT, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, + sym_id, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(7), 3, anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1647), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54737] = 18, + anon_sym_or, + STATE(1073), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56175] = 19, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2423), 1, - anon_sym_let, - ACTIONS(2425), 1, - anon_sym_const, - STATE(230), 1, + ACTIONS(2437), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4505), 1, + STATE(3461), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [54799] = 19, - ACTIONS(3), 1, + [56241] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, + ACTIONS(2091), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2419), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, + sym_id, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(11), 3, anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1647), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [54863] = 8, - ACTIONS(3), 1, + anon_sym_or, + STATE(1076), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56303] = 17, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2065), 5, + ACTIONS(2439), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2067), 10, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2442), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + anon_sym_forall, + ACTIONS(2451), 1, anon_sym_BANG, + ACTIONS(2454), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2457), 1, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [54905] = 8, + ACTIONS(2460), 1, + sym_type_implicit_var, + ACTIONS(2463), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2466), 1, + anon_sym_POUND_BANG, + ACTIONS(2469), 1, + sym_operator, + ACTIONS(2472), 1, + sym_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2448), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + STATE(1062), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(973), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56365] = 8, ACTIONS(3), 1, sym_comment, - STATE(967), 1, + STATE(822), 1, sym_string, - STATE(969), 1, + STATE(824), 1, sym_pattern_var, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1058), 2, + STATE(1018), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2093), 5, + ACTIONS(1841), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2095), 10, + ACTIONS(1843), 12, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, @@ -56980,237 +60921,224 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [54947] = 8, - ACTIONS(3), 1, + [56409] = 5, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(1053), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 16, anon_sym_LPAREN, - anon_sym__, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_or, - aux_sym_integer_token1, + sym_operator, sym_id, - ACTIONS(2099), 10, + [56447] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [56485] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, + ACTIONS(1080), 1, anon_sym_DQUOTE, - [54989] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2101), 5, + ACTIONS(2115), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55031] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, + ACTIONS(2119), 1, + anon_sym_PIPE, + ACTIONS(2121), 1, + anon_sym_forall, + ACTIONS(2123), 1, + anon_sym_LBRACK, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, + anon_sym_do, + ACTIONS(2129), 1, + anon_sym_with, + ACTIONS(2475), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, + STATE(1567), 1, sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, + STATE(4227), 1, + sym_expression, + ACTIONS(2131), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55073] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - anon_sym_COLON, - ACTIONS(2429), 1, - anon_sym_AT, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1678), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, + sym_qualified_id, + sym_force_id, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(1737), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55119] = 8, - ACTIONS(3), 1, + sym_identifier, + [56551] = 5, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(991), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2111), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55161] = 8, - ACTIONS(3), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [56589] = 17, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2113), 5, + ACTIONS(2015), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 10, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, anon_sym_BANG, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_EQ, + anon_sym_or, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55203] = 8, + STATE(977), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56651] = 8, ACTIONS(3), 1, sym_comment, - STATE(967), 1, + STATE(822), 1, sym_string, - STATE(969), 1, + STATE(824), 1, sym_pattern_var, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1058), 2, + STATE(1007), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, + aux_sym_pattern_repeat2, + STATE(1063), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2117), 5, + ACTIONS(2477), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2119), 10, + ACTIONS(2479), 12, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, @@ -57220,9572 +61148,9865 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [55245] = 9, - ACTIONS(3), 1, + [56695] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(2431), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1169), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2267), 5, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(1048), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1058), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2269), 9, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55289] = 8, - ACTIONS(3), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [56733] = 17, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2121), 5, + ACTIONS(2481), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2123), 10, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2484), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + anon_sym_forall, + ACTIONS(2493), 1, anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2499), 1, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55331] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2125), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(2502), 1, + sym_type_implicit_var, + ACTIONS(2505), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2508), 1, + anon_sym_POUND_BANG, + ACTIONS(2511), 1, + sym_operator, + ACTIONS(2514), 1, sym_id, - ACTIONS(2127), 10, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2490), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(42), 3, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56795] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2886), 1, + sym_primitive_reverse_atom, + STATE(1055), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55373] = 19, - ACTIONS(3), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + sym_operator, + sym_id, + [56833] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2091), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, sym_id, - ACTIONS(2283), 1, - anon_sym_or, - ACTIONS(2433), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2285), 2, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(13), 3, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1556), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [55437] = 18, - ACTIONS(3), 1, + anon_sym_or, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56895] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2435), 1, + ACTIONS(2015), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2023), 1, anon_sym_BANG, - ACTIONS(2441), 1, + ACTIONS(2025), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2027), 1, aux_sym_type_unit_token1, - ACTIONS(2444), 1, - anon_sym__, - ACTIONS(2447), 1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(19), 3, + anon_sym_EQ, anon_sym_or, - ACTIONS(2449), 1, - anon_sym_QMARK, - ACTIONS(2455), 1, - aux_sym_integer_token1, - ACTIONS(2458), 1, + anon_sym_LT_DASH, + STATE(1000), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [56957] = 19, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(2461), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2464), 1, - sym_id, - STATE(967), 1, + ACTIONS(2115), 1, + anon_sym_LPAREN, + ACTIONS(2119), 1, + anon_sym_PIPE, + ACTIONS(2121), 1, + anon_sym_forall, + ACTIONS(2123), 1, + anon_sym_LBRACK, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, + anon_sym_do, + ACTIONS(2129), 1, + anon_sym_with, + ACTIONS(2517), 1, + anon_sym_RPAREN, + STATE(399), 1, sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2452), 2, + STATE(3430), 1, + sym_expression, + ACTIONS(2131), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, - STATE(1058), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2132), 3, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, - [55499] = 10, - ACTIONS(3), 1, + sym_identifier, + [57023] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2467), 1, - anon_sym_COLON, - ACTIONS(2469), 1, - anon_sym_AT, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1616), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1743), 5, + ACTIONS(2091), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1745), 8, - anon_sym_EQ, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, + anon_sym_forall, + ACTIONS(2099), 1, anon_sym_BANG, + ACTIONS(2101), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55545] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1165), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2283), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, + sym_operator, + ACTIONS(2113), 1, sym_id, - ACTIONS(2285), 9, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(15), 3, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55589] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1164), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2117), 5, - anon_sym_LPAREN, - anon_sym__, anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2119), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55633] = 9, - ACTIONS(3), 1, + STATE(1071), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [57085] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(2475), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1162), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2113), 5, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 9, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55677] = 18, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [57122] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2477), 1, - anon_sym_RPAREN, - STATE(385), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3898), 1, + STATE(4065), 1, sym_expression, - ACTIONS(2309), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [55739] = 18, + [57185] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2479), 1, - anon_sym_RPAREN, - STATE(385), 1, + STATE(484), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(4266), 1, + STATE(718), 1, sym_expression, - ACTIONS(2309), 2, + STATE(1832), 1, + sym_integer, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [55801] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2313), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1620), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55847] = 9, - ACTIONS(3), 1, + [57248] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2481), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1147), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, - [55891] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2427), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1678), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, + ACTIONS(1823), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1737), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55937] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2483), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, + anon_sym_forall, + ACTIONS(1831), 1, + anon_sym_LBRACK, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, + anon_sym_do, + ACTIONS(1837), 1, + anon_sym_with, + STATE(459), 1, sym_string, - STATE(2349), 1, + STATE(703), 1, + sym_expression, + STATE(1876), 1, sym_integer, - STATE(1141), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2111), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, + ACTIONS(1839), 2, + sym_operator, + sym_macro_id, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [55981] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, - anon_sym_COLON, - ACTIONS(2487), 1, - anon_sym_AT, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1679), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1743), 4, - anon_sym_LPAREN, - anon_sym__, aux_sym_integer_token1, + ACTIONS(1335), 3, sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1745), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56027] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2489), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1119), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, + sym_qualified_id, + sym_force_id, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(2101), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56071] = 18, + sym_identifier, + [57311] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2491), 1, - anon_sym_RPAREN, - STATE(385), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(3756), 1, + STATE(702), 1, sym_expression, - ACTIONS(2309), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [56133] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1045), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56175] = 8, - ACTIONS(3), 1, + [57374] = 17, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1046), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2101), 5, + ACTIONS(2519), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 10, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, + anon_sym_forall, + ACTIONS(2527), 1, anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56217] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1051), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2117), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, + sym_operator, + ACTIONS(2541), 1, sym_id, - ACTIONS(2119), 10, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(21), 2, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56259] = 18, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [57435] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2493), 1, - anon_sym_RPAREN, - STATE(385), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(3804), 1, + STATE(700), 1, sym_expression, - ACTIONS(2309), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [56321] = 8, - ACTIONS(3), 1, + [57498] = 5, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1049), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2113), 5, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 10, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56363] = 18, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [57535] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2299), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2301), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2305), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2307), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2495), 1, - anon_sym_RPAREN, - STATE(385), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(3852), 1, + STATE(698), 1, sym_expression, - ACTIONS(2309), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(588), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [56425] = 8, - ACTIONS(3), 1, + [57598] = 5, + ACTIONS(9), 1, sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1053), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2267), 5, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1084), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2269), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56467] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, - aux_sym_number_token1, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2499), 1, - anon_sym_COLON, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1640), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [56531] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1052), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2283), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2285), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56573] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1055), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(1735), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(1737), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56615] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(2349), 1, - sym_integer, - STATE(1048), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56657] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2499), 1, - anon_sym_COLON, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2505), 1, - anon_sym_AT, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1640), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [56721] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2507), 1, - anon_sym_COLON, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1116), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 9, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [56765] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2509), 1, - anon_sym_COLON, - ACTIONS(2511), 1, - anon_sym_AT, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1745), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1713), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [56829] = 17, + [57635] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(259), 1, + STATE(484), 1, sym_string, - STATE(547), 1, + STATE(715), 1, sym_expression, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [56888] = 17, + [57698] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(376), 1, + STATE(484), 1, sym_string, - STATE(596), 1, + STATE(713), 1, sym_expression, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [56947] = 17, + [57761] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2519), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, - anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, anon_sym_forall, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, + sym_operator, + ACTIONS(2541), 1, + sym_id, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1082), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [57822] = 17, + ACTIONS(9), 1, + sym_comment, ACTIONS(2519), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2521), 1, - anon_sym_let, + anon_sym_LBRACE, ACTIONS(2523), 1, - anon_sym_do, - ACTIONS(2525), 1, - anon_sym_with, - STATE(259), 1, - sym_string, - STATE(438), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, + anon_sym_forall, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2541), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [57006] = 17, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [57883] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2551), 1, + anon_sym_let, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2555), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(581), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3303), 1, + STATE(5021), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57065] = 17, + [57946] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2519), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(294), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2541), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [57124] = 17, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(17), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1090), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58007] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2519), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3886), 1, - sym_expression, - ACTIONS(2577), 2, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(2541), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [57183] = 17, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(15), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58068] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2551), 1, + anon_sym_let, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2555), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(581), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3156), 1, + STATE(5009), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57242] = 18, - ACTIONS(3), 1, + [58131] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, + ACTIONS(2519), 1, anon_sym_LPAREN, - ACTIONS(2499), 1, - anon_sym_COLON, - ACTIONS(2501), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, + anon_sym_forall, + ACTIONS(2527), 1, anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, + sym_operator, + ACTIONS(2541), 1, + sym_id, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(13), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1640), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [57303] = 17, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58192] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [58229] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1096), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [58266] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(515), 1, + STATE(484), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4638), 1, + STATE(675), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1832), 1, + sym_integer, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57362] = 17, + [58329] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2519), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, - anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, + anon_sym_forall, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, + sym_operator, + ACTIONS(2541), 1, + sym_id, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(11), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1093), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58390] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [58427] = 17, + ACTIONS(9), 1, + sym_comment, ACTIONS(2519), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2521), 1, - anon_sym_let, + anon_sym_LBRACE, ACTIONS(2523), 1, - anon_sym_do, - ACTIONS(2525), 1, - anon_sym_with, - STATE(259), 1, - sym_string, - STATE(533), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, + anon_sym_forall, + ACTIONS(2527), 1, + anon_sym_BANG, + ACTIONS(2529), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2541), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [57421] = 17, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(7), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1095), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58488] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(21), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58549] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1102), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58610] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58671] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3132), 1, + STATE(666), 1, sym_expression, + STATE(1832), 1, + sym_integer, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57480] = 17, + [58734] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(17), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1104), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58795] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2559), 1, anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(15), 2, + anon_sym_SEMI_SEMI, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [58856] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1077), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [58893] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(1100), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_in, + sym_operator, + sym_id, + [58930] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, + sym_floating, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_PIPE, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(515), 1, + STATE(484), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4694), 1, + STATE(663), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1832), 1, + sym_integer, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57539] = 17, + [58993] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(13), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [59054] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3128), 1, + STATE(662), 1, sym_expression, + STATE(1832), 1, + sym_integer, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57598] = 17, + [59117] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2559), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(11), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1107), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [59178] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2567), 1, + anon_sym_BANG, + ACTIONS(2569), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(7), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1111), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [59239] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN, + ACTIONS(2586), 1, + anon_sym_LBRACE, + ACTIONS(2589), 1, + anon_sym_forall, + ACTIONS(2595), 1, + anon_sym_BANG, + ACTIONS(2598), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2601), 1, + aux_sym_type_unit_token1, + ACTIONS(2604), 1, + sym_type_implicit_var, + ACTIONS(2607), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2610), 1, + anon_sym_POUND_BANG, + ACTIONS(2613), 1, + sym_operator, + ACTIONS(2616), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(42), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2592), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [59300] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, + sym_floating, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + ACTIONS(1823), 1, + anon_sym_LPAREN, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, + anon_sym_forall, + ACTIONS(1831), 1, + anon_sym_LBRACK, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(598), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(3887), 1, + STATE(691), 1, sym_expression, - ACTIONS(2609), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57657] = 17, + [59363] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(515), 1, + STATE(459), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4817), 1, + STATE(687), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57716] = 17, + [59426] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3166), 1, + STATE(684), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57775] = 17, + [59489] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2617), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2621), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2623), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(490), 1, + STATE(459), 1, sym_string, - STATE(1948), 1, - sym_integer, - STATE(4628), 1, + STATE(680), 1, sym_expression, - ACTIONS(2625), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57834] = 17, + [59552] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3169), 1, + STATE(651), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57893] = 17, + [59615] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(515), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4701), 1, + STATE(650), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [57952] = 17, + [59678] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(376), 1, + STATE(507), 1, sym_string, - STATE(475), 1, + STATE(649), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58011] = 17, + [59741] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(376), 1, + STATE(507), 1, sym_string, - STATE(473), 1, + STATE(648), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58070] = 17, + [59804] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(224), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(287), 1, - sym_expression, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2561), 2, + STATE(5063), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58129] = 17, + [59867] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(376), 1, + STATE(507), 1, sym_string, - STATE(471), 1, + STATE(635), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58188] = 17, + [59930] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3175), 1, + STATE(630), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58247] = 17, + [59993] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(376), 1, + STATE(507), 1, sym_string, - STATE(469), 1, + STATE(628), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58306] = 17, + [60056] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(376), 1, + STATE(507), 1, sym_string, - STATE(467), 1, + STATE(625), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58365] = 17, + [60119] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(376), 1, + STATE(484), 1, sym_string, - STATE(465), 1, + STATE(645), 1, sym_expression, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2543), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58424] = 17, + [60182] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3906), 1, + STATE(643), 1, sym_expression, + STATE(1832), 1, + sym_integer, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58483] = 9, - ACTIONS(3), 1, + [60245] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2627), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, + sym_floating, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_PIPE, + ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_let, + ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, + anon_sym_with, + STATE(484), 1, sym_string, - STATE(2333), 1, + STATE(638), 1, + sym_expression, + STATE(1832), 1, sym_integer, - STATE(1611), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2267), 4, - anon_sym_LPAREN, - anon_sym__, + ACTIONS(1821), 2, + sym_operator, + sym_macro_id, + ACTIONS(1251), 3, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, + ACTIONS(1259), 3, sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, + sym_qualified_id, + sym_force_id, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(2269), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + sym_identifier, + [60308] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, + ACTIONS(1255), 1, anon_sym_DQUOTE, - [58526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2629), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(1805), 1, + anon_sym_LPAREN, + ACTIONS(1809), 1, + anon_sym_PIPE, + ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + anon_sym_let, + ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, + anon_sym_with, + STATE(484), 1, sym_string, - STATE(2349), 1, + STATE(633), 1, + sym_expression, + STATE(1832), 1, sym_integer, - STATE(1652), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + ACTIONS(1821), 2, + sym_operator, + sym_macro_id, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [58569] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1259), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(2065), 5, + sym_identifier, + [60371] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, + sym_floating, + ACTIONS(1178), 1, + anon_sym_DQUOTE, + ACTIONS(1749), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2067), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [58610] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2631), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1603), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2283), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2285), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [58653] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3481), 1, + STATE(601), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58712] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2093), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2095), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [58753] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2633), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1651), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2101), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [58796] = 17, + [60434] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(515), 1, + STATE(507), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4625), 1, + STATE(596), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1856), 1, + sym_integer, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58855] = 17, + [60497] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(561), 1, + STATE(507), 1, sym_string, - STATE(783), 1, + STATE(589), 1, sym_expression, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2649), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58914] = 17, + [60560] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(561), 1, + STATE(507), 1, sym_string, - STATE(767), 1, + STATE(586), 1, sym_expression, - STATE(2032), 1, + STATE(1856), 1, sym_integer, - ACTIONS(2649), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [58973] = 17, + [60623] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(561), 1, + STATE(484), 1, sym_string, - STATE(766), 1, + STATE(720), 1, sym_expression, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2649), 2, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59032] = 17, + [60686] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(561), 1, + STATE(579), 1, sym_string, - STATE(763), 1, - sym_expression, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2649), 2, + STATE(3671), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59091] = 17, + [60749] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(561), 1, + STATE(581), 1, sym_string, - STATE(761), 1, - sym_expression, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2649), 2, + STATE(5017), 1, + sym_expression, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59150] = 9, + [60812] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(1849), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2637), 1, anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2645), 1, + anon_sym_AT, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1645), 2, + ACTIONS(1851), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1582), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2117), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2119), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [59193] = 17, + [60879] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3478), 1, + STATE(492), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59252] = 17, - ACTIONS(9), 1, + [60942] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, + ACTIONS(1841), 1, + anon_sym_or, ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, - anon_sym_PIPE, ACTIONS(2639), 1, - anon_sym_forall, + anon_sym_BANG, ACTIONS(2641), 1, - anon_sym_LBRACK, + aux_sym_type_unit_token1, ACTIONS(2643), 1, - anon_sym_let, - ACTIONS(2645), 1, - anon_sym_do, + anon_sym__, ACTIONS(2647), 1, - anon_sym_with, - STATE(561), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2659), 1, + anon_sym_COLON, + ACTIONS(2661), 1, + anon_sym_AT, + STATE(1295), 1, sym_string, - STATE(759), 1, - sym_expression, - STATE(2032), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_EQ, ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(649), 3, + STATE(1788), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [59311] = 17, - ACTIONS(9), 1, + [61009] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2659), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(2032), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(4620), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1788), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [59370] = 17, + [61076] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3187), 1, + STATE(495), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59429] = 17, + [61139] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3126), 1, + STATE(499), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59488] = 17, + [61202] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 15, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4616), 1, - sym_expression, - ACTIONS(2593), 2, sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [59547] = 17, + [61239] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1146), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3211), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [59606] = 17, + [61276] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61313] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1148), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61350] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61387] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61424] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1150), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61461] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(1151), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [61498] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, + sym_floating, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(259), 1, + STATE(459), 1, sym_string, - STATE(537), 1, + STATE(592), 1, sym_expression, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59665] = 17, + [61561] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(259), 1, + STATE(459), 1, sym_string, - STATE(429), 1, + STATE(588), 1, sym_expression, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59724] = 17, + [61624] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(598), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(3883), 1, + STATE(584), 1, sym_expression, - ACTIONS(2609), 2, + STATE(1876), 1, + sym_integer, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59783] = 17, + [61687] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(224), 1, + STATE(459), 1, sym_string, - STATE(302), 1, + STATE(546), 1, sym_expression, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - ACTIONS(2561), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59842] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1589), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2119), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [59885] = 17, + [61750] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3343), 1, + STATE(778), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [59944] = 8, - ACTIONS(3), 1, + [61813] = 18, + ACTIONS(9), 1, sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, + ACTIONS(1414), 1, anon_sym_DQUOTE, - [59985] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2655), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(1855), 1, + anon_sym_LPAREN, + ACTIONS(1859), 1, + anon_sym_PIPE, + ACTIONS(1861), 1, + anon_sym_forall, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, + anon_sym_do, + ACTIONS(1869), 1, + anon_sym_with, + STATE(706), 1, sym_string, - STATE(2349), 1, + STATE(780), 1, + sym_expression, + STATE(1902), 1, sym_integer, - STATE(1650), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2111), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + ACTIONS(1871), 2, + sym_operator, + sym_macro_id, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [60028] = 17, + aux_sym_integer_token1, + ACTIONS(1418), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(733), 4, + sym_handler, + sym_number, + sym_string_cons, + sym_identifier, + [61876] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(224), 1, + STATE(706), 1, sym_string, - STATE(280), 1, + STATE(781), 1, sym_expression, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2561), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60087] = 17, + [61939] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(515), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4646), 1, + STATE(783), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60146] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2657), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1649), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [60189] = 17, + [62002] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3123), 1, + STATE(490), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60248] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2101), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [60289] = 17, + [62065] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(515), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4824), 1, + STATE(798), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60348] = 19, - ACTIONS(3), 1, + [62128] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2097), 1, - anon_sym_or, - ACTIONS(2099), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2659), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(1859), 1, + anon_sym_PIPE, + ACTIONS(1861), 1, + anon_sym_forall, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, + anon_sym_do, + ACTIONS(1869), 1, + anon_sym_with, + STATE(706), 1, sym_string, - STATE(2349), 1, + STATE(804), 1, + sym_expression, + STATE(1902), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(1871), 2, + sym_operator, + sym_macro_id, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, - STATE(1753), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1418), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, - [60411] = 17, + sym_identifier, + [62191] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2663), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2667), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2671), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2673), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2675), 1, anon_sym_with, - STATE(224), 1, + STATE(612), 1, sym_string, - STATE(310), 1, - sym_expression, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2561), 2, + STATE(3320), 1, + sym_expression, + ACTIONS(2677), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(774), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60470] = 9, - ACTIONS(3), 1, + [62254] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2661), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1585), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2115), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [60513] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2679), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2681), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2683), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2685), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2687), 1, + anon_sym_let, + ACTIONS(2689), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2691), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(533), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3471), 1, + STATE(3316), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2693), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(574), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60572] = 17, + [62317] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(515), 1, + STATE(706), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4649), 1, + STATE(788), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60631] = 17, + [62380] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3915), 1, + STATE(5065), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60690] = 19, - ACTIONS(3), 1, + [62443] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2101), 1, - anon_sym_or, - ACTIONS(2103), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2663), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(1859), 1, + anon_sym_PIPE, + ACTIONS(1861), 1, + anon_sym_forall, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, + anon_sym_do, + ACTIONS(1869), 1, + anon_sym_with, + STATE(706), 1, sym_string, - STATE(2349), 1, + STATE(777), 1, + sym_expression, + STATE(1902), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(1871), 2, + sym_operator, + sym_macro_id, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, - STATE(1752), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1418), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, - [60753] = 17, + sym_identifier, + [62506] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(392), 1, + STATE(579), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3916), 1, + STATE(4415), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60812] = 17, + [62569] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(259), 1, + STATE(581), 1, sym_string, - STATE(433), 1, - sym_expression, - STATE(1667), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4772), 1, + sym_expression, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60871] = 17, + [62632] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2697), 1, + anon_sym_COLON, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(2703), 1, + anon_sym_AT, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(1851), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1605), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [62699] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(2705), 1, + anon_sym_COLON, + ACTIONS(2707), 1, + anon_sym_AT, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1596), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [62766] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(598), 1, + STATE(581), 1, sym_string, - STATE(1667), 1, + STATE(1902), 1, sym_integer, - STATE(3467), 1, + STATE(4831), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60930] = 17, + [62829] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4607), 1, + STATE(4250), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [60989] = 17, + [62892] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(515), 1, + STATE(581), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(4704), 1, + STATE(4850), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61048] = 17, + [62955] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(224), 1, + STATE(579), 1, sym_string, - STATE(275), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(4236), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61107] = 8, - ACTIONS(3), 1, + [63018] = 17, + ACTIONS(9), 1, sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2105), 5, + ACTIONS(2725), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 9, - anon_sym_EQ, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(15), 2, + anon_sym_EQ, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [61148] = 9, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [63079] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1646), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2113), 5, - anon_sym_LPAREN, - anon_sym__, + ACTIONS(1841), 1, anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 8, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, + ACTIONS(2647), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - [61191] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2111), 9, - anon_sym_EQ, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [61232] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(2705), 1, + anon_sym_COLON, + STATE(1208), 1, sym_pattern_var, - STATE(908), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1530), 2, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1596), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2113), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [61273] = 17, + [63146] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4603), 1, + STATE(4168), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61332] = 17, + [63209] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(515), 1, + STATE(581), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(4835), 1, + STATE(4877), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61391] = 17, + [63272] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(259), 1, + STATE(322), 1, sym_string, - STATE(431), 1, + STATE(368), 1, sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61450] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2117), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2119), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [61491] = 17, + [63335] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(598), 1, + STATE(579), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3834), 1, + STATE(4152), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61550] = 17, + [63398] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(1759), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1763), 1, anon_sym_with, - STATE(598), 1, + STATE(507), 1, sym_string, - STATE(1667), 1, + STATE(1856), 1, sym_integer, - STATE(3463), 1, + STATE(2020), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61609] = 17, + [63461] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(259), 1, + STATE(322), 1, sym_string, - STATE(540), 1, + STATE(362), 1, sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61668] = 17, + [63524] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1753), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1755), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1757), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1759), 1, + anon_sym_let, + ACTIONS(1761), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1763), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(507), 1, sym_string, - STATE(1717), 1, + STATE(1856), 1, sym_integer, - STATE(3096), 1, + STATE(2014), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1765), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(644), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61727] = 17, + [63587] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3079), 1, + STATE(357), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61786] = 17, + [63650] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3069), 1, + STATE(354), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61845] = 19, - ACTIONS(3), 1, + [63713] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2109), 1, - anon_sym_or, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2667), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(2751), 1, + anon_sym_PIPE, + ACTIONS(2753), 1, + anon_sym_forall, + ACTIONS(2755), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, + anon_sym_do, + ACTIONS(2761), 1, + anon_sym_with, + STATE(365), 1, sym_string, - STATE(2349), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1963), 2, + STATE(4386), 1, + sym_expression, + ACTIONS(2763), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, - STATE(1765), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, - [61908] = 17, + sym_identifier, + [63776] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3436), 1, + STATE(4385), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [61967] = 19, - ACTIONS(3), 1, + [63839] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2105), 1, - anon_sym_or, - ACTIONS(2107), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2669), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(2751), 1, + anon_sym_PIPE, + ACTIONS(2753), 1, + anon_sym_forall, + ACTIONS(2755), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, + anon_sym_do, + ACTIONS(2761), 1, + anon_sym_with, + STATE(365), 1, sym_string, - STATE(2349), 1, + STATE(1567), 1, sym_integer, - ACTIONS(1963), 2, + STATE(4374), 1, + sym_expression, + ACTIONS(2763), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, - STATE(1757), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, + aux_sym_integer_token1, + ACTIONS(1084), 3, + sym_id, + sym_qualified_id, + sym_force_id, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, - [62030] = 17, + sym_identifier, + [63902] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3434), 1, + STATE(4369), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62089] = 17, + [63965] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3030), 1, + STATE(3273), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62148] = 17, + [64028] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3048), 1, + STATE(4585), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62207] = 17, + [64091] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3105), 1, + STATE(433), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62266] = 17, + [64154] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(259), 1, + STATE(365), 1, sym_string, - STATE(543), 1, - sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4583), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62325] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2121), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2123), 9, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [62366] = 17, + [64217] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(531), 1, + STATE(486), 1, sym_string, - STATE(794), 1, - sym_expression, - STATE(1948), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4582), 1, + sym_expression, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62425] = 17, + [64280] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(259), 1, + STATE(486), 1, sym_string, - STATE(426), 1, - sym_expression, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4077), 1, + sym_expression, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62484] = 17, + [64343] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2765), 1, + anon_sym_LPAREN, + ACTIONS(2768), 1, + anon_sym_LBRACE, + ACTIONS(2771), 1, + anon_sym_forall, + ACTIONS(2777), 1, + anon_sym_BANG, + ACTIONS(2780), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2783), 1, + aux_sym_type_unit_token1, + ACTIONS(2786), 1, + sym_type_implicit_var, + ACTIONS(2789), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2792), 1, + anon_sym_POUND_BANG, + ACTIONS(2795), 1, + sym_operator, + ACTIONS(2798), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(42), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2774), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [64404] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(531), 1, + STATE(581), 1, sym_string, - STATE(791), 1, - sym_expression, - STATE(1948), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4898), 1, + sym_expression, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62543] = 17, + [64467] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(598), 1, + STATE(399), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(4405), 1, + STATE(4358), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62602] = 17, + [64530] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(531), 1, + STATE(399), 1, sym_string, - STATE(788), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4355), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62661] = 17, + [64593] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(561), 1, + STATE(579), 1, sym_string, - STATE(789), 1, - sym_expression, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2649), 2, + STATE(4059), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62720] = 17, + [64656] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(531), 1, + STATE(399), 1, sym_string, - STATE(785), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4325), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62779] = 17, + [64719] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2663), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2665), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2667), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2669), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2671), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2673), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2675), 1, anon_sym_with, - STATE(531), 1, + STATE(612), 1, sym_string, - STATE(782), 1, - sym_expression, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2685), 2, + STATE(3370), 1, + sym_expression, + ACTIONS(2677), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(774), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62838] = 17, + [64782] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(515), 1, + STATE(399), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4598), 1, + STATE(4347), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [62897] = 19, + [64845] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2113), 1, - anon_sym_or, - ACTIONS(2115), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2687), 1, + ACTIONS(2801), 1, anon_sym_COLON, - STATE(1026), 1, + ACTIONS(2803), 1, + anon_sym_AT, + STATE(1208), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1741), 2, + STATE(1684), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [62960] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, + ACTIONS(1849), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1851), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(1961), 1, anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2117), 1, - anon_sym_or, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2689), 1, + [64892] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 1, anon_sym_COLON, - STATE(1026), 1, + ACTIONS(2807), 1, + anon_sym_AT, + STATE(1208), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1740), 2, + STATE(1685), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [63023] = 8, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [64939] = 10, ACTIONS(3), 1, sym_comment, - STATE(907), 1, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2805), 1, + anon_sym_COLON, + STATE(1208), 1, sym_pattern_var, - STATE(908), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1530), 2, + STATE(1685), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2125), 5, + ACTIONS(1841), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2127), 9, - anon_sym_EQ, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [63064] = 17, + [64986] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(531), 1, + STATE(322), 1, sym_string, - STATE(780), 1, + STATE(395), 1, sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63123] = 17, + [65049] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, ACTIONS(1809), 1, - anon_sym_forall, + anon_sym_PIPE, ACTIONS(1811), 1, + anon_sym_forall, + ACTIONS(1813), 1, anon_sym_LBRACK, ACTIONS(1815), 1, - anon_sym_do, + anon_sym_let, ACTIONS(1817), 1, + anon_sym_do, + ACTIONS(1819), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(484), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3764), 1, + STATE(2008), 1, sym_expression, ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63182] = 17, + [65112] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(392), 1, + STATE(322), 1, sym_string, - STATE(1879), 1, - sym_integer, - STATE(3930), 1, + STATE(391), 1, sym_expression, - ACTIONS(2577), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63241] = 17, + [65175] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(1805), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(1809), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(1811), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(1813), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(1815), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(1817), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(1819), 1, anon_sym_with, - STATE(561), 1, + STATE(484), 1, sym_string, - STATE(787), 1, - sym_expression, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2649), 2, + STATE(2013), 1, + sym_expression, + ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(705), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63300] = 17, + [65238] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(259), 1, + STATE(322), 1, sym_string, - STATE(618), 1, + STATE(380), 1, sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63359] = 17, + [65301] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(259), 1, + STATE(322), 1, sym_string, - STATE(621), 1, + STATE(372), 1, sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63418] = 17, + [65364] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(561), 1, + STATE(579), 1, sym_string, - STATE(786), 1, - sym_expression, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2649), 2, + STATE(4336), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63477] = 17, - ACTIONS(9), 1, + [65427] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1849), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2811), 1, + anon_sym_COLON, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(2817), 1, + anon_sym_AT, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(4018), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1851), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1793), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [65494] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(2819), 1, + anon_sym_COLON, + ACTIONS(2821), 1, + anon_sym_AT, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(1843), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1795), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [63536] = 17, + [65561] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(2819), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(1843), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1795), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [65628] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(561), 1, + STATE(365), 1, sym_string, - STATE(784), 1, - sym_expression, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2649), 2, + STATE(4299), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63595] = 17, + [65691] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4836), 1, + STATE(4298), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63654] = 17, + [65754] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4710), 1, + STATE(742), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63713] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2691), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1642), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2283), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2285), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [63756] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2693), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1639), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2267), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2269), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [63799] = 17, + [65817] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(598), 1, + STATE(365), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(4164), 1, + STATE(4280), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63858] = 17, + [65880] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(259), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(623), 1, - sym_expression, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4273), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [63917] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1658), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2267), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2269), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [63960] = 17, + [65943] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(515), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - STATE(4765), 1, + STATE(3177), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64019] = 17, + [66006] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(561), 1, + STATE(397), 1, sym_string, - STATE(773), 1, + STATE(803), 1, sym_expression, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2649), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64078] = 17, + [66069] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(224), 1, + STATE(399), 1, sym_string, - STATE(427), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(4260), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64137] = 19, - ACTIONS(3), 1, + [66132] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2283), 1, - anon_sym_or, - ACTIONS(2285), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2697), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1728), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [64200] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(259), 1, + STATE(399), 1, sym_string, - STATE(625), 1, - sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4252), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64259] = 17, + [66195] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(392), 1, + STATE(399), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3837), 1, + STATE(4247), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64318] = 17, + [66258] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(392), 1, + STATE(399), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(4163), 1, + STATE(4241), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64377] = 9, + [66321] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2823), 1, anon_sym_COLON, - STATE(1009), 1, + ACTIONS(2825), 1, + anon_sym_AT, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1653), 2, + STATE(1746), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2107), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1849), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1851), 9, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [64420] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2267), 1, - anon_sym_or, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2701), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1721), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [64483] = 17, + [66368] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2827), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(2833), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3838), 1, - sym_expression, - ACTIONS(2609), 2, + ACTIONS(2839), 1, + anon_sym_BANG, + ACTIONS(2842), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2845), 1, + aux_sym_type_unit_token1, + ACTIONS(2848), 1, + sym_type_implicit_var, + ACTIONS(2851), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2854), 1, + anon_sym_POUND_BANG, + ACTIONS(2857), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2860), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [64542] = 9, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(42), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2836), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66429] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 1, + ACTIONS(2863), 1, anon_sym_COLON, - STATE(1050), 1, + ACTIONS(2865), 1, + anon_sym_AT, + STATE(1233), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1657), 2, + STATE(1745), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2283), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2285), 9, - anon_sym_COMMA, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [64585] = 17, + [66476] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(7), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1240), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66537] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(259), 1, + STATE(397), 1, sym_string, - STATE(553), 1, + STATE(756), 1, sym_expression, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64644] = 9, + [66600] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2863), 1, anon_sym_COLON, - STATE(1050), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1678), 2, + STATE(1745), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1737), 9, - anon_sym_COMMA, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [64687] = 9, - ACTIONS(3), 1, + [66647] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2705), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1644), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, + ACTIONS(2867), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2111), 9, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(11), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1244), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66708] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [64730] = 17, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(7), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1241), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66769] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, + anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(11), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1178), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66830] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(13), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66891] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, + anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(13), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [66952] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3908), 1, + STATE(512), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64789] = 18, - ACTIONS(3), 1, + [67015] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2707), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, + ACTIONS(2751), 1, + anon_sym_PIPE, + ACTIONS(2753), 1, + anon_sym_forall, + ACTIONS(2755), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, + anon_sym_do, + ACTIONS(2761), 1, + anon_sym_with, + STATE(365), 1, sym_string, - STATE(2333), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2269), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + STATE(4480), 1, + sym_expression, + ACTIONS(2763), 2, + sym_operator, + sym_macro_id, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, - STATE(1746), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [64850] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1638), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, - anon_sym_LPAREN, - anon_sym__, aux_sym_integer_token1, + ACTIONS(1084), 3, sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, + sym_qualified_id, + sym_force_id, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, - ACTIONS(2103), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, + sym_identifier, + [67078] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [64893] = 17, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(15), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67139] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(17), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1246), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67200] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67261] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1249), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67322] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3273), 1, + STATE(1841), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [64952] = 17, + [67385] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2875), 1, + anon_sym_BANG, + ACTIONS(2877), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(21), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1199), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67446] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4593), 1, + STATE(760), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65011] = 9, - ACTIONS(3), 1, + [67509] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2711), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1637), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, + ACTIONS(2891), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2099), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2894), 1, + anon_sym_LBRACE, + ACTIONS(2897), 1, + anon_sym_forall, + ACTIONS(2903), 1, anon_sym_BANG, + ACTIONS(2906), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2909), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [65054] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2912), 1, + sym_type_implicit_var, + ACTIONS(2915), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2918), 1, + anon_sym_POUND_BANG, + ACTIONS(2921), 1, + sym_operator, + ACTIONS(2924), 1, sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2713), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2285), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1747), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [65115] = 17, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(42), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + ACTIONS(2900), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [67570] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(515), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - STATE(4739), 1, + STATE(4516), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65174] = 17, + [67633] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2617), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2623), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(490), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - STATE(4656), 1, + STATE(3221), 1, sym_expression, - ACTIONS(2625), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65233] = 17, + [67696] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(259), 1, + STATE(579), 1, sym_string, - STATE(627), 1, - sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + STATE(4219), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65292] = 17, + [67759] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(259), 1, + STATE(706), 1, sym_string, - STATE(629), 1, + STATE(769), 1, sym_expression, - STATE(1667), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2527), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65351] = 17, + [67822] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(1833), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1837), 1, anon_sym_with, - STATE(598), 1, + STATE(459), 1, sym_string, - STATE(1667), 1, + STATE(1876), 1, sym_integer, - STATE(4101), 1, + STATE(1968), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65410] = 17, + [67885] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(598), 1, + STATE(706), 1, sym_string, - STATE(1667), 1, - sym_integer, - STATE(4155), 1, + STATE(766), 1, sym_expression, - ACTIONS(2609), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65469] = 17, + [67948] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1325), 1, + anon_sym_handler, + ACTIONS(1329), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1823), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1827), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1829), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1833), 1, + anon_sym_let, + ACTIONS(1835), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1837), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(459), 1, sym_string, - STATE(1717), 1, + STATE(1876), 1, sym_integer, - STATE(3039), 1, + STATE(2002), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1839), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1327), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1335), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(660), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65528] = 17, + [68011] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3829), 1, + STATE(764), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65587] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2419), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1647), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [65648] = 17, + [68074] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3192), 1, + STATE(758), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1902), 1, + sym_integer, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65707] = 17, + [68137] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2551), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2555), 1, anon_sym_with, - STATE(515), 1, + STATE(581), 1, sym_string, - STATE(2032), 1, + STATE(1902), 1, sym_integer, - STATE(4660), 1, + STATE(4804), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65766] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2715), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2119), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1758), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [65827] = 17, + [68200] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(4100), 1, + STATE(4194), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65886] = 17, + [68263] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4718), 1, + STATE(4193), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [65945] = 17, + [68326] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3141), 1, + STATE(4178), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66004] = 17, + [68389] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(598), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(1667), 1, + STATE(1647), 1, sym_integer, - STATE(3933), 1, + STATE(4171), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66063] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2717), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2115), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1760), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [66124] = 17, + [68452] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(392), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(4146), 1, + STATE(3226), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66183] = 17, + [68515] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2617), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2621), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2623), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(490), 1, + STATE(399), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - STATE(4758), 1, + STATE(4159), 1, sym_expression, - ACTIONS(2625), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66242] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1736), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2099), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66285] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1744), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2103), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66328] = 17, + [68578] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3824), 1, + STATE(4155), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66387] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1745), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2111), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66430] = 17, + [68641] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3822), 1, + STATE(4147), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66489] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1756), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2107), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66532] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1761), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2115), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66575] = 17, + [68704] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3042), 1, + STATE(4143), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66634] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2729), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2119), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1755), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [66695] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2731), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2115), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1748), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [66756] = 17, + [68767] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4707), 1, + STATE(423), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66815] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2733), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1583), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2119), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [66858] = 17, + [68830] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3025), 1, + STATE(4126), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66917] = 17, + [68893] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(531), 1, + STATE(397), 1, sym_string, - STATE(715), 1, + STATE(426), 1, sym_expression, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2685), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [66976] = 17, + [68956] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4703), 1, + STATE(4107), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67035] = 17, + [69019] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4588), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [67094] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, - anon_sym_LPAREN, - ACTIONS(2673), 1, - anon_sym_PIPE, - ACTIONS(2675), 1, - anon_sym_forall, - ACTIONS(2677), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_let, - ACTIONS(2681), 1, - anon_sym_do, - ACTIONS(2683), 1, - anon_sym_with, - STATE(531), 1, - sym_string, - STATE(690), 1, + STATE(4106), 1, sym_expression, - STATE(1948), 1, - sym_integer, - ACTIONS(2685), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67153] = 17, + [69082] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2725), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, - anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, anon_sym_forall, - ACTIONS(2677), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_let, - ACTIONS(2681), 1, - anon_sym_do, - ACTIONS(2683), 1, - anon_sym_with, - STATE(531), 1, - sym_string, - STATE(716), 1, - sym_expression, - STATE(1948), 1, - sym_integer, - ACTIONS(2685), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - [67212] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, + ACTIONS(2733), 1, + anon_sym_BANG, ACTIONS(2735), 1, - anon_sym_LPAREN, + anon_sym_BANG_LBRACE, ACTIONS(2737), 1, - anon_sym_PIPE, + aux_sym_type_unit_token1, ACTIONS(2739), 1, - anon_sym_forall, + sym_type_implicit_var, ACTIONS(2741), 1, - anon_sym_LBRACK, + anon_sym_POUND_BANG_LPAREN, ACTIONS(2743), 1, - anon_sym_let, + anon_sym_POUND_BANG, ACTIONS(2745), 1, - anon_sym_do, + sym_operator, ACTIONS(2747), 1, - anon_sym_with, - STATE(545), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4492), 1, - sym_expression, - ACTIONS(2749), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(704), 3, - sym_number, - sym_string_cons, - sym_identifier, - [67271] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 1, - anon_sym_or, - ACTIONS(1737), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(17), 2, anon_sym_EQ, - ACTIONS(1955), 1, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1277), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [69143] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, + anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, sym_id, - ACTIONS(2389), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [69204] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - ACTIONS(2401), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1635), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [67334] = 17, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1281), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [69265] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(531), 1, + STATE(365), 1, sym_string, - STATE(682), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4095), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67393] = 17, + [69328] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(531), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(663), 1, - sym_expression, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4087), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67452] = 17, + [69391] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2733), 1, + anon_sym_BANG, + ACTIONS(2735), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(21), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [69452] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(4145), 1, + STATE(3222), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67511] = 17, + [69515] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(531), 1, + STATE(399), 1, sym_string, - STATE(648), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4075), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67570] = 17, + [69578] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3866), 1, + STATE(4071), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67629] = 17, + [69641] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(531), 1, + STATE(399), 1, sym_string, - STATE(717), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4062), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67688] = 17, + [69704] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(531), 1, + STATE(397), 1, sym_string, - STATE(645), 1, + STATE(438), 1, sym_expression, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2685), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67747] = 17, + [69767] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(531), 1, + STATE(579), 1, sym_string, - STATE(641), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(4047), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67806] = 17, + [69830] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4782), 1, + STATE(3759), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67865] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2751), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1770), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2283), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2285), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [67908] = 17, + [69893] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4711), 1, + STATE(4019), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [67967] = 17, + [69956] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(531), 1, + STATE(365), 1, sym_string, - STATE(720), 1, - sym_expression, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2685), 2, + STATE(3754), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68026] = 17, + [70019] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3134), 1, + STATE(4018), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68085] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2753), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1766), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2267), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2269), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [68128] = 17, + [70082] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(392), 1, + STATE(397), 1, sym_string, - STATE(1879), 1, - sym_integer, - STATE(3830), 1, + STATE(452), 1, sym_expression, - ACTIONS(2577), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68187] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2755), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2107), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1763), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [68248] = 17, + [70145] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3870), 1, + STATE(4006), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68307] = 17, + [70208] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2675), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2677), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_let, - ACTIONS(2681), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2683), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(531), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(722), 1, - sym_expression, - STATE(1948), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2685), 2, + STATE(3998), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(741), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68366] = 9, + [70271] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, + ACTIONS(1845), 1, + aux_sym_number_token1, + ACTIONS(2927), 1, anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1731), 2, + STATE(1627), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1737), 9, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -66793,159 +71014,117 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [68409] = 17, + [70318] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3694), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [68468] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1929), 1, anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + STATE(379), 1, sym_string, - STATE(2032), 1, + STATE(1647), 1, sym_integer, - STATE(4693), 1, + STATE(3246), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68527] = 18, + [70381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2757), 1, + ACTIONS(2927), 1, anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, + ACTIONS(2929), 1, + anon_sym_AT, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1749), 2, + STATE(1627), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [68588] = 9, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [70428] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2931), 1, anon_sym_COLON, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(2933), 1, + anon_sym_AT, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1619), 2, + STATE(1622), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1735), 5, + ACTIONS(1849), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(1737), 8, + ACTIONS(1851), 9, + anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, @@ -66954,6031 +71133,7303 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [68631] = 17, + [70475] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2543), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2545), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2547), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2549), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2551), 1, + anon_sym_let, + ACTIONS(2553), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2555), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(581), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3027), 1, + STATE(4855), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2557), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(741), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68690] = 17, + [70538] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4708), 1, + STATE(3982), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68749] = 17, + [70601] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4661), 1, + STATE(534), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68808] = 17, + [70664] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3031), 1, + STATE(3968), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [68867] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2759), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2103), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1751), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [68928] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - ACTIONS(2761), 1, - anon_sym_COLON, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2099), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1769), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [68989] = 17, + [70727] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(515), 1, + STATE(399), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4676), 1, + STATE(3973), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69048] = 17, + [70790] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4674), 1, + STATE(3724), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69107] = 17, + [70853] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1172), 1, + anon_sym_handler, + ACTIONS(1176), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1178), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2935), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2937), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2939), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2941), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2943), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2945), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2947), 1, anon_sym_with, - STATE(598), 1, + STATE(443), 1, sym_string, - STATE(1667), 1, + STATE(1856), 1, sym_integer, - STATE(3780), 1, + STATE(3316), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2949), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1174), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1182), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(658), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69166] = 17, + [70916] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(515), 1, + STATE(322), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4675), 1, + STATE(1704), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69225] = 17, + [70979] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3052), 1, + STATE(3719), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69284] = 17, + [71042] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(392), 1, + STATE(397), 1, sym_string, - STATE(1879), 1, + STATE(1647), 1, sym_integer, - STATE(3779), 1, + STATE(1852), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69343] = 17, + [71105] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(515), 1, + STATE(579), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4580), 1, + STATE(3959), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69402] = 17, + [71168] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(224), 1, + STATE(365), 1, sym_string, - STATE(355), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(3909), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69461] = 17, + [71231] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(598), 1, + STATE(486), 1, sym_string, - STATE(1667), 1, + STATE(1832), 1, sym_integer, - STATE(3776), 1, + STATE(3908), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69520] = 17, + [71294] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3772), 1, + STATE(3696), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69579] = 17, + [71357] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(224), 1, + STATE(365), 1, sym_string, - STATE(353), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(3691), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69638] = 17, + [71420] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4591), 1, + STATE(3660), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69697] = 17, + [71483] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4641), 1, + STATE(3655), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69756] = 17, + [71546] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4635), 1, + STATE(3654), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69815] = 17, + [71609] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [71646] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3771), 1, + STATE(3986), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69874] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1655), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2119), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [69917] = 17, + [71709] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(515), 1, + STATE(322), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4581), 1, + STATE(727), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [69976] = 17, + [71772] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1865), 1, + anon_sym_let, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1869), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(706), 1, sym_string, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - STATE(3068), 1, + STATE(2090), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70035] = 17, + [71835] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3074), 1, + STATE(728), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70094] = 17, + [71898] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1406), 1, + anon_sym_handler, + ACTIONS(1410), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1414), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1859), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1861), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(1865), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1867), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1869), 1, anon_sym_with, - STATE(224), 1, + STATE(706), 1, sym_string, - STATE(351), 1, - sym_expression, - STATE(1717), 1, + STATE(1902), 1, sym_integer, - ACTIONS(2561), 2, + STATE(2064), 1, + sym_expression, + ACTIONS(1871), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1408), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1418), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(733), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70153] = 17, + [71961] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1317), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [71998] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(4140), 1, + STATE(730), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70212] = 17, + [72061] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4614), 1, + STATE(3612), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70271] = 17, + [72124] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4840), 1, + STATE(487), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70330] = 17, + [72187] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3766), 1, + STATE(3607), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70389] = 17, + [72250] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [72287] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(224), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(346), 1, - sym_expression, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2561), 2, + STATE(3295), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70448] = 17, + [72350] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4590), 1, + STATE(3606), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70507] = 17, + [72413] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3150), 1, + STATE(731), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70566] = 17, + [72476] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1328), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [72513] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4794), 1, + STATE(3888), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70625] = 17, + [72576] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3118), 1, + STATE(3883), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70684] = 17, + [72639] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [72676] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3078), 1, + STATE(3277), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70743] = 17, + [72739] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(598), 1, + STATE(579), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(4090), 1, + STATE(3742), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70802] = 17, + [72802] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2515), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2517), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2519), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2523), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2525), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(259), 1, + STATE(365), 1, sym_string, - STATE(436), 1, - sym_expression, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2527), 2, + STATE(3788), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70861] = 17, + [72865] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3136), 1, + STATE(3594), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70920] = 17, + [72928] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1232), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [72965] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(21), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [73026] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1335), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [73063] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3080), 1, + STATE(3786), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [70979] = 17, + [73126] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1799), 1, anon_sym_with, - ACTIONS(2545), 1, + ACTIONS(1929), 1, anon_sym_let, - STATE(230), 1, + STATE(379), 1, sym_string, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - STATE(3084), 1, + STATE(4740), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71038] = 17, + [73189] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(1785), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(1789), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(1791), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(1793), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(1797), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(1799), 1, anon_sym_with, - STATE(224), 1, + ACTIONS(1929), 1, + anon_sym_let, + STATE(379), 1, sym_string, - STATE(349), 1, - sym_expression, - STATE(1717), 1, + STATE(1647), 1, sym_integer, - ACTIONS(2561), 2, + STATE(3292), 1, + sym_expression, + ACTIONS(1803), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(475), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71097] = 17, + [73252] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(598), 1, + STATE(365), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3745), 1, + STATE(3766), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71156] = 17, + [73315] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(1340), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [73352] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(1889), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(1893), 1, anon_sym_with, - STATE(515), 1, + STATE(397), 1, sym_string, - STATE(2032), 1, - sym_integer, - STATE(4729), 1, + STATE(536), 1, sym_expression, - ACTIONS(2593), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71215] = 17, + [73415] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(392), 1, + STATE(322), 1, sym_string, - STATE(1879), 1, - sym_integer, - STATE(3744), 1, + STATE(450), 1, sym_expression, - ACTIONS(2577), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71274] = 17, + [73478] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1341), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [73539] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(19), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [73600] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2617), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2621), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2623), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(490), 1, + STATE(579), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - STATE(4716), 1, + STATE(3733), 1, sym_expression, - ACTIONS(2625), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71333] = 17, + [73663] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4732), 1, + STATE(3700), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71392] = 17, + [73726] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(392), 1, + STATE(486), 1, sym_string, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - STATE(4083), 1, + STATE(3699), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71451] = 17, + [73789] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3952), 1, + STATE(3571), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71510] = 17, + [73852] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(4082), 1, + STATE(540), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71569] = 17, + [73915] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(1777), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(1781), 1, anon_sym_with, - STATE(598), 1, + STATE(322), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3741), 1, + STATE(1692), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71628] = 17, + [73978] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(392), 1, + STATE(486), 1, sym_string, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - STATE(3946), 1, + STATE(3566), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71687] = 17, + [74041] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2975), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_LBRACE, + ACTIONS(2981), 1, + anon_sym_forall, + ACTIONS(2987), 1, + anon_sym_BANG, + ACTIONS(2990), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2993), 1, + aux_sym_type_unit_token1, + ACTIONS(2996), 1, + sym_type_implicit_var, + ACTIONS(2999), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(3002), 1, + anon_sym_POUND_BANG, + ACTIONS(3005), 1, + sym_operator, + ACTIONS(3008), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(42), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2984), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [74102] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3246), 1, + STATE(441), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71746] = 17, + [74165] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3270), 1, + STATE(3674), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71805] = 17, + [74228] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(17), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1351), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [74289] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2617), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2621), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2623), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(490), 1, + STATE(579), 1, sym_string, - STATE(1948), 1, + STATE(1567), 1, sym_integer, - STATE(4727), 1, + STATE(3638), 1, sym_expression, - ACTIONS(2625), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71864] = 17, + [74352] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(15), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [74413] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3209), 1, + STATE(3623), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71923] = 17, + [74476] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(13), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1359), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [74537] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3737), 1, + STATE(4725), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [71982] = 17, + [74600] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3736), 1, + STATE(3477), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72041] = 17, + [74663] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3963), 1, + STATE(496), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72100] = 17, + [74726] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3530), 1, + STATE(3565), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72159] = 17, + [74789] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3138), 1, + STATE(544), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72218] = 17, + [74852] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2641), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2645), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2647), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(561), 1, + STATE(486), 1, sym_string, - STATE(781), 1, - sym_expression, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2649), 2, + STATE(3295), 1, + sym_expression, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72277] = 17, + [74915] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3144), 1, + STATE(3370), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72336] = 17, + [74978] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75015] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3731), 1, + STATE(3622), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72395] = 17, + [75078] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1374), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75115] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(11), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1364), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [75176] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2959), 1, + anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, + sym_id, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(7), 2, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1366), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [75237] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1391), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [75274] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75311] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1380), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75348] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75385] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3070), 1, + STATE(3617), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72454] = 17, + [75448] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3729), 1, + STATE(3553), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72513] = 17, + [75511] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3149), 1, + STATE(3579), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72572] = 17, + [75574] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1251), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [75611] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4073), 1, + STATE(3539), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72631] = 17, + [75674] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1767), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1771), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1773), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1775), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1777), 1, + anon_sym_let, + ACTIONS(1779), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1781), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(322), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3151), 1, + STATE(466), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1567), 1, + sym_integer, + ACTIONS(1783), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(386), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72690] = 17, + [75737] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1395), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [75774] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1110), 1, + anon_sym_handler, + ACTIONS(1114), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1116), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1883), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1885), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1889), 1, + anon_sym_let, + ACTIONS(1891), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(1893), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(397), 1, sym_string, - STATE(1717), 1, - sym_integer, - STATE(3174), 1, + STATE(446), 1, sym_expression, - ACTIONS(1821), 2, + STATE(1647), 1, + sym_integer, + ACTIONS(1895), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1112), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1120), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(471), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72749] = 17, + [75837] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(13), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [75874] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2717), 1, + anon_sym_let, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2721), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(486), 1, sym_string, - STATE(1717), 1, + STATE(1832), 1, sym_integer, - STATE(3967), 1, + STATE(3538), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72808] = 17, + [75937] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3289), 1, + STATE(3523), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72867] = 17, + [76000] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(224), 1, + STATE(579), 1, sym_string, - STATE(454), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(4585), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72926] = 17, + [76063] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(15), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [76100] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1382), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(11), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [76137] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(1386), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(7), 15, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + sym_operator, + sym_id, + [76174] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1399), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(17), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [76211] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [76248] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1403), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(19), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [76285] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(376), 1, + STATE(486), 1, sym_string, - STATE(535), 1, - sym_expression, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3518), 1, + sym_expression, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [72985] = 17, + [76348] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2553), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2555), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2557), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2559), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(224), 1, + STATE(365), 1, sym_string, - STATE(344), 1, - sym_expression, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2561), 2, + STATE(4735), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73044] = 17, + [76411] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(1115), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + ACTIONS(21), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, + sym_operator, + sym_id, + [76448] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(376), 1, + STATE(365), 1, sym_string, - STATE(593), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3320), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73103] = 17, + [76511] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(4354), 1, + STATE(3533), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73162] = 17, + [76574] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4353), 1, + STATE(3496), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73221] = 17, + [76637] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(376), 1, + STATE(579), 1, sym_string, - STATE(591), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3642), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73280] = 17, + [76700] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3102), 1, + STATE(3316), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73339] = 17, + [76763] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(392), 1, + STATE(365), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3303), 1, + STATE(3517), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73398] = 17, + [76826] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(376), 1, + STATE(365), 1, sym_string, - STATE(589), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(4531), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73457] = 17, + [76889] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(515), 1, + STATE(486), 1, sym_string, - STATE(2032), 1, + STATE(1832), 1, sym_integer, - STATE(4642), 1, + STATE(3418), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73516] = 17, + [76952] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4586), 1, + STATE(3423), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73575] = 17, + [77015] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2757), 1, + anon_sym_let, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2761), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(365), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3155), 1, + STATE(3445), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73634] = 17, + [77078] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(376), 1, + STATE(579), 1, sym_string, - STATE(586), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3433), 1, + sym_expression, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73693] = 17, + [77141] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2627), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2631), 1, anon_sym_with, - STATE(598), 1, + STATE(579), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3710), 1, + STATE(3505), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73752] = 17, + [77204] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(392), 1, + STATE(399), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3709), 1, + STATE(4441), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73811] = 17, + [77267] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1249), 1, + anon_sym_handler, + ACTIONS(1253), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2711), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2713), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2715), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2717), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2719), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2721), 1, anon_sym_with, - STATE(376), 1, + STATE(486), 1, sym_string, - STATE(582), 1, - sym_expression, - STATE(1879), 1, + STATE(1832), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3446), 1, + sym_expression, + ACTIONS(2723), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1251), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1259), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(616), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73870] = 17, + [77330] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2601), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2605), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2607), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(598), 1, + STATE(365), 1, sym_string, - STATE(1667), 1, + STATE(1567), 1, sym_integer, - STATE(3691), 1, + STATE(3482), 1, sym_expression, - ACTIONS(2609), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73929] = 17, + [77393] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2585), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2589), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2591), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(515), 1, + STATE(365), 1, sym_string, - STATE(2032), 1, + STATE(1567), 1, sym_integer, - STATE(4594), 1, + STATE(3451), 1, sym_expression, - ACTIONS(2593), 2, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [73988] = 17, + [77456] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3249), 1, + STATE(4451), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74047] = 17, + [77519] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2751), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2753), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2755), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2757), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2759), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2761), 1, anon_sym_with, - STATE(376), 1, + STATE(365), 1, sym_string, - STATE(538), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(3476), 1, + sym_expression, + ACTIONS(2763), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(516), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74106] = 17, + [77582] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2125), 1, + anon_sym_let, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2129), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(399), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(4290), 1, + STATE(4733), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74165] = 17, + [77645] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2569), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2573), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2575), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(392), 1, + STATE(399), 1, sym_string, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - STATE(3702), 1, + STATE(4435), 1, sym_expression, - ACTIONS(2577), 2, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74224] = 17, + [77708] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2115), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, + ACTIONS(2119), 1, anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(2121), 1, anon_sym_forall, - ACTIONS(2535), 1, + ACTIONS(2123), 1, anon_sym_LBRACK, - ACTIONS(2537), 1, + ACTIONS(2125), 1, anon_sym_let, - ACTIONS(2539), 1, + ACTIONS(2127), 1, anon_sym_do, - ACTIONS(2541), 1, + ACTIONS(2129), 1, anon_sym_with, - STATE(376), 1, + STATE(399), 1, sym_string, - STATE(541), 1, - sym_expression, - STATE(1879), 1, + STATE(1567), 1, sym_integer, - ACTIONS(2543), 2, + STATE(4431), 1, + sym_expression, + ACTIONS(2131), 2, sym_operator, sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(418), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74283] = 17, + [77771] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1074), 1, + anon_sym_handler, + ACTIONS(1078), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(1080), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(2621), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2623), 1, anon_sym_forall, - ACTIONS(1811), 1, + ACTIONS(2625), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(2627), 1, + anon_sym_let, + ACTIONS(2629), 1, anon_sym_do, - ACTIONS(1817), 1, + ACTIONS(2631), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + STATE(579), 1, sym_string, - STATE(1717), 1, + STATE(1567), 1, sym_integer, - STATE(3701), 1, + STATE(3464), 1, sym_expression, - ACTIONS(1821), 2, + ACTIONS(2633), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1076), 3, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(1084), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(740), 4, + sym_handler, sym_number, sym_string_cons, sym_identifier, - [74342] = 17, - ACTIONS(9), 1, + [77834] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(3011), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(2032), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(4833), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1724), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [74401] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, + ACTIONS(2427), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2429), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + [77878] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4821), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + [77908] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1799), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [74460] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2415), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3210), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74519] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [77952] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(989), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3058), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74578] = 17, + [77982] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3017), 1, + anon_sym_RBRACE, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3430), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3023), 1, + anon_sym_DOT_DOT, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4090), 1, + sym_type, + STATE(4889), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3031), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1796), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [74637] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2397), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3876), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74696] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + [78088] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 24, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(434), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, + [78118] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3033), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1794), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [74755] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2393), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3216), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74814] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + [78162] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 24, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3427), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74873] = 17, + [78192] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(985), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3055), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + [78222] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1792), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [74932] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2271), 5, anon_sym_LPAREN, - ACTIONS(2597), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 9, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3424), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [74991] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [78266] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3040), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + [78296] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1791), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [75050] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, + ACTIONS(2267), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2269), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, + [78340] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 24, anon_sym_LPAREN, - ACTIONS(2531), 1, - anon_sym_PIPE, - ACTIONS(2533), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2535), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_let, - ACTIONS(2539), 1, - anon_sym_do, - ACTIONS(2541), 1, - anon_sym_with, - STATE(376), 1, - sym_string, - STATE(544), 1, - sym_expression, - STATE(1879), 1, - sym_integer, - ACTIONS(2543), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(600), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75109] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, - anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, + sym_operator, + sym_id, + [78370] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3039), 1, + anon_sym_COLON, + ACTIONS(3041), 1, + anon_sym_AT, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(1667), 1, + STATE(2960), 1, sym_integer, - STATE(4563), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1805), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1849), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [75168] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(1851), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [78416] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3050), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3043), 1, + anon_sym_RBRACE, + ACTIONS(3045), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4568), 1, + sym_type, + STATE(4869), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75227] = 17, - ACTIONS(9), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78478] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(3047), 1, + anon_sym_COLON, + ACTIONS(3049), 1, + anon_sym_AT, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(1717), 1, + STATE(2960), 1, sym_integer, - STATE(3047), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1809), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [75286] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1383), 1, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1387), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + [78524] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, - anon_sym_PIPE, - ACTIONS(2615), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(4762), 1, - sym_expression, - ACTIONS(2625), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3051), 1, + anon_sym_RBRACE, + ACTIONS(3053), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4303), 1, + sym_type, + STATE(4819), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(812), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75345] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78586] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1003), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3054), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75404] = 17, + [78616] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2671), 1, + ACTIONS(981), 24, anon_sym_LPAREN, - ACTIONS(2673), 1, - anon_sym_PIPE, - ACTIONS(2675), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2677), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_let, - ACTIONS(2681), 1, - anon_sym_do, - ACTIONS(2683), 1, - anon_sym_with, - STATE(531), 1, - sym_string, - STATE(721), 1, - sym_expression, - STATE(1948), 1, - sym_integer, - ACTIONS(2685), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(741), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75463] = 17, + [78646] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3408), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3055), 1, + anon_sym_RBRACE, + ACTIONS(3057), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4209), 1, + sym_type, + STATE(4857), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75522] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78708] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(979), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4125), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75581] = 17, + [78738] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3066), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3059), 1, + anon_sym_RBRACE, + ACTIONS(3061), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4076), 1, + sym_type, + STATE(4897), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75640] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78800] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3087), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3063), 1, + anon_sym_RBRACE, + ACTIONS(3065), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4359), 1, + sym_type, + STATE(4798), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75699] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78862] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3443), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3067), 1, + anon_sym_RBRACE, + ACTIONS(3069), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3864), 1, + sym_type, + STATE(4951), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75758] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [78924] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(977), 24, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3450), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75817] = 17, + [78954] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(973), 24, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3455), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [75876] = 17, + [78984] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(971), 24, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(680), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, + [79014] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, + anon_sym_COLON, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1678), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [75935] = 17, - ACTIONS(9), 1, + ACTIONS(2267), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2269), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [79058] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(2705), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(2032), 1, + STATE(2739), 1, sym_integer, - STATE(4589), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1596), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [75994] = 17, - ACTIONS(9), 1, + [79122] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3075), 1, + anon_sym_COLON, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3083), 1, + anon_sym_AT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(3095), 1, + sym_id, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(1717), 1, + STATE(2960), 1, sym_integer, - STATE(4298), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1851), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1878), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76053] = 17, - ACTIONS(9), 1, + [79186] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3097), 1, + anon_sym_COLON, + ACTIONS(3099), 1, + anon_sym_AT, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(2032), 1, + STATE(2960), 1, sym_integer, - STATE(4587), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1875), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76112] = 17, - ACTIONS(9), 1, + [79250] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(2819), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3326), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1843), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1795), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76171] = 17, - ACTIONS(9), 1, + [79314] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3097), 1, + anon_sym_COLON, + ACTIONS(3101), 1, + aux_sym_number_token1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(1717), 1, + STATE(2960), 1, sym_integer, - STATE(4571), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1875), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76230] = 17, - ACTIONS(9), 1, + [79378] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(3103), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(1717), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(3207), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1683), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76289] = 17, - ACTIONS(9), 1, + ACTIONS(2271), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [79422] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2315), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3105), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3172), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2317), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1648), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76348] = 17, - ACTIONS(9), 1, + [79486] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2427), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3107), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3183), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2429), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1585), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76407] = 17, + [79550] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1001), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4200), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + [79580] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3047), 1, + anon_sym_COLON, + ACTIONS(3101), 1, + aux_sym_number_token1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1809), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76466] = 17, - ACTIONS(9), 1, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [79626] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3109), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1879), 1, + STATE(2739), 1, sym_integer, - STATE(3665), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(2413), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + STATE(1664), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76525] = 17, - ACTIONS(9), 1, + [79690] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, - anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3111), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(446), 1, - sym_expression, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2417), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, + STATE(1673), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76584] = 17, - ACTIONS(9), 1, + [79754] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2397), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1667), 1, + STATE(2739), 1, sym_integer, - STATE(3982), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(2399), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, + STATE(1716), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76643] = 17, + [79818] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(975), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4583), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [76702] = 17, + [79848] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 23, anon_sym_LPAREN, - ACTIONS(2565), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2567), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2569), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2573), 1, anon_sym_do, - ACTIONS(2575), 1, anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3343), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [76761] = 17, - ACTIONS(9), 1, + [79880] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2393), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3119), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3696), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2395), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1767), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76820] = 17, + [79944] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1001), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3188), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [76879] = 17, - ACTIONS(9), 1, + [79974] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, - anon_sym_forall, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - anon_sym_let, - ACTIONS(2305), 1, - anon_sym_do, - ACTIONS(2307), 1, - anon_sym_with, - STATE(385), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3121), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1667), 1, + STATE(2739), 1, sym_integer, - STATE(4519), 1, - sym_expression, - ACTIONS(2309), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(2273), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(588), 3, + STATE(1768), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76938] = 17, - ACTIONS(9), 1, + [80038] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2267), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + ACTIONS(3123), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(4193), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2269), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1789), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [76997] = 17, + [80102] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(999), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + sym_operator, + sym_id, + [80132] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3505), 1, - sym_expression, - ACTIONS(1821), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - sym_macro_id, - ACTIONS(819), 3, + sym_id, + [80162] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77056] = 9, + [80192] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, + ACTIONS(3125), 1, anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1654), 2, + STATE(1775), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2393), 5, anon_sym_LPAREN, anon_sym__, + anon_sym_or, aux_sym_integer_token1, sym_id, - STATE(1225), 4, + ACTIONS(2395), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [80236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3127), 1, + anon_sym_COLON, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1772), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2115), 9, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 9, anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, @@ -72988,2679 +78439,2037 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [77099] = 17, - ACTIONS(9), 1, + [80280] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(2863), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(2032), 1, + STATE(2739), 1, sym_integer, - STATE(4747), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1745), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77158] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, - anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, + [80324] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3129), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1667), 1, + STATE(2739), 1, sym_integer, - STATE(4573), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, + STATE(1740), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77217] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(2315), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2317), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + [80368] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 24, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(676), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77276] = 17, + [80398] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(991), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3508), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + [80428] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3131), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1730), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77335] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(2427), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2429), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + [80472] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(360), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3133), 1, + anon_sym_RBRACE, + ACTIONS(3135), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3838), 1, + sym_type, + STATE(4963), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(332), 3, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [80534] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3137), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1729), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77394] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2411), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3198), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77453] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, + ACTIONS(2413), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(2529), 1, - anon_sym_LPAREN, - ACTIONS(2531), 1, - anon_sym_PIPE, - ACTIONS(2533), 1, - anon_sym_forall, - ACTIONS(2535), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_let, - ACTIONS(2539), 1, - anon_sym_do, - ACTIONS(2541), 1, - anon_sym_with, - STATE(376), 1, + [80578] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(546), 1, - sym_expression, - STATE(1879), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2543), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(600), 3, + STATE(1725), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77512] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [80622] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(989), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3205), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77571] = 17, + [80652] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(987), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4825), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77630] = 17, + [80682] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2529), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2531), 1, - anon_sym_PIPE, - ACTIONS(2533), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2535), 1, - anon_sym_LBRACK, - ACTIONS(2537), 1, - anon_sym_let, - ACTIONS(2539), 1, - anon_sym_do, - ACTIONS(2541), 1, - anon_sym_with, - STATE(376), 1, - sym_string, - STATE(551), 1, - sym_expression, - STATE(1879), 1, - sym_integer, - ACTIONS(2543), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3141), 1, + anon_sym_RBRACE, + ACTIONS(3143), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3884), 1, + sym_type, + STATE(4944), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(600), 3, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [80744] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + anon_sym_COLON, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1754), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77689] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + [80788] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4592), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + [80818] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1717), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [77748] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + [80862] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 24, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4112), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77807] = 17, + [80892] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(981), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3529), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77866] = 17, + [80922] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(979), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4761), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77925] = 17, + [80952] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(977), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3244), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [77984] = 9, + [80982] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(3149), 1, anon_sym_COLON, - STATE(1009), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1620), 2, + STATE(1713), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(1735), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(1737), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2393), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 9, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [78027] = 17, - ACTIONS(9), 1, + [81026] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3151), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(1879), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(4113), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(2413), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + STATE(1588), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78086] = 17, - ACTIONS(9), 1, + [81090] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, - anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(1667), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(3549), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + ACTIONS(2417), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, + STATE(1586), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78145] = 17, + [81154] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(975), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4663), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78204] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3560), 1, - sym_expression, - ACTIONS(2577), 2, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78263] = 17, + [81184] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(969), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3203), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78322] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3154), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78381] = 17, - ACTIONS(9), 1, + [81214] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, + ACTIONS(3155), 1, + anon_sym_AT, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, sym_string, - STATE(1879), 1, + STATE(2960), 1, sym_integer, - STATE(3677), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1604), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1849), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78440] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(1851), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + [81258] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 1, + anon_sym_COLON, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3250), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1710), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78499] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2271), 5, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3562), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78558] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(2273), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + [81302] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3197), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78617] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, - anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, - anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(674), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78676] = 17, - ACTIONS(9), 1, + [81332] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(3159), 1, + anon_sym_AT, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, sym_string, - STATE(1717), 1, + STATE(2960), 1, sym_integer, - STATE(3117), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1608), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78735] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, + ACTIONS(1843), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + [81376] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3161), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(2032), 1, + STATE(2739), 1, sym_integer, - STATE(4608), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1800), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [78794] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 1, + ACTIONS(2411), 5, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2413), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_BANG, - ACTIONS(2333), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2767), 1, + [81420] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3163), 1, anon_sym_COLON, - STATE(1030), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2099), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1711), 2, + STATE(1708), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [78855] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2267), 5, anon_sym_LPAREN, - ACTIONS(2613), 1, - anon_sym_PIPE, - ACTIONS(2615), 1, - anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(4746), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, - sym_hex_integer, - sym_octet_integer, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(1391), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(812), 3, - sym_number, - sym_string_cons, - sym_identifier, - [78914] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + ACTIONS(2269), 9, + anon_sym_EQ, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2769), 1, + [81464] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 1, anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2099), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1625), 2, + STATE(1752), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [78975] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, + ACTIONS(2411), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2413), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1150), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, + [81508] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4044), 1, - sym_expression, - ACTIONS(2609), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3167), 1, + anon_sym_RBRACE, + ACTIONS(3169), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4025), 1, + sym_type, + STATE(4905), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79034] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [81570] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(969), 24, anon_sym_LPAREN, - ACTIONS(2565), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2567), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(4043), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79093] = 17, + [81600] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(975), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3252), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79152] = 17, + [81630] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(931), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3975), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79211] = 17, + [81660] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(977), 24, anon_sym_LPAREN, - ACTIONS(2597), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4038), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79270] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2771), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2103), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1627), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [79331] = 17, + [81690] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(979), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4792), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79390] = 17, + [81720] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3976), 1, - sym_expression, - ACTIONS(2577), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3171), 1, + anon_sym_RBRACE, + ACTIONS(3173), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4137), 1, + sym_type, + STATE(4881), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79449] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [81782] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3257), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3175), 1, + anon_sym_RBRACE, + ACTIONS(3177), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3906), 1, + sym_type, + STATE(4937), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79508] = 18, - ACTIONS(3), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [81844] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(981), 24, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(2339), 1, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2773), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2103), 2, + [81874] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 24, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1710), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [79569] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2775), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2269), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1734), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [79630] = 17, + [81904] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2547), 1, - anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(672), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(3027), 1, + sym_id, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(3181), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4399), 1, + sym_type, + STATE(4775), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, + sym_qualified_id, + sym_force_id, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [81966] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 24, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79689] = 18, - ACTIONS(3), 1, + [81996] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(985), 24, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(2339), 1, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2777), 1, + [82026] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2315), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3183), 1, anon_sym_COLON, - STATE(1030), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2111), 2, + ACTIONS(2317), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1707), 2, + STATE(1581), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [79750] = 17, - ACTIONS(9), 1, + [82090] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(2427), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3185), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(2032), 1, + STATE(2739), 1, sym_integer, - STATE(4787), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(2429), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1701), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [79809] = 17, + [82154] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(987), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3259), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79868] = 17, + [82184] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(989), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4599), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + [82214] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3187), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1801), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [79927] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, + ACTIONS(2427), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2429), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, + [82258] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 24, anon_sym_LPAREN, - ACTIONS(2565), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2567), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(4028), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [79986] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + sym_operator, + sym_id, + [82288] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3101), 1, + aux_sym_number_token1, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, sym_string, - STATE(1717), 1, + STATE(2960), 1, sym_integer, - STATE(3647), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1608), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [80045] = 17, - ACTIONS(9), 1, + ACTIONS(1843), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [82332] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3189), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3650), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2413), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1702), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [80104] = 17, + [82396] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(993), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4027), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + [82426] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3191), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1693), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [80163] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, + ACTIONS(2315), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2317), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2547), 1, + [82470] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 24, anon_sym_LPAREN, - ACTIONS(2549), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2551), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(670), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80222] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3133), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80281] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, - anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3926), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80340] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3267), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80399] = 18, + [82500] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2779), 1, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3193), 1, anon_sym_COLON, - STATE(1030), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2107), 2, + ACTIONS(2417), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1705), 2, + STATE(1703), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [80460] = 18, + [82564] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2267), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2781), 1, + ACTIONS(3195), 1, anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2285), 2, + ACTIONS(2269), 2, anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1735), 2, + STATE(1755), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [80521] = 17, + [82628] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(997), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3274), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80580] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3075), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80639] = 17, + [82658] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(999), 24, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3139), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80698] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4212), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80757] = 17, - ACTIONS(9), 1, + [82688] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1184), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3197), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(1879), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(4213), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + ACTIONS(2273), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + STATE(1744), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [80816] = 9, + [82752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2805), 1, anon_sym_COLON, - STATE(1050), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1608), 2, + STATE(1685), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2099), 9, + ACTIONS(1841), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(1843), 9, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -75668,1795 +80477,1515 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [80859] = 17, + [82796] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_PIPE, - ACTIONS(2551), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(668), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3199), 1, + anon_sym_RBRACE, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3821), 1, + sym_type, + STATE(4968), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [80918] = 18, - ACTIONS(3), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [82858] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(999), 24, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(2339), 1, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2785), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2115), 2, + [82888] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1001), 24, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1704), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [80979] = 18, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [82918] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(1841), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2787), 1, + ACTIONS(2659), 1, anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2119), 2, + ACTIONS(1843), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1701), 2, + STATE(1788), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [81040] = 17, + [82982] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4222), 1, - sym_expression, - ACTIONS(2609), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(3205), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3806), 1, + sym_type, + STATE(4973), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81099] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83044] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4021), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3794), 1, + sym_type, + STATE(4978), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81158] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83106] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3660), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3211), 1, + anon_sym_RBRACE, + ACTIONS(3213), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3927), 1, + sym_type, + STATE(4929), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81217] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1582), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2103), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [81260] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83168] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3661), 1, - sym_expression, - ACTIONS(2577), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3215), 1, + anon_sym_RBRACE, + ACTIONS(3217), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4251), 1, + sym_type, + STATE(4849), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81319] = 18, - ACTIONS(3), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83230] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(971), 24, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(2339), 1, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2791), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2285), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1684), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [81380] = 18, + [83260] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2427), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2793), 1, + ACTIONS(3219), 1, anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2269), 2, + ACTIONS(2429), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1680), 2, + STATE(1712), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [81441] = 17, + [83324] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(4231), 1, - sym_expression, - ACTIONS(2577), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(3223), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4181), 1, + sym_type, + STATE(4865), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81500] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83386] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(997), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4604), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81559] = 17, + [83416] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(995), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4605), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81618] = 18, - ACTIONS(3), 1, + [83446] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(973), 24, anon_sym_LPAREN, - ACTIONS(1953), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(1961), 1, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(1965), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2125), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2127), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [81679] = 17, + [83476] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3668), 1, - sym_expression, - ACTIONS(2609), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3225), 1, + anon_sym_RBRACE, + ACTIONS(3227), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3781), 1, + sym_type, + STATE(4983), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81738] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83538] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(4233), 1, - sym_expression, - ACTIONS(2609), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3229), 1, + anon_sym_RBRACE, + ACTIONS(3231), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3764), 1, + sym_type, + STATE(4988), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81797] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83600] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3877), 1, - sym_expression, - ACTIONS(2577), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3233), 1, + anon_sym_RBRACE, + ACTIONS(3235), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3750), 1, + sym_type, + STATE(4993), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81856] = 18, - ACTIONS(3), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83662] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(993), 24, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2333), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(2339), 1, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2351), 1, - anon_sym_COLON, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(1737), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1633), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [81917] = 17, + [83692] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4137), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3237), 1, + anon_sym_RBRACE, + ACTIONS(3239), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3991), 1, + sym_type, + STATE(4913), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [81976] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83754] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4680), 1, - sym_expression, - ACTIONS(2593), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3241), 1, + anon_sym_RBRACE, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4269), 1, + sym_type, + STATE(4839), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82035] = 17, - ACTIONS(9), 1, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83816] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(2397), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1387), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, - anon_sym_PIPE, - ACTIONS(2615), 1, - anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3245), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(1948), 1, + STATE(2739), 1, sym_integer, - STATE(4597), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(812), 3, + STATE(1705), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [82094] = 17, + [83880] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2639), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(2643), 1, - anon_sym_let, - ACTIONS(2645), 1, - anon_sym_do, - ACTIONS(2647), 1, - anon_sym_with, - STATE(561), 1, - sym_string, - STATE(660), 1, - sym_expression, - STATE(2032), 1, - sym_integer, - ACTIONS(2649), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3247), 1, + anon_sym_RBRACE, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4483), 1, + sym_type, + STATE(4933), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82153] = 18, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [83942] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2393), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2121), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + ACTIONS(3251), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - ACTIONS(2123), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, + STATE(1687), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [82214] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3672), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1188), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82273] = 17, - ACTIONS(9), 1, + [84006] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, + ACTIONS(2397), 1, + anon_sym_or, ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, - anon_sym_PIPE, ACTIONS(2639), 1, - anon_sym_forall, + anon_sym_BANG, ACTIONS(2641), 1, - anon_sym_LBRACK, + aux_sym_type_unit_token1, ACTIONS(2643), 1, - anon_sym_let, - ACTIONS(2645), 1, - anon_sym_do, + anon_sym__, ACTIONS(2647), 1, - anon_sym_with, - STATE(561), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3253), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(667), 1, - sym_expression, - STATE(2032), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_EQ, ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(649), 3, + STATE(1680), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [82332] = 17, + [84070] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(971), 24, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4612), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82391] = 18, + [84100] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - aux_sym_type_unit_token1, - ACTIONS(2447), 1, + ACTIONS(2393), 1, anon_sym_or, - ACTIONS(2449), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2455), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2458), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2461), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2464), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2795), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2798), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2801), 1, + ACTIONS(2701), 1, anon_sym__, - STATE(907), 1, + ACTIONS(3255), 1, + anon_sym_COLON, + STATE(1208), 1, sym_pattern_var, - STATE(908), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2132), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - ACTIONS(2452), 2, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1530), 2, + STATE(1706), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [82452] = 17, + [84164] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2547), 1, + ACTIONS(973), 24, anon_sym_LPAREN, - ACTIONS(2549), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2551), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2553), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_let, - ACTIONS(2557), 1, - anon_sym_do, - ACTIONS(2559), 1, - anon_sym_with, - STATE(224), 1, - sym_string, - STATE(448), 1, - sym_expression, - STATE(1717), 1, - sym_integer, - ACTIONS(2561), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(332), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82511] = 17, + [84194] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(3259), 1, + aux_sym_number_token1, + ACTIONS(3257), 23, anon_sym_LPAREN, - ACTIONS(2637), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2639), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2645), 1, anon_sym_do, - ACTIONS(2647), 1, anon_sym_with, - STATE(561), 1, - sym_string, - STATE(671), 1, - sym_expression, - STATE(2032), 1, - sym_integer, - ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82570] = 17, + [84226] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3261), 23, anon_sym_LPAREN, - ACTIONS(2637), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2639), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(2643), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2645), 1, anon_sym_do, - ACTIONS(2647), 1, anon_sym_with, - STATE(561), 1, - sym_string, - STATE(675), 1, - sym_expression, - STATE(2032), 1, - sym_integer, - ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(649), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82629] = 17, - ACTIONS(9), 1, + [84258] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2635), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2639), 1, - anon_sym_forall, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(2643), 1, - anon_sym_let, - ACTIONS(2645), 1, - anon_sym_do, - ACTIONS(2647), 1, - anon_sym_with, - STATE(561), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3265), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(679), 1, - sym_expression, - STATE(2032), 1, + STATE(2739), 1, sym_integer, + ACTIONS(2273), 2, + anon_sym_COMMA, + anon_sym_PIPE, ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(649), 3, + STATE(1718), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [82688] = 17, - ACTIONS(9), 1, + [84322] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2635), 1, - anon_sym_LPAREN, - ACTIONS(2637), 1, - anon_sym_PIPE, - ACTIONS(2639), 1, - anon_sym_forall, - ACTIONS(2641), 1, - anon_sym_LBRACK, - ACTIONS(2643), 1, - anon_sym_let, - ACTIONS(2645), 1, - anon_sym_do, - ACTIONS(2647), 1, - anon_sym_with, - STATE(561), 1, + ACTIONS(2927), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(686), 1, - sym_expression, - STATE(2032), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2649), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(649), 3, + STATE(1627), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [82747] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(1841), 5, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3101), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82806] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4789), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(1843), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82865] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(2735), 1, + [84366] = 18, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2737), 1, - anon_sym_PIPE, - ACTIONS(2739), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2741), 1, - anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_let, - ACTIONS(2745), 1, - anon_sym_do, - ACTIONS(2747), 1, - anon_sym_with, - STATE(545), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4528), 1, - sym_expression, - ACTIONS(2749), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3267), 1, + anon_sym_RBRACE, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3847), 1, + sym_type, + STATE(4958), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(704), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82924] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [84428] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(4019), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3271), 1, + anon_sym_RBRACE, + ACTIONS(3273), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3948), 1, + sym_type, + STATE(4921), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [82983] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [84490] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4617), 1, - sym_expression, - ACTIONS(2593), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3275), 1, + anon_sym_RBRACE, + ACTIONS(3277), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4166), 1, + sym_type, + STATE(4873), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83042] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [84552] = 18, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3099), 1, - sym_expression, - ACTIONS(1821), 2, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, + ACTIONS(3027), 1, sym_id, + ACTIONS(3279), 1, + anon_sym_RBRACE, + ACTIONS(3281), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3636), 1, + sym_type, + STATE(5035), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83101] = 17, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [84614] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 23, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2589), 1, anon_sym_do, - ACTIONS(2591), 1, anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4618), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83160] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3100), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83219] = 17, - ACTIONS(9), 1, + [84646] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2267), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + ACTIONS(3287), 1, + anon_sym_COLON, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(1717), 1, + STATE(2739), 1, sym_integer, - STATE(3158), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1732), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [83278] = 17, - ACTIONS(9), 1, + [84710] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, + ACTIONS(2315), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(823), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3289), 1, + anon_sym_COLON, + STATE(1295), 1, sym_string, - STATE(1717), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(3176), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + ACTIONS(2317), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, + STATE(1719), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [83337] = 9, + [84774] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(3291), 1, anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1593), 2, + STATE(1697), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2111), 9, + ACTIONS(2315), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2317), 9, anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, @@ -77466,1535 +81995,1226 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [83380] = 9, - ACTIONS(3), 1, + [84818] = 18, + ACTIONS(9), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_COLON, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1592), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + ACTIONS(3027), 1, sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2107), 9, + ACTIONS(3293), 1, + anon_sym_RBRACE, + ACTIONS(3295), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3727), 1, + sym_type, + STATE(4998), 1, + sym_identifier, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + ACTIONS(3029), 2, + sym_qualified_id, + sym_force_id, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [84880] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 24, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [83423] = 17, + sym_operator, + sym_id, + [84910] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(977), 23, anon_sym_LPAREN, - ACTIONS(2613), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2615), 1, anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(4626), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(812), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83482] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1413), 1, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, - anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4630), 1, - sym_expression, - ACTIONS(2593), 2, sym_operator, - sym_macro_id, - ACTIONS(1411), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83541] = 17, - ACTIONS(9), 1, + [84939] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3095), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(827), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83600] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1148), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1150), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2595), 1, - anon_sym_LPAREN, - ACTIONS(2597), 1, - anon_sym_PIPE, - ACTIONS(2599), 1, - anon_sym_forall, - ACTIONS(2601), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_let, - ACTIONS(2605), 1, - anon_sym_do, - ACTIONS(2607), 1, - anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3991), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1154), 3, + ACTIONS(2657), 1, sym_id, - sym_qualified_id, - sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83659] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2613), 1, - anon_sym_PIPE, - ACTIONS(2615), 1, - anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, sym_string, - STATE(1948), 1, + STATE(2739), 1, sym_integer, - STATE(4644), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + ACTIONS(2413), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1391), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(812), 3, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [83718] = 18, + [85000] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2401), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2117), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2403), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - ACTIONS(2119), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [83779] = 17, - ACTIONS(9), 1, + [85061] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(3297), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1886), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2393), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2395), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1415), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + [85104] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3299), 23, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2589), 1, anon_sym_do, - ACTIONS(2591), 1, anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4648), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [83838] = 17, - ACTIONS(9), 1, + [85133] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1415), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, - anon_sym_PIPE, - ACTIONS(2583), 1, - anon_sym_forall, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2587), 1, - anon_sym_let, - ACTIONS(2589), 1, - anon_sym_do, - ACTIONS(2591), 1, - anon_sym_with, - STATE(515), 1, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, sym_string, - STATE(2032), 1, + STATE(2739), 1, sym_integer, - STATE(4813), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + ACTIONS(2417), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [83897] = 18, + [85194] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2397), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2113), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - ACTIONS(2115), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [83958] = 17, + [85255] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(931), 23, anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3990), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84017] = 18, + [85284] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2393), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(1953), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2109), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - ACTIONS(2111), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [84078] = 18, - ACTIONS(3), 1, + [85345] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(975), 23, anon_sym_LPAREN, - ACTIONS(1953), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(1961), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2105), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2107), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [84139] = 17, + [85374] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2595), 1, + ACTIONS(3301), 23, anon_sym_LPAREN, - ACTIONS(2597), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2599), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2605), 1, anon_sym_do, - ACTIONS(2607), 1, anon_sym_with, - STATE(598), 1, - sym_string, - STATE(1667), 1, - sym_integer, - STATE(3673), 1, - sym_expression, - ACTIONS(2609), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(620), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84198] = 17, + [85403] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(3303), 23, anon_sym_LPAREN, - ACTIONS(1807), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + anon_sym_RBRACK, + anon_sym_let, anon_sym_do, - ACTIONS(1817), 1, anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3227), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84257] = 17, + [85432] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(3305), 23, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2589), 1, anon_sym_do, - ACTIONS(2591), 1, anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4681), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84316] = 18, - ACTIONS(3), 1, + [85461] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(969), 23, anon_sym_LPAREN, - ACTIONS(1953), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(1955), 1, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1957), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - ACTIONS(1961), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2101), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2103), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [84377] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2097), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2099), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [84438] = 17, + [85490] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1413), 1, - sym_floating, - ACTIONS(1415), 1, - anon_sym_DQUOTE, - ACTIONS(2579), 1, + ACTIONS(3307), 23, anon_sym_LPAREN, - ACTIONS(2581), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2583), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2587), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2589), 1, anon_sym_do, - ACTIONS(2591), 1, anon_sym_with, - STATE(515), 1, - sym_string, - STATE(2032), 1, - sym_integer, - STATE(4664), 1, - sym_expression, - ACTIONS(2593), 2, - sym_operator, - sym_macro_id, - ACTIONS(1411), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1419), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(754), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84497] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(821), 1, sym_floating, - ACTIONS(823), 1, anon_sym_DQUOTE, - ACTIONS(1803), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3223), 1, - sym_expression, - ACTIONS(1821), 2, sym_operator, sym_macro_id, - ACTIONS(819), 3, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - ACTIONS(827), 3, sym_id, sym_qualified_id, sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84556] = 17, + [85519] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(3309), 23, anon_sym_LPAREN, - ACTIONS(2515), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2517), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2519), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2523), 1, anon_sym_do, - ACTIONS(2525), 1, anon_sym_with, - STATE(259), 1, - sym_string, - STATE(290), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84615] = 18, + [85548] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, + ACTIONS(2405), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2093), 1, - anon_sym_or, - STATE(907), 1, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, sym_pattern_var, - STATE(908), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2407), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - ACTIONS(2095), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [84676] = 17, + [85609] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(3311), 23, anon_sym_LPAREN, - ACTIONS(2515), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2517), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2519), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2523), 1, anon_sym_do, - ACTIONS(2525), 1, anon_sym_with, - STATE(259), 1, - sym_string, - STATE(293), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84735] = 17, + [85638] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(3313), 23, anon_sym_LPAREN, - ACTIONS(2515), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2517), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2519), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2523), 1, anon_sym_do, - ACTIONS(2525), 1, anon_sym_with, - STATE(259), 1, - sym_string, - STATE(296), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84794] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - anon_sym_LPAREN, - ACTIONS(1953), 1, - anon_sym_BANG, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1957), 1, - anon_sym__, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(2065), 1, - anon_sym_or, - STATE(907), 1, - sym_pattern_var, - STATE(908), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - ACTIONS(2067), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - STATE(1530), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1041), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [84855] = 17, + sym_qualified_id, + sym_force_id, + [85667] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1383), 1, - sym_floating, - ACTIONS(1387), 1, - anon_sym_DQUOTE, - ACTIONS(2611), 1, + ACTIONS(3315), 23, anon_sym_LPAREN, - ACTIONS(2613), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2615), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2617), 1, anon_sym_LBRACK, - ACTIONS(2619), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2621), 1, anon_sym_do, - ACTIONS(2623), 1, anon_sym_with, - STATE(490), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(4655), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(812), 3, - sym_number, - sym_string_cons, - sym_identifier, - [84914] = 17, - ACTIONS(9), 1, + [85696] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, - anon_sym_LPAREN, - ACTIONS(2515), 1, - anon_sym_PIPE, - ACTIONS(2517), 1, - anon_sym_forall, - ACTIONS(2519), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_let, - ACTIONS(2523), 1, - anon_sym_do, - ACTIONS(2525), 1, - anon_sym_with, - STATE(259), 1, + ACTIONS(3317), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, sym_string, - STATE(297), 1, - sym_expression, - STATE(1667), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1858), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2397), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(1154), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(414), 3, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [84973] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1383), 1, + ACTIONS(2399), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1387), 1, anon_sym_DQUOTE, - ACTIONS(2611), 1, + [85739] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 23, anon_sym_LPAREN, - ACTIONS(2613), 1, - anon_sym_PIPE, - ACTIONS(2615), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2617), 1, - anon_sym_LBRACK, - ACTIONS(2619), 1, - anon_sym_let, - ACTIONS(2621), 1, - anon_sym_do, - ACTIONS(2623), 1, - anon_sym_with, - STATE(490), 1, - sym_string, - STATE(1948), 1, - sym_integer, - STATE(4735), 1, - sym_expression, - ACTIONS(2625), 2, - sym_operator, - sym_macro_id, - ACTIONS(1381), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1391), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(812), 3, - sym_number, - sym_string_cons, - sym_identifier, - [85032] = 17, + [85768] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(3319), 23, anon_sym_LPAREN, - ACTIONS(2515), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2517), 1, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2519), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_RBRACK, anon_sym_let, - ACTIONS(2523), 1, anon_sym_do, - ACTIONS(2525), 1, anon_sym_with, - STATE(259), 1, - sym_string, - STATE(298), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, sym_qualified_id, sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [85091] = 17, + [85797] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1148), 1, - sym_floating, - ACTIONS(1150), 1, - anon_sym_DQUOTE, - ACTIONS(2513), 1, + ACTIONS(969), 23, anon_sym_LPAREN, - ACTIONS(2515), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2517), 1, anon_sym_forall, - ACTIONS(2519), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_let, - ACTIONS(2523), 1, - anon_sym_do, - ACTIONS(2525), 1, - anon_sym_with, - STATE(259), 1, - sym_string, - STATE(299), 1, - sym_expression, - STATE(1667), 1, - sym_integer, - ACTIONS(2527), 2, - sym_operator, - sym_macro_id, - ACTIONS(1146), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1154), 3, - sym_id, - sym_qualified_id, - sym_force_id, - STATE(414), 3, - sym_number, - sym_string_cons, - sym_identifier, - [85150] = 17, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1182), 1, sym_floating, - ACTIONS(1184), 1, anon_sym_DQUOTE, - ACTIONS(2563), 1, - anon_sym_LPAREN, - ACTIONS(2565), 1, - anon_sym_PIPE, - ACTIONS(2567), 1, - anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, + sym_operator, + sym_id, + [85826] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, sym_string, - STATE(1879), 1, + STATE(2960), 1, sym_integer, - STATE(3868), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, - sym_hex_integer, - sym_octet_integer, + STATE(1651), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2401), 4, + anon_sym_LPAREN, + anon_sym__, aux_sym_integer_token1, - ACTIONS(1188), 3, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [85209] = 18, + ACTIONS(2403), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [85867] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2401), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2409), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(2701), 1, anon_sym__, - ACTIONS(2808), 1, - anon_sym_COLON, - STATE(1050), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2111), 2, + ACTIONS(2403), 2, anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1702), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [85270] = 17, + [85928] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(821), 1, - sym_floating, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(1803), 1, + ACTIONS(971), 23, anon_sym_LPAREN, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(1811), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - anon_sym_do, - ACTIONS(1817), 1, - anon_sym_with, - ACTIONS(2545), 1, - anon_sym_let, - STATE(230), 1, - sym_string, - STATE(1717), 1, - sym_integer, - STATE(3221), 1, - sym_expression, - ACTIONS(1821), 2, - sym_operator, - sym_macro_id, - ACTIONS(819), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(827), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(337), 3, - sym_number, - sym_string_cons, - sym_identifier, - [85329] = 17, + [85957] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1182), 1, - sym_floating, - ACTIONS(1184), 1, - anon_sym_DQUOTE, - ACTIONS(2563), 1, + ACTIONS(975), 23, anon_sym_LPAREN, - ACTIONS(2565), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(2567), 1, anon_sym_forall, - ACTIONS(2569), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_let, - ACTIONS(2573), 1, - anon_sym_do, - ACTIONS(2575), 1, - anon_sym_with, - STATE(392), 1, - sym_string, - STATE(1879), 1, - sym_integer, - STATE(3878), 1, - sym_expression, - ACTIONS(2577), 2, - sym_operator, - sym_macro_id, - ACTIONS(1180), 3, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1188), 3, + sym_floating, + anon_sym_DQUOTE, + sym_operator, sym_id, - sym_qualified_id, - sym_force_id, - STATE(569), 3, + [85986] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1651), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2405), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, sym_number, sym_string_cons, - sym_identifier, - [85388] = 18, - ACTIONS(3), 1, + ACTIONS(2407), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [86027] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(931), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, + [86056] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3321), 23, anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - ACTIONS(2810), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, - STATE(1050), 1, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [86085] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2107), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1703), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + ACTIONS(2411), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [85449] = 8, + ACTIONS(2413), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [86126] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [86155] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3323), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [86184] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1659), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2093), 4, + aux_sym_pattern_repeat2, + ACTIONS(2415), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1225), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2095), 9, + ACTIONS(2417), 10, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [86225] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [85489] = 8, + sym_operator, + sym_id, + [86254] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, + aux_sym_pattern_repeat2, + ACTIONS(2393), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2111), 9, + ACTIONS(2395), 10, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -79002,71 +83222,59 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [85529] = 16, + [86295] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(981), 23, anon_sym_LPAREN, - ACTIONS(2814), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2816), 1, anon_sym_DASH_GT, - ACTIONS(2818), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2820), 1, anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, sym_type_implicit_var, - ACTIONS(2826), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1590), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [85585] = 8, + [86324] = 8, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, + aux_sym_pattern_repeat2, + ACTIONS(2397), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2107), 9, + ACTIONS(2399), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -79074,15 +83282,14 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [85625] = 3, + [86365] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_number_token1, - ACTIONS(2834), 21, + ACTIONS(3325), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -79091,6 +83298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -79101,15 +83309,14 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [85655] = 3, + [86394] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2840), 1, - aux_sym_number_token1, - ACTIONS(2838), 21, + ACTIONS(1050), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -79118,6 +83325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -79128,57 +83336,92 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [85685] = 2, + [86423] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 22, + ACTIONS(3327), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [86452] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1659), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2401), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - [85713] = 8, + ACTIONS(2403), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [86493] = 8, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, + aux_sym_pattern_repeat2, + ACTIONS(2271), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2111), 9, + ACTIONS(2273), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -79186,130 +83429,111 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [85753] = 5, + [86534] = 2, ACTIONS(9), 1, sym_comment, - STATE(2829), 1, - sym_primitive_reverse_atom, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(983), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, anon_sym_or, - anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [85787] = 16, + [86563] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(985), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1714), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [85843] = 8, - ACTIONS(3), 1, + [86592] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, + ACTIONS(971), 23, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2103), 9, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [85883] = 8, + sym_operator, + sym_id, + [86621] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2099), 9, + ACTIONS(2405), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2407), 9, anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, @@ -79319,15 +83543,18 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [85923] = 2, + [86662] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 22, + ACTIONS(979), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -79335,8 +83562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -79345,95 +83570,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [85951] = 16, + [86691] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(987), 23, anon_sym_LPAREN, - ACTIONS(2814), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2816), 1, anon_sym_DASH_GT, - ACTIONS(2818), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2820), 1, anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, sym_type_implicit_var, - ACTIONS(2826), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_EQ, + anon_sym__, anon_sym_or, - anon_sym_LT_DASH, - STATE(1631), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86007] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1607), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86063] = 2, + [86720] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 22, + ACTIONS(989), 23, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -79442,7 +83616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -79451,229 +83624,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [86091] = 16, + [86749] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(3329), 23, anon_sym_LPAREN, - ACTIONS(2814), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, + sym_macro_id, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86147] = 16, + sym_qualified_id, + sym_force_id, + [86778] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(991), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2884), 1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1629), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86203] = 16, + [86807] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(973), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, - sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1626), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86259] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_EQ, + anon_sym__, anon_sym_or, anon_sym_LT_DASH, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86315] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86371] = 8, + [86836] = 9, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + ACTIONS(3331), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1839), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, + aux_sym_pattern_repeat2, + ACTIONS(2415), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2115), 9, + ACTIONS(2417), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_BANG, @@ -79683,84 +83739,18 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [86411] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [86467] = 5, + [86879] = 2, ACTIONS(9), 1, sym_comment, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(977), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [86501] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(969), 22, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -79768,8 +83758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -79778,76 +83766,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [86529] = 5, + [86908] = 2, ACTIONS(9), 1, sym_comment, - STATE(2829), 1, - sym_primitive_reverse_atom, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(993), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, - sym_operator, - sym_id, - [86563] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2065), 4, - anon_sym_LPAREN, anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2067), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [86603] = 2, + sym_operator, + sym_id, + [86937] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 22, + ACTIONS(995), 23, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -79856,7 +83812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -79865,15 +83820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [86631] = 2, + [86966] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 22, + ACTIONS(997), 23, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -79882,7 +83839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -79891,29 +83847,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [86659] = 8, + [86995] = 9, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + ACTIONS(3333), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1837), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, + aux_sym_pattern_repeat2, + ACTIONS(2411), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2119), 9, + ACTIONS(2413), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_BANG, @@ -79923,180 +83881,83 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [86699] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(989), 22, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [86727] = 2, - ACTIONS(9), 1, + [87038] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(991), 22, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1651), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2267), 4, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, sym_id, - [86755] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 14, - anon_sym_LPAREN, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2269), 10, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [86789] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 22, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_id, - [86817] = 8, + [87079] = 8, ACTIONS(3), 1, sym_comment, - STATE(1026), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1528), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(1695), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2125), 5, + aux_sym_pattern_repeat2, + ACTIONS(2433), 4, anon_sym_LPAREN, anon_sym__, - anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2127), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [86857] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(995), 22, - anon_sym_LPAREN, - anon_sym_EQ, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2435), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_id, - [86885] = 2, + [87120] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 22, + ACTIONS(999), 23, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -80105,7 +83966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, anon_sym__, anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -80114,63 +83974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [86913] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2121), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2123), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [86953] = 8, + [87149] = 8, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2121), 4, + aux_sym_pattern_repeat2, + ACTIONS(2477), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2123), 9, + ACTIONS(2479), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -80178,49 +84007,50 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [86993] = 2, + [87190] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 22, + ACTIONS(3335), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [87021] = 3, + sym_qualified_id, + sym_force_id, + [87219] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2840), 1, - aux_sym_number_token1, - ACTIONS(2838), 21, + ACTIONS(3337), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -80231,12 +84061,12 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [87051] = 3, + [87248] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(3259), 1, aux_sym_number_token1, - ACTIONS(2834), 21, + ACTIONS(3257), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, @@ -80248,6 +84078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -80258,755 +84089,753 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [87081] = 8, - ACTIONS(3), 1, + [87279] = 3, + ACTIONS(9), 1, sym_comment, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2125), 4, + ACTIONS(3339), 1, + aux_sym_number_token1, + ACTIONS(3261), 22, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2127), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [87121] = 17, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [87310] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2409), 1, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2813), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(2815), 1, anon_sym__, - STATE(1050), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2067), 2, - anon_sym_COMMA, + ACTIONS(2413), 2, anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [87179] = 16, + [87371] = 17, + ACTIONS(7), 1, + anon_sym_DASH_GT, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2866), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2870), 1, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, anon_sym_BANG, - ACTIONS(2872), 1, + ACTIONS(2215), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2878), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + ACTIONS(2225), 1, sym_operator, - ACTIONS(2884), 1, + ACTIONS(2227), 1, sym_id, - STATE(2795), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - ACTIONS(7), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1677), 3, + STATE(1658), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(1742), 4, + STATE(965), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [87235] = 17, - ACTIONS(3), 1, + [87430] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1001), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2095), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [87293] = 17, + [87459] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3341), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(3344), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(3347), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(3350), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(3353), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3359), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3362), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3365), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3368), 1, sym_id, - STATE(1030), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2127), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(3356), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1651), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + ACTIONS(2362), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [87351] = 16, + [87518] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LPAREN, - ACTIONS(2866), 1, - anon_sym_forall, - ACTIONS(2868), 1, + ACTIONS(11), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, - anon_sym_BANG, - ACTIONS(2872), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, - aux_sym_type_unit_token1, - ACTIONS(2876), 1, - sym_type_implicit_var, - ACTIONS(2878), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, - anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, - sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [87407] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 14, + ACTIONS(2205), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, anon_sym_BANG, + ACTIONS(2215), 1, anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, + ACTIONS(2225), 1, sym_operator, + ACTIONS(2227), 1, sym_id, - [87441] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1723), 3, + STATE(1660), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(1697), 4, + STATE(965), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - ACTIONS(15), 14, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, - sym_operator, - sym_id, - [87475] = 18, + [87577] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2367), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2373), 1, + anon_sym_or, + ACTIONS(2375), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2381), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2384), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2387), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2390), 1, sym_id, - ACTIONS(2125), 1, - anon_sym_or, - ACTIONS(2127), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(3371), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(3374), 1, anon_sym_BANG, - ACTIONS(2395), 1, + ACTIONS(3377), 1, anon_sym__, - STATE(1026), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2362), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2378), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [87535] = 17, - ACTIONS(3), 1, + [87638] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(1056), 23, anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_BANG, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2123), 2, + sym_qualified_id, + sym_force_id, + [87667] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3380), 23, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [87593] = 5, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [87696] = 2, ACTIONS(9), 1, sym_comment, - STATE(2829), 1, - sym_primitive_reverse_atom, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(3382), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [87725] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [87754] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(13), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, sym_operator, + ACTIONS(2227), 1, sym_id, - [87627] = 18, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [87813] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2367), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2373), 1, + anon_sym_or, + ACTIONS(2375), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2381), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2384), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2387), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2390), 1, sym_id, - ACTIONS(2121), 1, - anon_sym_or, - ACTIONS(2123), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(3384), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(3387), 1, anon_sym_BANG, - ACTIONS(2395), 1, + ACTIONS(3390), 1, anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2362), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2378), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [87687] = 16, + [87874] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(15), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2866), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2870), 1, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, anon_sym_BANG, - ACTIONS(2872), 1, + ACTIONS(2215), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2878), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + ACTIONS(2225), 1, sym_operator, - ACTIONS(2884), 1, + ACTIONS(2227), 1, sym_id, - STATE(2795), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1698), 3, + STATE(997), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(1742), 4, + STATE(965), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [87743] = 8, - ACTIONS(3), 1, + [87933] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2065), 4, + ACTIONS(3393), 23, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2067), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [87783] = 8, - ACTIONS(3), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [87962] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2093), 4, + ACTIONS(1046), 23, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2095), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [87823] = 8, - ACTIONS(3), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [87991] = 17, + ACTIONS(9), 1, sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2117), 5, + ACTIONS(17), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2119), 8, - anon_sym_EQ, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [87863] = 17, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(1670), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [88050] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2393), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2497), 1, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2501), 1, + ACTIONS(2813), 1, anon_sym_BANG, - ACTIONS(2503), 1, + ACTIONS(2815), 1, anon_sym__, - STATE(1009), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2123), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + ACTIONS(2395), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [87921] = 17, - ACTIONS(3), 1, + [88111] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(985), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2143), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, - ACTIONS(2149), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2152), 1, sym_floating, - ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(2158), 1, + sym_operator, sym_id, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2889), 1, - anon_sym_BANG, - ACTIONS(2892), 1, - anon_sym__, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2132), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2146), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1641), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [87979] = 8, - ACTIONS(3), 1, + [88140] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2113), 5, + ACTIONS(987), 23, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2115), 8, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88019] = 5, + sym_operator, + sym_id, + [88169] = 2, ACTIONS(9), 1, sym_comment, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(989), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [88053] = 8, + [88198] = 9, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, + ACTIONS(3395), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1738), 2, + STATE(1836), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, + aux_sym_pattern_repeat2, + ACTIONS(2427), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1455), 4, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2099), 9, + ACTIONS(2429), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_BANG, @@ -81016,63 +84845,33 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88093] = 8, + [88241] = 9, ACTIONS(3), 1, sym_comment, - STATE(1026), 1, + ACTIONS(3397), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1464), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(1695), 2, + STATE(1834), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2109), 5, + aux_sym_pattern_repeat2, + ACTIONS(2315), 4, anon_sym_LPAREN, anon_sym__, - anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2111), 8, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [88133] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 8, - anon_sym_EQ, + ACTIONS(2317), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -81080,207 +84879,293 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88173] = 17, - ACTIONS(3), 1, + [88284] = 17, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(19), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, sym_id, - ACTIONS(2409), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [88343] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 23, anon_sym_LPAREN, - ACTIONS(2413), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2415), 1, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2123), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [88231] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [88372] = 17, ACTIONS(9), 1, sym_comment, - ACTIONS(2895), 1, + ACTIONS(19), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2898), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(2901), 1, - anon_sym_DASH_GT, - ACTIONS(2904), 1, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, anon_sym_BANG, - ACTIONS(2907), 1, + ACTIONS(2215), 1, anon_sym_BANG_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2913), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2916), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2919), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2922), 1, + ACTIONS(2225), 1, sym_operator, - ACTIONS(2925), 1, + ACTIONS(2227), 1, sym_id, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - ACTIONS(68), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1648), 3, + STATE(1679), 3, sym_type, sym_type_effect_suffix, aux_sym_type_repeat2, - STATE(1712), 4, + STATE(965), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [88287] = 8, + [88431] = 18, ACTIONS(3), 1, sym_comment, - STATE(1026), 1, + ACTIONS(2397), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + STATE(1233), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1236), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(1695), 2, + ACTIONS(2399), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2101), 5, + [88492] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3399), 23, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(2103), 8, - anon_sym_EQ, + sym_qualified_id, + sym_force_id, + [88521] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88327] = 8, - ACTIONS(3), 1, + sym_operator, + sym_id, + [88550] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2097), 5, + ACTIONS(991), 23, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 8, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88367] = 8, - ACTIONS(3), 1, + sym_operator, + sym_id, + [88579] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2093), 5, + ACTIONS(993), 23, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2095), 8, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88407] = 8, + sym_operator, + sym_id, + [88608] = 8, ACTIONS(3), 1, sym_comment, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - STATE(1695), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2065), 5, + ACTIONS(2477), 5, anon_sym_LPAREN, anon_sym__, anon_sym_or, aux_sym_integer_token1, sym_id, - ACTIONS(2067), 8, + ACTIONS(2479), 9, + anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, @@ -81289,93 +85174,169 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88447] = 8, + [88649] = 17, + ACTIONS(9), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_DASH_GT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2211), 1, + anon_sym_EQ_GT, + ACTIONS(2213), 1, + anon_sym_BANG, + ACTIONS(2215), 1, + anon_sym_BANG_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(997), 3, + sym_type, + sym_type_effect_suffix, + aux_sym_type_repeat2, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [88708] = 18, ACTIONS(3), 1, sym_comment, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, anon_sym__, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(1455), 4, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + ACTIONS(2273), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1659), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2103), 9, + [88769] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1054), 23, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88487] = 8, - ACTIONS(3), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [88798] = 2, + ACTIONS(9), 1, sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, + ACTIONS(995), 23, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2107), 9, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [88527] = 8, + sym_operator, + sym_id, + [88827] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2109), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2111), 9, + ACTIONS(2433), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2435), 9, anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, @@ -81385,71 +85346,32 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88567] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [88623] = 8, + [88868] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1659), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2115), 9, + ACTIONS(2401), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2403), 9, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -81457,31 +85379,32 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88663] = 8, + [88909] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1659), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2119), 9, + ACTIONS(2405), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2407), 9, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -81489,315 +85412,197 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [88703] = 17, + [88950] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2143), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2149), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2152), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2155), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2158), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(2950), 1, + ACTIONS(3401), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1816), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [89011] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2953), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2956), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, anon_sym__, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2132), 2, + ACTIONS(2269), 2, anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2146), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [88761] = 16, + [89072] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(997), 23, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2934), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2936), 1, anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2948), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1656), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [88817] = 16, + [89101] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(999), 23, anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1764), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [88873] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [88929] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 14, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_RBRACK, - sym_operator, - sym_id, - [88963] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2963), 1, anon_sym_DASH_GT, - ACTIONS(2965), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2967), 1, anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2979), 1, sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1762), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89019] = 5, - ACTIONS(9), 1, + [89130] = 18, + ACTIONS(3), 1, sym_comment, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(3073), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3077), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_RBRACK, - sym_operator, - sym_id, - [89053] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - STATE(1050), 1, + ACTIONS(3403), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2127), 2, + ACTIONS(2273), 2, anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + STATE(1848), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [89111] = 3, + [89191] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2983), 1, - aux_sym_number_token1, - ACTIONS(2981), 21, + ACTIONS(3405), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -81806,6 +85611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -81816,428 +85622,171 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [89141] = 5, + [89220] = 2, ACTIONS(9), 1, sym_comment, - STATE(2795), 1, - sym_primitive_reverse_atom, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 14, + ACTIONS(3407), 23, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [89175] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1683), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89231] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [89249] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2411), 5, anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, + ACTIONS(2413), 9, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1676), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89287] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1665), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89343] = 16, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [89290] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(1001), 23, anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_forall, - ACTIONS(2991), 1, - anon_sym_DASH_GT, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(2997), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3000), 1, - aux_sym_type_unit_token1, - ACTIONS(3003), 1, - sym_type_implicit_var, - ACTIONS(3006), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3009), 1, - anon_sym_POUND_BANG, - ACTIONS(3012), 1, - sym_operator, - ACTIONS(3015), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89399] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1663), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89455] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2795), 1, - sym_primitive_reverse_atom, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 14, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [89489] = 16, + [89319] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(3409), 23, anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1662), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89545] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 14, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [89579] = 16, + sym_qualified_id, + sym_force_id, + [89348] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3018), 1, + ACTIONS(1003), 23, anon_sym_LPAREN, - ACTIONS(3021), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3024), 1, anon_sym_DASH_GT, - ACTIONS(3027), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3030), 1, anon_sym_BANG_LBRACE, - ACTIONS(3033), 1, aux_sym_type_unit_token1, - ACTIONS(3036), 1, sym_type_implicit_var, - ACTIONS(3039), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3042), 1, anon_sym_POUND_BANG, - ACTIONS(3045), 1, - sym_operator, - ACTIONS(3048), 1, - sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89635] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1659), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2121), 4, - anon_sym_LPAREN, anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2123), 9, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_BANG, - aux_sym_type_unit_token1, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [89675] = 8, + sym_operator, + sym_id, + [89377] = 8, ACTIONS(3), 1, sym_comment, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2125), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2127), 9, + ACTIONS(2411), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2413), 9, anon_sym_COMMA, anon_sym_EQ, anon_sym_BANG, @@ -82247,395 +85796,256 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [89715] = 17, + [89418] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(3081), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - STATE(1030), 1, + ACTIONS(3411), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2119), 2, + ACTIONS(2395), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1854), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [89773] = 16, + [89479] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(1003), 23, anon_sym_LPAREN, - ACTIONS(2961), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2963), 1, anon_sym_DASH_GT, - ACTIONS(2965), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2967), 1, anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1754), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89829] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3054), 1, - anon_sym_forall, - ACTIONS(3057), 1, - anon_sym_DASH_GT, - ACTIONS(3060), 1, - anon_sym_BANG, - ACTIONS(3063), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3066), 1, - aux_sym_type_unit_token1, - ACTIONS(3069), 1, - sym_type_implicit_var, - ACTIONS(3072), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3075), 1, - anon_sym_POUND_BANG, - ACTIONS(3078), 1, - sym_operator, - ACTIONS(3081), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [89885] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 14, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_RBRACK, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [89919] = 17, + [89508] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(3081), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - STATE(1030), 1, + ACTIONS(3413), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2115), 2, + ACTIONS(2399), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1857), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [89977] = 16, - ACTIONS(9), 1, + [89569] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90033] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2959), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2417), 2, anon_sym_COMMA, anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1750), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90089] = 16, - ACTIONS(9), 1, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [89630] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2393), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90145] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2795), 1, - sym_primitive_reverse_atom, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(2695), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(2699), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [89691] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_do, - sym_operator, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - [90179] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2842), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, - aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, - sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 3, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2399), 2, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90235] = 3, + anon_sym_PIPE, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [89752] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_number_token1, - ACTIONS(3084), 21, + ACTIONS(3415), 23, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -82644,6 +86054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -82654,1764 +86065,1475 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [90265] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1685), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90321] = 5, - ACTIONS(9), 1, + [89781] = 18, + ACTIONS(3), 1, sym_comment, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 14, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - [90355] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2928), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2273), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1687), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90411] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2795), 1, - sym_primitive_reverse_atom, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 14, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_do, - sym_operator, - sym_id, - [90445] = 18, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [89842] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 1, - anon_sym_EQ, - ACTIONS(2441), 1, - aux_sym_type_unit_token1, - ACTIONS(2447), 1, + ACTIONS(2267), 1, anon_sym_or, - ACTIONS(2449), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2455), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2458), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2461), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2464), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3088), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(3091), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(3094), 1, + ACTIONS(2701), 1, anon_sym__, - STATE(1026), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2452), 2, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [90505] = 16, + [89903] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(1001), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90561] = 16, + [89932] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2477), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2479), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [89973] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(1003), 23, anon_sym_LPAREN, - ACTIONS(2814), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2816), 1, anon_sym_DASH_GT, - ACTIONS(2818), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2820), 1, anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, sym_type_implicit_var, - ACTIONS(2826), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1634), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90617] = 16, - ACTIONS(9), 1, + [90002] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2433), 5, anon_sym_LPAREN, - ACTIONS(2866), 1, - anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2870), 1, - anon_sym_BANG, - ACTIONS(2872), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, - aux_sym_type_unit_token1, - ACTIONS(2876), 1, - sym_type_implicit_var, - ACTIONS(2878), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, - anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, + ACTIONS(2435), 9, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90673] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, - sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1605), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [90729] = 5, - ACTIONS(9), 1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90043] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 14, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1608), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(1843), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [90763] = 17, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90084] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2415), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2111), 2, + ACTIONS(2417), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [90821] = 17, + [90145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2267), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2269), 9, + anon_sym_EQ, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, + [90186] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3081), 1, anon_sym__, - STATE(1050), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3417), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2099), 2, + ACTIONS(2417), 2, anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + STATE(1861), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [90879] = 17, + [90247] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - STATE(1050), 1, + ACTIONS(3419), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2103), 2, + ACTIONS(2413), 2, anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + STATE(1862), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [90937] = 17, + [90308] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2271), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - STATE(1030), 1, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + STATE(1233), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2107), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2273), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [90995] = 17, + [90369] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2271), 5, anon_sym_LPAREN, - ACTIONS(2331), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 9, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(2333), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, - anon_sym__, - ACTIONS(2339), 1, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90410] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - STATE(1030), 1, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2699), 1, + anon_sym_BANG, + ACTIONS(2701), 1, + anon_sym__, + STATE(1208), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2103), 2, + ACTIONS(2435), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91053] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1604), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91109] = 17, + [90471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2411), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(2643), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2099), 2, + ACTIONS(2413), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91167] = 16, + [90532] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(1001), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, - anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2870), 1, - anon_sym_BANG, - ACTIONS(2872), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, - aux_sym_type_unit_token1, - ACTIONS(2876), 1, - sym_type_implicit_var, - ACTIONS(2878), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, - anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, - sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1733), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91223] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, anon_sym_forall, - ACTIONS(2816), 1, anon_sym_DASH_GT, - ACTIONS(2818), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2820), 1, anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, sym_type_implicit_var, - ACTIONS(2826), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2832), 1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1602), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91279] = 17, + [90561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(3081), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - STATE(1030), 1, + ACTIONS(3421), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2095), 2, + ACTIONS(2429), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1865), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91337] = 17, + [90622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2335), 1, + ACTIONS(3081), 1, anon_sym__, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - STATE(1030), 1, + ACTIONS(3423), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2067), 2, + ACTIONS(2317), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2341), 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1641), 2, + STATE(1866), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91395] = 16, + [90683] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(999), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1614), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91451] = 17, + [90712] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1659), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(2339), 1, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, + [90753] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2127), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1738), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91509] = 16, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 9, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90794] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(999), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91565] = 16, - ACTIONS(9), 1, + [90823] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1643), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2267), 4, anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, - anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, - aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2269), 10, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1759), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91621] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, - sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1630), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91677] = 3, - ACTIONS(9), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90864] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - aux_sym_number_token1, - ACTIONS(2981), 21, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1641), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2271), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2273), 10, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [91707] = 16, - ACTIONS(9), 1, + [90905] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2393), 5, anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 9, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1726), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91763] = 16, - ACTIONS(9), 1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90946] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2415), 5, anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2818), 1, - anon_sym_BANG, - ACTIONS(2820), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, + ACTIONS(2417), 9, anon_sym_EQ, - anon_sym_or, + anon_sym_BANG, + aux_sym_type_unit_token1, anon_sym_LT_DASH, - STATE(1601), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91819] = 16, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [90987] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(997), 23, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2934), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2936), 1, anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2948), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1700), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91875] = 18, + [91016] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2477), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2117), 1, - anon_sym_or, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2699), 1, anon_sym_BANG, - ACTIONS(2395), 1, + ACTIONS(2701), 1, anon_sym__, - STATE(1026), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1209), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2479), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [91935] = 16, + [91077] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(995), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1696), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [91991] = 16, + [91106] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(993), 23, anon_sym_LPAREN, - ACTIONS(3102), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3105), 1, anon_sym_DASH_GT, - ACTIONS(3108), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3111), 1, anon_sym_BANG_LBRACE, - ACTIONS(3114), 1, aux_sym_type_unit_token1, - ACTIONS(3117), 1, sym_type_implicit_var, - ACTIONS(3120), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3123), 1, anon_sym_POUND_BANG, - ACTIONS(3126), 1, - sym_operator, - ACTIONS(3129), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 3, - anon_sym_EQ, + anon_sym__, anon_sym_or, anon_sym_LT_DASH, - STATE(1723), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92047] = 16, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [91135] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(991), 23, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2934), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2936), 1, anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2948), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1732), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92103] = 16, + [91164] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3425), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, - anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, - aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2862), 1, + sym_macro_id, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1689), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92159] = 5, + sym_qualified_id, + sym_force_id, + [91193] = 2, ACTIONS(9), 1, sym_comment, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 14, + ACTIONS(973), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [92193] = 16, + [91222] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(997), 23, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2934), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2936), 1, anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, - sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1692), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92249] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(1965), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2113), 1, - anon_sym_or, - ACTIONS(2115), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [92309] = 16, + [91251] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(995), 23, anon_sym_LPAREN, - ACTIONS(2814), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2816), 1, anon_sym_DASH_GT, - ACTIONS(2818), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2820), 1, anon_sym_BANG_LBRACE, - ACTIONS(2822), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, sym_type_implicit_var, - ACTIONS(2826), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, - sym_id, - STATE(2829), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT_DASH, - STATE(1598), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92365] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1641), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2125), 4, - anon_sym_LPAREN, anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2127), 9, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_BANG, - aux_sym_type_unit_token1, + anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, + aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - [92405] = 8, + sym_operator, + sym_id, + [91280] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1641), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2121), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - STATE(1291), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2123), 9, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(2411), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2413), 9, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, + anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [92445] = 5, + [91321] = 2, ACTIONS(9), 1, sym_comment, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1672), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 14, + ACTIONS(993), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [92479] = 16, + [91350] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(971), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, - sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1677), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92535] = 17, - ACTIONS(3), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [91379] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(989), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, + [91408] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 1, + anon_sym_or, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, anon_sym__, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2119), 2, + ACTIONS(2435), 2, anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [92593] = 17, + [91469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2405), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2407), 9, + anon_sym_EQ, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - STATE(1050), 1, + [91510] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1233), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2115), 2, - anon_sym_COMMA, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2401), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2403), 9, anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + sym_floating, + anon_sym_DQUOTE, + [91551] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1640), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + ACTIONS(2393), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [92651] = 8, + ACTIONS(2395), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [91592] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1623), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2065), 4, + aux_sym_pattern_repeat2, + ACTIONS(2397), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2067), 9, + ACTIONS(2399), 10, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -84419,316 +87541,438 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [92691] = 16, + [91633] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(991), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2884), 1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1688), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92747] = 17, - ACTIONS(3), 1, + [91662] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(987), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2143), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2149), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2152), 1, sym_floating, - ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(2158), 1, + sym_operator, sym_id, - ACTIONS(3132), 1, + [91691] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 23, anon_sym_LPAREN, - ACTIONS(3135), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3138), 1, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2132), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2146), 2, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [91720] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [92805] = 16, + ACTIONS(2393), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [91761] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(983), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2884), 1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1694), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [92861] = 18, + [91790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + STATE(1659), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 9, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(1961), 1, anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, + sym_hex_integer, + sym_octet_integer, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(2109), 1, + [91831] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 1, anon_sym_or, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(2635), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2639), 1, anon_sym_BANG, - ACTIONS(2395), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2643), 1, anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2479), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [92921] = 18, - ACTIONS(3), 1, + [91892] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(989), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(1965), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2105), 1, - anon_sym_or, - ACTIONS(2107), 1, + [91921] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2389), 1, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [91950] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 23, anon_sym_LPAREN, - ACTIONS(2393), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2395), 1, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, + anon_sym_or, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [92981] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [91979] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(985), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2884), 1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 3, + [92008] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1674), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [93037] = 16, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [92037] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(973), 23, anon_sym_LPAREN, - ACTIONS(2866), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(2868), 1, anon_sym_DASH_GT, - ACTIONS(2870), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2872), 1, anon_sym_BANG_LBRACE, - ACTIONS(2874), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, sym_type_implicit_var, - ACTIONS(2878), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2884), 1, sym_id, - STATE(2795), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 3, + [92066] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_do, - STATE(1668), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1742), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [93093] = 8, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [92095] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1618), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2093), 4, + aux_sym_pattern_repeat2, + ACTIONS(2415), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2095), 9, + ACTIONS(2417), 10, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -84736,31 +87980,32 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [93133] = 8, + [92136] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1505), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1616), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2097), 4, + aux_sym_pattern_repeat2, + ACTIONS(2411), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2099), 9, + ACTIONS(2413), 10, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -84768,441 +88013,340 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [93173] = 17, - ACTIONS(3), 1, + [92177] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(977), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2497), 1, + [92206] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3427), 23, anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2119), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2341), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [93231] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2115), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [93289] = 17, + sym_qualified_id, + sym_force_id, + [92235] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2267), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2409), 1, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2813), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(2815), 1, anon_sym__, - STATE(1050), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1067), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2107), 2, - anon_sym_COMMA, + ACTIONS(2269), 2, anon_sym_EQ, - ACTIONS(2341), 2, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1659), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [93347] = 17, + [92296] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2433), 1, + anon_sym_or, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2497), 1, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2501), 1, + ACTIONS(2813), 1, anon_sym_BANG, - ACTIONS(2503), 1, + ACTIONS(2815), 1, anon_sym__, - STATE(1009), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2099), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + ACTIONS(2435), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [93405] = 16, + [92357] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(981), 23, anon_sym_LPAREN, - ACTIONS(2961), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2963), 1, anon_sym_DASH_GT, - ACTIONS(2965), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2967), 1, anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2979), 1, sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [93461] = 17, - ACTIONS(3), 1, + [92386] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(979), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2497), 1, + [92415] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 23, anon_sym_LPAREN, - ACTIONS(2501), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2503), 1, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2095), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + anon_sym_or, + anon_sym_LT_DASH, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [93519] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, sym_id, - ACTIONS(2093), 1, - anon_sym_or, - ACTIONS(2095), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, + [92444] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, sym_string, - STATE(2349), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1695), 2, + STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [93579] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2271), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, sym_id, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2067), 1, + ACTIONS(2273), 9, + anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - STATE(1026), 1, - sym_pattern_var, - STATE(1031), 1, - sym_string, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [93639] = 16, + sym_floating, + anon_sym_DQUOTE, + [92485] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(977), 23, anon_sym_LPAREN, - ACTIONS(2961), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2963), 1, anon_sym_DASH_GT, - ACTIONS(2965), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2967), 1, anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2979), 1, sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [93695] = 17, - ACTIONS(3), 1, + [92514] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(971), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - anon_sym_BANG, - ACTIONS(2415), 1, - anon_sym__, - STATE(1050), 1, - sym_pattern_var, - STATE(1067), 1, + [92543] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, sym_string, - STATE(2333), 1, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, sym_integer, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, STATE(1659), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1225), 4, + aux_sym_pattern_repeat2, + STATE(1569), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [93753] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1030), 1, - sym_pattern_var, - STATE(1032), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(1641), 2, - sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2101), 4, + ACTIONS(2267), 5, anon_sym_LPAREN, anon_sym__, + anon_sym_or, aux_sym_integer_token1, sym_id, - STATE(1291), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - ACTIONS(2103), 9, + ACTIONS(2269), 9, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -85210,195 +88354,223 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [93793] = 18, + [92584] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_BANG, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(2101), 1, - anon_sym_or, - ACTIONS(2103), 1, - anon_sym_EQ, - ACTIONS(2389), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - anon_sym_BANG, - ACTIONS(2395), 1, - anon_sym__, - STATE(1026), 1, + ACTIONS(3097), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1464), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(1843), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1875), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [93853] = 17, - ACTIONS(3), 1, + [92645] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(975), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2497), 1, + [92674] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3429), 23, anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2111), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2341), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [93911] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [92703] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(969), 23, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2850), 1, anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, - sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1648), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [93967] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, + anon_sym__, + anon_sym_or, + anon_sym_LT_DASH, anon_sym_QMARK, - ACTIONS(2343), 1, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, + [92732] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1528), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - ACTIONS(2107), 2, + STATE(1614), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2427), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2429), 10, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2341), 2, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, + sym_floating, + anon_sym_DQUOTE, + [92773] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1611), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + ACTIONS(2315), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1711), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [94025] = 8, + ACTIONS(2317), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [92814] = 9, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + ACTIONS(3047), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1809), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2105), 4, + aux_sym_pattern_repeat2, + ACTIONS(1841), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1782), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2107), 9, + ACTIONS(1843), 9, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_BANG, aux_sym_type_unit_token1, anon_sym_QMARK, @@ -85406,192 +88578,287 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [94065] = 16, + [92857] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 22, anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2965), 1, - anon_sym_BANG, - ACTIONS(2967), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, - sym_type_implicit_var, - ACTIONS(2973), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, - anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, - sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 3, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_RBRACK, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94121] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(2497), 1, - anon_sym_LPAREN, - ACTIONS(2501), 1, - anon_sym_BANG, - ACTIONS(2503), 1, - anon_sym__, - STATE(1009), 1, - sym_pattern_var, - STATE(1065), 1, - sym_string, - STATE(2333), 1, - sym_integer, - ACTIONS(2103), 2, + sym_qualified_id, + sym_force_id, + [92888] = 3, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, - sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [94179] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [92919] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(931), 23, anon_sym_LPAREN, - ACTIONS(2961), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2963), 1, anon_sym_DASH_GT, - ACTIONS(2965), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(2967), 1, anon_sym_BANG_LBRACE, - ACTIONS(2969), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(2979), 1, sym_id, - STATE(2787), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 3, + [92948] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 23, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym__, + anon_sym_or, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_id, + [92977] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1132), 23, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(1682), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1671), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94235] = 18, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [93006] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2405), 1, + anon_sym_or, + ACTIONS(2635), 1, + anon_sym_LPAREN, + ACTIONS(2639), 1, + anon_sym_BANG, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2643), 1, + anon_sym__, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(2097), 1, - anon_sym_or, - ACTIONS(2099), 1, + STATE(1295), 1, + sym_string, + STATE(1297), 1, + sym_pattern_var, + STATE(2739), 1, + sym_integer, + ACTIONS(2407), 2, + anon_sym_COMMA, anon_sym_EQ, - ACTIONS(2389), 1, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1659), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1569), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [93067] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2813), 1, anon_sym_BANG, - ACTIONS(2395), 1, + ACTIONS(2815), 1, anon_sym__, - STATE(1026), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1031), 1, + STATE(1236), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + ACTIONS(2479), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1695), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1295), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [94295] = 8, + [93128] = 9, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + ACTIONS(3431), 1, + anon_sym_COLON, + STATE(1442), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1464), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(1641), 2, + STATE(1883), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2117), 4, + aux_sym_pattern_repeat2, + ACTIONS(2267), 4, anon_sym_LPAREN, anon_sym__, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2269), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93171] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2119), 9, + ACTIONS(2477), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2479), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_BANG, @@ -85601,63 +88868,208 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [94335] = 16, - ACTIONS(9), 1, + [93212] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2433), 5, anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2848), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2435), 9, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_BANG, - ACTIONS(2850), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2852), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, - sym_type_implicit_var, - ACTIONS(2856), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, - anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93253] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(2815), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 3, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2403), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [93314] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2267), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2269), 9, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - STATE(1643), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94391] = 3, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93355] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2405), 1, + anon_sym_or, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(2809), 1, + anon_sym_LPAREN, + ACTIONS(2813), 1, + anon_sym_BANG, + ACTIONS(2815), 1, + anon_sym__, + STATE(1233), 1, + sym_pattern_var, + STATE(1236), 1, + sym_string, + STATE(2739), 1, + sym_integer, + ACTIONS(2407), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1798), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1479), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [93416] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2271), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93457] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_number_token1, - ACTIONS(3084), 21, + ACTIONS(1086), 23, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -85668,70 +89080,106 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [94421] = 17, + [93486] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2367), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2373), 1, + anon_sym_or, + ACTIONS(2375), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2381), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2384), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2387), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2390), 1, sym_id, - ACTIONS(2497), 1, + ACTIONS(3433), 1, anon_sym_LPAREN, - ACTIONS(2501), 1, + ACTIONS(3436), 1, anon_sym_BANG, - ACTIONS(2503), 1, + ACTIONS(3439), 1, anon_sym__, - STATE(1009), 1, + STATE(1233), 1, sym_pattern_var, - STATE(1065), 1, + STATE(1236), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2341), 2, + ACTIONS(2362), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + ACTIONS(2378), 2, sym_hex_integer, sym_octet_integer, - STATE(1738), 2, + STATE(1798), 2, sym_pattern, - aux_sym_pattern_repeat1, - STATE(1455), 4, + aux_sym_pattern_repeat2, + STATE(1479), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [94479] = 8, + [93547] = 8, ACTIONS(3), 1, sym_comment, - STATE(1030), 1, + STATE(1208), 1, sym_pattern_var, - STATE(1032), 1, + STATE(1209), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(1641), 2, + STATE(1653), 2, sym_pattern, - aux_sym_pattern_repeat1, - ACTIONS(2113), 4, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2397), 5, anon_sym_LPAREN, anon_sym__, + anon_sym_or, aux_sym_integer_token1, sym_id, - STATE(1291), 4, + ACTIONS(2399), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93588] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - ACTIONS(2115), 9, + ACTIONS(2393), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 9, anon_sym_COMMA, anon_sym_PIPE, anon_sym_BANG, @@ -85741,21 +89189,90 @@ static const uint16_t ts_small_parse_table[] = { sym_octet_integer, sym_floating, anon_sym_DQUOTE, - [94519] = 2, - ACTIONS(9), 1, + [93629] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1208), 1, + sym_pattern_var, + STATE(1209), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(1653), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1538), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2415), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2417), 9, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93670] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(845), 21, + ACTIONS(3442), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1884), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2271), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2273), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93713] = 3, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 21, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -85766,14 +89283,17 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [94546] = 2, + [93743] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 21, + ACTIONS(971), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -85781,8 +89301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, @@ -85791,206 +89309,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [94573] = 16, - ACTIONS(9), 1, + [93771] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2401), 4, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1858), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94628] = 5, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2403), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93811] = 2, ACTIONS(9), 1, sym_comment, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, + ACTIONS(1086), 22, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [94661] = 5, + sym_qualified_id, + sym_force_id, + [93839] = 2, ACTIONS(9), 1, sym_comment, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, + ACTIONS(973), 22, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [94694] = 5, + [93867] = 2, ACTIONS(9), 1, sym_comment, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(993), 22, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [94727] = 5, + [93895] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2405), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2407), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [93935] = 2, ACTIONS(9), 1, sym_comment, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, + ACTIONS(1003), 22, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [94760] = 16, + [93963] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(1001), 22, anon_sym_LPAREN, - ACTIONS(3166), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3169), 1, anon_sym_DASH_GT, - ACTIONS(3172), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3175), 1, anon_sym_BANG_LBRACE, - ACTIONS(3178), 1, aux_sym_type_unit_token1, - ACTIONS(3181), 1, sym_type_implicit_var, - ACTIONS(3184), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3187), 1, anon_sym_POUND_BANG, - ACTIONS(3190), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3193), 1, sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 2, - anon_sym_SEMI_SEMI, + [93991] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1056), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94815] = 2, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [94019] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 21, + ACTIONS(999), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86006,111 +89555,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [94842] = 5, + [94047] = 2, ACTIONS(9), 1, sym_comment, - STATE(2842), 1, - sym_primitive_reverse_atom, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, + ACTIONS(997), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [94875] = 5, + [94075] = 2, ACTIONS(9), 1, sym_comment, - STATE(2842), 1, - sym_primitive_reverse_atom, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(995), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [94908] = 16, - ACTIONS(9), 1, + [94103] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2479), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1859), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [94963] = 2, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [94161] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 21, + ACTIONS(991), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86126,16 +89674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [94990] = 2, + [94189] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 21, + ACTIONS(989), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86151,55 +89700,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [95017] = 16, + [94217] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(987), 22, anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3200), 1, anon_sym_DASH_GT, - ACTIONS(3202), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3204), 1, anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, sym_type_implicit_var, - ACTIONS(3210), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3216), 1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1805), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95072] = 2, + [94245] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 21, + ACTIONS(985), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86215,83 +89752,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [95099] = 16, + [94273] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(983), 22, anon_sym_LPAREN, - ACTIONS(3220), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3226), 1, anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, sym_type_implicit_var, - ACTIONS(3232), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, anon_sym_POUND_BANG, - ACTIONS(3236), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3238), 1, sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1926), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95154] = 5, + [94301] = 2, ACTIONS(9), 1, sym_comment, - STATE(2842), 1, - sym_primitive_reverse_atom, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, + ACTIONS(981), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, sym_id, - [95187] = 2, + [94329] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 21, + ACTIONS(979), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86307,16 +89830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [95214] = 2, + [94357] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 21, + ACTIONS(977), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86332,44 +89856,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [95241] = 5, + [94385] = 2, ACTIONS(9), 1, sym_comment, - STATE(2842), 1, - sym_primitive_reverse_atom, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, + ACTIONS(1132), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [94413] = 3, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [95274] = 2, + sym_qualified_id, + sym_force_id, + [94443] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 21, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [94473] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -86385,233 +89962,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_operator, sym_id, - [95301] = 16, + [94501] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(3259), 1, + aux_sym_number_token1, + ACTIONS(3257), 21, anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3216), 1, + sym_macro_id, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1803), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95356] = 16, + sym_qualified_id, + sym_force_id, + [94531] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(969), 22, anon_sym_LPAREN, - ACTIONS(3220), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3222), 1, anon_sym_DASH_GT, - ACTIONS(3224), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3226), 1, anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, sym_type_implicit_var, - ACTIONS(3232), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, anon_sym_POUND_BANG, - ACTIONS(3236), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3238), 1, sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1931), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95411] = 16, + [94559] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(931), 22, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, - sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1860), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95466] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1924), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95521] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3200), 1, anon_sym_DASH_GT, - ACTIONS(3202), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(3204), 1, anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, sym_type_implicit_var, - ACTIONS(3210), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym__, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3216), 1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95576] = 5, + [94587] = 3, ACTIONS(9), 1, sym_comment, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, + ACTIONS(3444), 1, + aux_sym_number_token1, + ACTIONS(3261), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [95609] = 2, + sym_qualified_id, + sym_force_id, + [94617] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3240), 21, + ACTIONS(3321), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, @@ -86623,6 +90083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -86633,439 +90094,202 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [95636] = 16, - ACTIONS(9), 1, + [94645] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2411), 4, anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2413), 9, anon_sym_COMMA, - anon_sym_EQ, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95691] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, + anon_sym_RPAREN, anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1774), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95746] = 16, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [94685] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(1050), 22, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, - sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95801] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3216), 1, + sym_macro_id, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95856] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [94713] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2415), 4, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95911] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2417), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, - sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [95966] = 16, - ACTIONS(9), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [94753] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2393), 4, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96021] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(919), 21, - anon_sym_LPAREN, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2395), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_id, - [96048] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, - sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96103] = 2, + [94793] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 21, + ACTIONS(3323), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [96130] = 5, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [94821] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2397), 4, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, + anon_sym__, + aux_sym_integer_token1, sym_id, - [96163] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, - anon_sym_LPAREN, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2399), 9, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [96196] = 2, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [94861] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 21, + ACTIONS(1046), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87076,61 +90300,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96223] = 16, + [94889] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(3415), 22, anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1775), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96278] = 3, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2840), 1, - aux_sym_number_token1, - ACTIONS(2838), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87141,22 +90326,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96307] = 3, + [94917] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_number_token1, - ACTIONS(2834), 20, + ACTIONS(3427), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87167,21 +90352,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96336] = 2, + [94945] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 21, + ACTIONS(3427), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87192,21 +90378,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96363] = 2, + [94973] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 21, + ACTIONS(3393), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87217,49 +90404,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96390] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [96423] = 2, + [95001] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 21, + ACTIONS(1132), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87270,99 +90430,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96450] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1776), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96505] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, - sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1800), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96560] = 2, + [95029] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 21, + ACTIONS(3399), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87373,21 +90456,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96587] = 2, + [95057] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 21, + ACTIONS(3299), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87398,46 +90482,63 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96614] = 2, - ACTIONS(9), 1, + [95085] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(969), 21, + ACTIONS(3073), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3077), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3081), 1, anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(3095), 1, sym_id, - [96641] = 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95143] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 21, + ACTIONS(3409), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87448,21 +90549,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96668] = 2, + [95171] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 21, + ACTIONS(1086), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87473,21 +90575,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96695] = 2, + [95199] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 21, + ACTIONS(3429), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87498,21 +90601,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96722] = 2, + [95227] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 21, + ACTIONS(3407), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87523,21 +90627,23 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96749] = 2, + [95255] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 21, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87548,124 +90654,64 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96776] = 2, - ACTIONS(9), 1, + [95285] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(919), 21, + ACTIONS(3073), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3077), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3081), 1, anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, - sym_id, - [96803] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, + ACTIONS(3095), 1, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96858] = 16, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95343] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3259), 1, + aux_sym_number_token1, + ACTIONS(3257), 21, anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 2, anon_sym_EQ, - anon_sym_or, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [96913] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(915), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -87676,394 +90722,416 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [96940] = 2, + [95373] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 21, + ACTIONS(3446), 1, + aux_sym_number_token1, + ACTIONS(3261), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [96967] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [95403] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97022] = 16, - ACTIONS(9), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2273), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95461] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2271), 4, anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, + anon_sym__, + aux_sym_integer_token1, + sym_id, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2273), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1777), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97077] = 2, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [95501] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 21, + ACTIONS(1056), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97104] = 2, + sym_qualified_id, + sym_force_id, + [95529] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 21, + ACTIONS(1054), 22, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97131] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [95557] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1845), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97186] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(13), 13, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95615] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3077), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, - sym_operator, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - [97219] = 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2395), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95673] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 21, + ACTIONS(1050), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97246] = 2, + sym_qualified_id, + sym_force_id, + [95701] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 21, + ACTIONS(3425), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97273] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [95729] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2417), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1802), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97328] = 2, - ACTIONS(9), 1, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95787] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(993), 21, + ACTIONS(3073), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3077), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3081), 1, anon_sym__, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(3095), 1, sym_id, - [97355] = 16, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2413), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95845] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(1046), 22, anon_sym_LPAREN, - ACTIONS(3246), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3264), 1, + sym_macro_id, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97410] = 2, + sym_qualified_id, + sym_force_id, + [95873] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 21, + ACTIONS(3337), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -88074,999 +91142,765 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [97437] = 16, - ACTIONS(9), 1, + [95901] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, + ACTIONS(3347), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, + ACTIONS(3353), 1, + anon_sym_QMARK, + ACTIONS(3359), 1, + aux_sym_integer_token1, + ACTIONS(3362), 1, + sym_floating, + ACTIONS(3365), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, + ACTIONS(3448), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym__, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2362), 2, anon_sym_COMMA, - anon_sym_EQ, - STATE(1818), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97492] = 2, + anon_sym_RPAREN, + ACTIONS(3356), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [95959] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 21, + ACTIONS(3382), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97519] = 2, + sym_qualified_id, + sym_force_id, + [95987] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 21, + ACTIONS(1054), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97546] = 16, + sym_qualified_id, + sym_force_id, + [96015] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 21, anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3216), 1, + sym_macro_id, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_COMMA, - anon_sym_EQ, - STATE(1811), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97601] = 2, + sym_qualified_id, + sym_force_id, + [96045] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 21, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97628] = 16, + sym_qualified_id, + sym_force_id, + [96075] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3329), 22, anon_sym_LPAREN, - ACTIONS(3269), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3272), 1, - anon_sym_DASH_GT, - ACTIONS(3275), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [96103] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3278), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3281), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3284), 1, - sym_type_implicit_var, - ACTIONS(3287), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3290), 1, - anon_sym_POUND_BANG, - ACTIONS(3293), 1, - sym_operator, - ACTIONS(3296), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1852), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97683] = 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2407), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [96161] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 21, + ACTIONS(3457), 1, + aux_sym_number_token1, + ACTIONS(3261), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97710] = 2, + sym_qualified_id, + sym_force_id, + [96191] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 21, + ACTIONS(3259), 1, + aux_sym_number_token1, + ACTIONS(3257), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97737] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [96221] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3073), 1, anon_sym_LPAREN, - ACTIONS(3302), 1, - anon_sym_forall, - ACTIONS(3305), 1, - anon_sym_DASH_GT, - ACTIONS(3308), 1, + ACTIONS(3077), 1, anon_sym_BANG, - ACTIONS(3311), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3314), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(3317), 1, - sym_type_implicit_var, - ACTIONS(3320), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3323), 1, - anon_sym_POUND_BANG, - ACTIONS(3326), 1, - sym_operator, - ACTIONS(3329), 1, + ACTIONS(3081), 1, + anon_sym__, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 2, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + ACTIONS(2403), 2, anon_sym_COMMA, - anon_sym_EQ, - STATE(1855), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [97792] = 2, + anon_sym_RPAREN, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [96279] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 21, + ACTIONS(3335), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97819] = 2, + sym_qualified_id, + sym_force_id, + [96307] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 21, + ACTIONS(3319), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97846] = 5, + sym_qualified_id, + sym_force_id, + [96335] = 2, ACTIONS(9), 1, sym_comment, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(15), 13, + ACTIONS(3315), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97879] = 5, + sym_qualified_id, + sym_force_id, + [96363] = 2, ACTIONS(9), 1, sym_comment, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(11), 13, + ACTIONS(3311), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [97912] = 5, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [96391] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - ACTIONS(7), 13, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2477), 4, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, - sym_operator, + anon_sym__, + aux_sym_integer_token1, sym_id, - [97945] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2479), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1835), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98000] = 16, - ACTIONS(9), 1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [96431] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2433), 4, anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2435), 9, anon_sym_COMMA, - anon_sym_EQ, - STATE(1810), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98055] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(997), 21, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_id, - [98082] = 2, + [96471] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 21, + ACTIONS(3303), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98109] = 16, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [96499] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, + STATE(1442), 1, + sym_pattern_var, + STATE(1464), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(1869), 2, + sym_pattern, + aux_sym_pattern_repeat2, + ACTIONS(2267), 4, anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, + anon_sym__, + aux_sym_integer_token1, sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, + STATE(1782), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + ACTIONS(2269), 9, anon_sym_COMMA, - anon_sym_EQ, - STATE(1797), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98164] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 21, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, anon_sym_QMARK, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, - sym_operator, - sym_id, - [98191] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1791), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98246] = 2, + [96539] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 21, + ACTIONS(3325), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98273] = 16, + sym_qualified_id, + sym_force_id, + [96567] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(3307), 22, anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3202), 1, - anon_sym_BANG, - ACTIONS(3204), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, - sym_operator, - ACTIONS(3216), 1, - sym_id, - STATE(2885), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, anon_sym_COMMA, - anon_sym_EQ, - STATE(1798), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98328] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(991), 21, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98355] = 2, + sym_qualified_id, + sym_force_id, + [96595] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 21, + ACTIONS(3380), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98382] = 2, + sym_qualified_id, + sym_force_id, + [96623] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 21, + ACTIONS(3313), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98409] = 2, + sym_qualified_id, + sym_force_id, + [96651] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 21, + ACTIONS(3309), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98436] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1788), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98491] = 2, + sym_qualified_id, + sym_force_id, + [96679] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 21, + ACTIONS(3305), 22, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98518] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1781), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98573] = 2, + sym_qualified_id, + sym_force_id, + [96707] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 21, + ACTIONS(3327), 22, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98600] = 16, + sym_qualified_id, + sym_force_id, + [96735] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3405), 22, anon_sym_LPAREN, - ACTIONS(3143), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3161), 1, + sym_macro_id, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1808), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98655] = 3, + sym_qualified_id, + sym_force_id, + [96763] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3332), 1, - aux_sym_number_token1, - ACTIONS(2981), 20, + ACTIONS(3301), 22, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89077,12 +91911,10 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [98684] = 3, + [96791] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_number_token1, - ACTIONS(3084), 20, + ACTIONS(3323), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, @@ -89093,6 +91925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89103,327 +91936,315 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [98713] = 2, + [96818] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 21, + ACTIONS(3393), 21, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98740] = 16, + sym_qualified_id, + sym_force_id, + [96845] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3155), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + ACTIONS(2227), 1, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1806), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98795] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3246), 1, + ACTIONS(3461), 1, + anon_sym_RBRACE, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, + ACTIONS(3467), 1, + anon_sym_DOT_DOT, + ACTIONS(3469), 1, sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - ACTIONS(100), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1832), 3, + STATE(3435), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [98850] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, + ACTIONS(3465), 2, anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, - sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1780), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [98905] = 2, + [96900] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 21, + ACTIONS(3319), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98932] = 2, + sym_qualified_id, + sym_force_id, + [96927] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 21, + ACTIONS(3382), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [98959] = 16, + sym_qualified_id, + sym_force_id, + [96954] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3259), 1, + aux_sym_number_token1, + ACTIONS(3257), 20, anon_sym_LPAREN, - ACTIONS(3246), 1, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3248), 1, anon_sym_DASH_GT, - ACTIONS(3250), 1, - anon_sym_BANG, - ACTIONS(3252), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3254), 1, - aux_sym_type_unit_token1, - ACTIONS(3256), 1, - sym_type_implicit_var, - ACTIONS(3258), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, - anon_sym_POUND_BANG, - ACTIONS(3262), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3264), 1, + sym_macro_id, sym_id, - STATE(2842), 1, - sym_primitive_reverse_atom, - ACTIONS(19), 2, - anon_sym_EQ, - anon_sym_or, - STATE(1831), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1876), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [99014] = 2, + sym_qualified_id, + sym_force_id, + [96983] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 21, + ACTIONS(3471), 1, + aux_sym_number_token1, + ACTIONS(3261), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99041] = 2, + sym_qualified_id, + sym_force_id, + [97012] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 21, + ACTIONS(3321), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99068] = 2, + sym_qualified_id, + sym_force_id, + [97039] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 21, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3463), 1, anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3473), 1, + anon_sym_RBRACE, + ACTIONS(3475), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4406), 1, + sym_type, + ACTIONS(3465), 2, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [97094] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3477), 1, + anon_sym_RBRACE, + ACTIONS(3479), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3466), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [97149] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3335), 21, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99095] = 2, + sym_qualified_id, + sym_force_id, + [97176] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 21, + ACTIONS(3321), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89434,21 +92255,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99122] = 2, + [97203] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 21, + ACTIONS(1054), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89459,14 +92280,13 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99149] = 2, + [97230] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 21, + ACTIONS(3427), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -89474,6 +92294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89484,14 +92305,13 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99176] = 2, + [97257] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 21, + ACTIONS(1132), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -89499,6 +92319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89509,21 +92330,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99203] = 2, + [97284] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 21, + ACTIONS(1046), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89534,14 +92355,13 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99230] = 2, + [97311] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 21, + ACTIONS(3303), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -89549,6 +92369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89559,14 +92380,13 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99257] = 2, + [97338] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 21, + ACTIONS(1086), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -89574,6 +92394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89584,46 +92405,86 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99284] = 2, + [97365] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 21, + ACTIONS(1050), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99311] = 2, + sym_qualified_id, + sym_force_id, + [97392] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 21, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3481), 1, anon_sym_RBRACE, + ACTIONS(3483), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4042), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [97447] = 3, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3285), 1, + aux_sym_number_token1, + ACTIONS(3283), 20, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89634,21 +92495,22 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99338] = 2, + [97476] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 21, + ACTIONS(3117), 1, + aux_sym_number_token1, + ACTIONS(3115), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89659,46 +92521,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99365] = 2, + [97505] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 21, + ACTIONS(3319), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99392] = 2, + sym_qualified_id, + sym_force_id, + [97532] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 21, + ACTIONS(3315), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89709,21 +92571,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99419] = 2, + [97559] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 21, + ACTIONS(1056), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89734,14 +92596,13 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99446] = 2, + [97586] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 21, + ACTIONS(3307), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, @@ -89749,6 +92610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89759,46 +92621,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99473] = 2, + [97613] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 21, + ACTIONS(3311), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99500] = 2, + sym_qualified_id, + sym_force_id, + [97640] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3240), 21, + ACTIONS(3380), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89809,46 +92671,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99527] = 2, + [97667] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 21, + ACTIONS(3309), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99554] = 2, + sym_qualified_id, + sym_force_id, + [97694] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 21, + ACTIONS(3305), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -89859,160 +92721,146 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99581] = 2, + [97721] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 21, + ACTIONS(1086), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99608] = 2, + sym_qualified_id, + sym_force_id, + [97748] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 21, + ACTIONS(1132), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99635] = 2, + sym_qualified_id, + sym_force_id, + [97775] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 21, + ACTIONS(3313), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99662] = 16, + sym_qualified_id, + sym_force_id, + [97802] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(1056), 21, anon_sym_LPAREN, - ACTIONS(3143), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, sym_operator, - ACTIONS(3161), 1, + sym_macro_id, sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(1804), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [99717] = 2, + sym_qualified_id, + sym_force_id, + [97829] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 21, + ACTIONS(3301), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99744] = 2, + sym_qualified_id, + sym_force_id, + [97856] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 21, + ACTIONS(3427), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90023,21 +92871,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99771] = 2, + [97883] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3334), 21, + ACTIONS(1050), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90048,85 +92896,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99798] = 16, + [97910] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3336), 1, + ACTIONS(3329), 21, anon_sym_LPAREN, - ACTIONS(3339), 1, - anon_sym_forall, - ACTIONS(3342), 1, - anon_sym_DASH_GT, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3348), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3351), 1, - aux_sym_type_unit_token1, - ACTIONS(3354), 1, - sym_type_implicit_var, - ACTIONS(3357), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3360), 1, - anon_sym_POUND_BANG, - ACTIONS(3363), 1, - sym_operator, - ACTIONS(3366), 1, - sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(68), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1916), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [99853] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(971), 21, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99880] = 2, + sym_qualified_id, + sym_force_id, + [97937] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3369), 21, + ACTIONS(3327), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90137,21 +92946,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99907] = 2, + [97964] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3334), 21, + ACTIONS(3299), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90162,238 +92971,96 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [99934] = 2, + [97991] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 21, + ACTIONS(3405), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [99961] = 16, + sym_qualified_id, + sym_force_id, + [98018] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(3327), 21, anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(41), 2, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, anon_sym_PIPE, - STATE(1933), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100016] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(913), 21, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [100043] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(951), 21, - anon_sym_LPAREN, - anon_sym_EQ, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100070] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(7), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100125] = 2, + sym_qualified_id, + sym_force_id, + [98045] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 21, + ACTIONS(3405), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100152] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(11), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100207] = 2, + sym_qualified_id, + sym_force_id, + [98072] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3369), 21, + ACTIONS(3313), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90404,287 +93071,121 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100234] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(973), 21, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [100261] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(997), 21, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [100288] = 2, + [98099] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 21, + ACTIONS(3299), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100315] = 16, + sym_qualified_id, + sym_force_id, + [98126] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(3307), 21, anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(13), 2, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, anon_sym_PIPE, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100370] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 21, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100397] = 16, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3218), 1, - anon_sym_LPAREN, - ACTIONS(3220), 1, - anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3224), 1, - anon_sym_BANG, - ACTIONS(3226), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3236), 1, - sym_operator, - ACTIONS(3238), 1, - sym_id, - STATE(2853), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(1778), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1820), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100452] = 16, + sym_qualified_id, + sym_force_id, + [98153] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(1046), 21, anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3147), 1, - anon_sym_BANG, - ACTIONS(3149), 1, - anon_sym_BANG_LBRACE, - ACTIONS(3151), 1, - aux_sym_type_unit_token1, - ACTIONS(3153), 1, - sym_type_implicit_var, - ACTIONS(3155), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, - anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, - sym_id, - STATE(2890), 1, - sym_primitive_reverse_atom, - ACTIONS(15), 2, anon_sym_COMMA, - anon_sym_in, - STATE(1840), 3, - sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1782), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [100507] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(989), 21, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100534] = 2, + sym_qualified_id, + sym_force_id, + [98180] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 21, + ACTIONS(3301), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_LT_DASH, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [100561] = 2, + sym_qualified_id, + sym_force_id, + [98207] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 20, + ACTIONS(3303), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90695,20 +93196,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100587] = 2, + [98234] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 20, + ACTIONS(1054), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90719,20 +93221,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100613] = 2, + [98261] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 20, + ACTIONS(3305), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90743,20 +93246,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100639] = 2, + [98288] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 20, + ACTIONS(3309), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90767,44 +93271,99 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100665] = 2, + [98315] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 20, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3463), 1, anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3485), 1, + anon_sym_RBRACE, + ACTIONS(3487), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3954), 1, + sym_type, + ACTIONS(3465), 2, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98370] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [100691] = 2, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3489), 1, + anon_sym_RBRACE, + ACTIONS(3491), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3931), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98425] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 20, + ACTIONS(3323), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90815,59 +93374,138 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100717] = 17, - ACTIONS(3), 1, + [98452] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3373), 1, - anon_sym_RPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3985), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [100773] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3493), 1, + anon_sym_RBRACE, + ACTIONS(3495), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3911), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98507] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 20, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3497), 1, + anon_sym_RBRACE, + ACTIONS(3499), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3507), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98562] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3501), 1, + anon_sym_RBRACE, + ACTIONS(3503), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3493), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98617] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3325), 21, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90878,59 +93516,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100799] = 17, - ACTIONS(3), 1, + [98644] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3379), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3986), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [100855] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3505), 1, + anon_sym_RBRACE, + ACTIONS(3507), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3891), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98699] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3240), 20, + ACTIONS(3323), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90941,45 +93580,85 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100881] = 2, + [98726] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 20, + ACTIONS(3325), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [98753] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - [100907] = 3, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3509), 1, + anon_sym_RBRACE, + ACTIONS(3511), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3871), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [98808] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3381), 1, - aux_sym_number_token1, - ACTIONS(2981), 19, + ACTIONS(3380), 21, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -90990,21 +93669,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100935] = 3, + [98835] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_number_token1, - ACTIONS(3084), 19, + ACTIONS(3329), 21, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91015,20 +93694,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100963] = 2, + [98862] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 20, + ACTIONS(3393), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91039,83 +93719,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [100989] = 2, + [98889] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 20, + ACTIONS(3335), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101015] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3383), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3815), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101071] = 2, + sym_qualified_id, + sym_force_id, + [98916] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 20, + ACTIONS(3311), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91126,20 +93769,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101097] = 2, + [98943] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 20, + ACTIONS(3337), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91150,20 +93794,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101123] = 2, + [98970] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 20, + ACTIONS(3427), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91174,69 +93819,202 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101149] = 2, + [98997] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 20, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3463), 1, anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3513), 1, + anon_sym_RBRACE, + ACTIONS(3515), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3851), 1, + sym_type, + ACTIONS(3465), 2, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99052] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3517), 1, + anon_sym_RBRACE, + ACTIONS(3519), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3828), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99107] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3407), 21, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101175] = 2, + sym_qualified_id, + sym_force_id, + [99134] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 20, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(3463), 1, anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3521), 1, + anon_sym_RBRACE, + ACTIONS(3523), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3831), 1, + sym_type, + ACTIONS(3465), 2, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99189] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [101201] = 3, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3525), 1, + anon_sym_RBRACE, + ACTIONS(3527), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4491), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99244] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_number_token1, - ACTIONS(2834), 19, + ACTIONS(3409), 21, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91247,21 +94025,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101229] = 3, + [99271] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(2840), 1, - aux_sym_number_token1, - ACTIONS(2838), 19, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3529), 1, + anon_sym_RBRACE, + ACTIONS(3531), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3811), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99326] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3399), 21, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91272,161 +94089,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101257] = 17, - ACTIONS(3), 1, + [99353] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, + ACTIONS(3429), 21, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3385), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4124), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101313] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3387), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3814), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101369] = 2, + sym_qualified_id, + sym_force_id, + [99380] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 20, + ACTIONS(1132), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101395] = 17, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [99407] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3389), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3806), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101451] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3533), 1, + anon_sym_RBRACE, + ACTIONS(3535), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3791), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99462] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 20, + ACTIONS(3299), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91437,20 +94203,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101477] = 2, + [99489] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3537), 1, + anon_sym_RBRACE, + ACTIONS(3539), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3771), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99544] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 20, + ACTIONS(1054), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91461,44 +94267,85 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101503] = 2, + [99571] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 20, + ACTIONS(3425), 21, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [99598] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - [101529] = 2, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3541), 1, + anon_sym_RBRACE, + ACTIONS(3543), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3746), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99653] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 20, + ACTIONS(3399), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91509,107 +94356,71 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101555] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3391), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3805), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101611] = 2, + [99680] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 20, + ACTIONS(1046), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101637] = 2, + sym_qualified_id, + sym_force_id, + [99707] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 20, + ACTIONS(3382), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101663] = 2, + sym_qualified_id, + sym_force_id, + [99734] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 20, + ACTIONS(1050), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91620,20 +94431,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101689] = 2, + [99761] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3545), 1, + anon_sym_RBRACE, + ACTIONS(3547), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4224), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99816] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 20, + ACTIONS(1056), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91644,44 +94495,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101715] = 2, + [99843] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [101741] = 2, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3549), 1, + anon_sym_RBRACE, + ACTIONS(3551), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3555), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [99898] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 20, + ACTIONS(1086), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91692,20 +94559,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101767] = 2, + [99925] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 20, + ACTIONS(1132), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91716,20 +94584,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101793] = 2, + [99952] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 20, + ACTIONS(3427), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91740,83 +94609,99 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101819] = 2, + [99979] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [101845] = 17, - ACTIONS(3), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3553), 1, + anon_sym_RBRACE, + ACTIONS(3555), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3731), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100034] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3393), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3793), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [101901] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3557), 1, + anon_sym_RBRACE, + ACTIONS(3559), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4120), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100089] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 20, + ACTIONS(3337), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91827,92 +94712,135 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [101927] = 2, + [100116] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 20, + ACTIONS(3329), 21, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101953] = 2, + sym_qualified_id, + sym_force_id, + [100143] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 20, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3561), 1, + anon_sym_RBRACE, + ACTIONS(3563), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3577), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100198] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1086), 21, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [101979] = 2, + sym_qualified_id, + sym_force_id, + [100225] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 20, + ACTIONS(3337), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102005] = 2, + sym_qualified_id, + sym_force_id, + [100252] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 20, + ACTIONS(3325), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -91923,107 +94851,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102031] = 2, + [100279] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 20, + ACTIONS(3429), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102057] = 17, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [100306] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3395), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3792), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102113] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3565), 1, + anon_sym_RBRACE, + ACTIONS(3567), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3711), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100361] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 20, + ACTIONS(3415), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102139] = 2, + sym_qualified_id, + sym_force_id, + [100388] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 20, + ACTIONS(3425), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92034,20 +94965,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102165] = 2, + [100415] = 16, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3569), 1, + anon_sym_RBRACE, + ACTIONS(3571), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3596), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100470] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3334), 20, + ACTIONS(1054), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92058,44 +95029,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102191] = 2, + [100497] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 20, + ACTIONS(3315), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102217] = 2, + sym_qualified_id, + sym_force_id, + [100524] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 20, + ACTIONS(3425), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92106,116 +95079,110 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102243] = 2, + [100551] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 20, + ACTIONS(3407), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102269] = 2, + sym_qualified_id, + sym_force_id, + [100578] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 20, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [102295] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 20, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(3463), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3469), 1, sym_operator, - sym_id, - [102321] = 2, + ACTIONS(3573), 1, + anon_sym_RBRACE, + ACTIONS(3575), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3644), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100633] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 20, + ACTIONS(3409), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102347] = 2, + sym_qualified_id, + sym_force_id, + [100660] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 20, + ACTIONS(1056), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92226,44 +95193,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102373] = 2, + [100687] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 20, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [102399] = 2, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3577), 1, + anon_sym_RBRACE, + ACTIONS(3579), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3635), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [100742] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 20, + ACTIONS(3415), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92274,83 +95257,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102425] = 2, + [100769] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 20, + ACTIONS(3415), 21, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102451] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4332), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102507] = 2, + sym_qualified_id, + sym_force_id, + [100796] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 20, + ACTIONS(1050), 21, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92361,88 +95307,35 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102533] = 17, - ACTIONS(3), 1, + [100823] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, + ACTIONS(3321), 21, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3399), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4119), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102589] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3401), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4160), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102645] = 2, + sym_qualified_id, + sym_force_id, + [100850] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 20, + ACTIONS(1046), 21, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI_SEMI, @@ -92453,6 +95346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92463,20 +95357,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102671] = 2, + [100877] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3369), 20, + ACTIONS(3409), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92487,20 +95382,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102697] = 2, + [100904] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 20, + ACTIONS(3319), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92511,20 +95407,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102723] = 2, + [100931] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 20, + ACTIONS(3407), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92535,146 +95432,121 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102749] = 2, + [100958] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 20, + ACTIONS(3429), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102775] = 2, + sym_qualified_id, + sym_force_id, + [100985] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 20, + ACTIONS(3315), 21, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [102801] = 17, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [101012] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3311), 21, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, + sym_qualified_id, + sym_force_id, + [101039] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3380), 21, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3403), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4161), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102857] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3405), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4330), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102913] = 2, + sym_qualified_id, + sym_force_id, + [101066] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 20, + ACTIONS(3382), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92685,98 +95557,60 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [102939] = 17, - ACTIONS(3), 1, + [101093] = 16, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3407), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4040), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [102995] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3409), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4041), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103051] = 2, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3581), 1, + anon_sym_RBRACE, + ACTIONS(3583), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3683), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [101148] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 20, + ACTIONS(3399), 21, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92787,146 +95621,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103077] = 2, + [101175] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 20, + ACTIONS(3309), 21, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [103103] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3411), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3921), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103159] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(913), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [103185] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3413), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4389), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103241] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(921), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -92937,83 +95646,46 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103267] = 2, + [101202] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 20, + ACTIONS(3305), 21, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [103293] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3415), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3922), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103349] = 2, + sym_qualified_id, + sym_force_id, + [101229] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 20, + ACTIONS(3301), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93024,59 +95696,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103375] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3417), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4391), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103431] = 2, + [101256] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 20, + ACTIONS(3405), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93087,171 +95721,124 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103457] = 2, + [101283] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 20, + ACTIONS(3327), 21, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [103483] = 2, + sym_qualified_id, + sym_force_id, + [101310] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 20, + ACTIONS(3313), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [103509] = 2, + sym_qualified_id, + sym_force_id, + [101337] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 20, + ACTIONS(3307), 21, anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [103535] = 2, + sym_qualified_id, + sym_force_id, + [101364] = 16, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, + ACTIONS(2227), 1, sym_id, - [103561] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 20, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3463), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3469), 1, sym_operator, - sym_id, - [103587] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - ACTIONS(3419), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4228), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [103643] = 3, + ACTIONS(3585), 1, + anon_sym_RBRACE, + ACTIONS(3587), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4210), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [101419] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_number_token1, - ACTIONS(3084), 19, + ACTIONS(3303), 21, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -93261,6 +95848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93271,21 +95860,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103671] = 3, + [101446] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3421), 1, - aux_sym_number_token1, - ACTIONS(2981), 19, + ACTIONS(3393), 21, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93296,20 +95885,21 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103699] = 2, + [101473] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 20, + ACTIONS(3335), 21, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93320,20 +95910,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103725] = 2, + [101500] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 20, + ACTIONS(1132), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93344,107 +95934,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103751] = 2, + [101526] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 20, + ACTIONS(3329), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [103777] = 17, + sym_qualified_id, + sym_force_id, + [101552] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3593), 1, anon_sym__, - ACTIONS(3423), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1173), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1179), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4227), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4226), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [103833] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(831), 20, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_or, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [103859] = 2, + [101608] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 20, + ACTIONS(3427), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93455,92 +96021,215 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103885] = 2, - ACTIONS(9), 1, + [101634] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(855), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(2657), 1, sym_id, - sym_qualified_id, - sym_force_id, - [103911] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(991), 20, + ACTIONS(3595), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3597), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3599), 1, anon_sym__, - anon_sym_QMARK, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4851), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101690] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(3095), 1, sym_id, - [103937] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(989), 20, + ACTIONS(3601), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3603), 1, anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3605), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4221), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101746] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, anon_sym__, + ACTIONS(3609), 1, + anon_sym_RPAREN, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4220), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101802] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3595), 1, + anon_sym_LPAREN, + ACTIONS(3597), 1, + anon_sym_BANG, + ACTIONS(3599), 1, + anon_sym__, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4783), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101858] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [103963] = 2, + ACTIONS(3595), 1, + anon_sym_LPAREN, + ACTIONS(3597), 1, + anon_sym_BANG, + ACTIONS(3599), 1, + anon_sym__, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4238), 1, + sym_or_pattern, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101914] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 20, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93551,194 +96240,293 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [103989] = 2, - ACTIONS(9), 1, + [101940] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(973), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, + ACTIONS(2647), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [104015] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(971), 20, + ACTIONS(3595), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3597), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3599), 1, anon_sym__, - anon_sym_QMARK, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4846), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [101996] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [104041] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(901), 20, + ACTIONS(3611), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(3613), 1, + anon_sym_BANG, + ACTIONS(3615), 1, + anon_sym__, + STATE(1218), 1, + sym_pattern_var, + STATE(1219), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(4144), 1, + sym_pattern, + STATE(4699), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1458), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102052] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(2657), 1, sym_id, - sym_qualified_id, - sym_force_id, - [104067] = 17, + ACTIONS(3611), 1, + anon_sym_LPAREN, + ACTIONS(3613), 1, + anon_sym_BANG, + ACTIONS(3615), 1, + anon_sym__, + STATE(1218), 1, + sym_pattern_var, + STATE(1219), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(4144), 1, + sym_pattern, + STATE(4701), 1, + sym_or_pattern, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1458), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102108] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3599), 1, anon_sym__, - ACTIONS(3425), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1142), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4095), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4841), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104123] = 17, + [102164] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3599), 1, anon_sym__, - ACTIONS(3427), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1142), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4075), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4203), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104179] = 2, - ACTIONS(9), 1, + [102220] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(969), 20, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3595), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3597), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3599), 1, anon_sym__, - anon_sym_QMARK, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4266), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102276] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [104205] = 2, + ACTIONS(3595), 1, + anon_sym_LPAREN, + ACTIONS(3597), 1, + anon_sym_BANG, + ACTIONS(3599), 1, + anon_sym__, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4859), 1, + sym_or_pattern, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102332] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 20, + ACTIONS(3337), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93749,21 +96537,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104231] = 3, + [102358] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_number_token1, - ACTIONS(2834), 19, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93774,69 +96561,137 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104259] = 2, - ACTIONS(9), 1, + [102384] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 20, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3605), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3607), 1, anon_sym__, - anon_sym_QMARK, + ACTIONS(3617), 1, + anon_sym_RPAREN, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4191), 1, + sym_pattern, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102440] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [104285] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(951), 20, + ACTIONS(3589), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3591), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3593), 1, anon_sym__, - anon_sym_QMARK, + STATE(1173), 1, + sym_pattern_var, + STATE(1179), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(4049), 1, + sym_pattern, + STATE(4130), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, + STATE(1455), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102496] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(3095), 1, sym_id, - [104311] = 3, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + ACTIONS(3619), 1, + anon_sym_RPAREN, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4190), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102552] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2840), 1, - aux_sym_number_token1, - ACTIONS(2838), 19, + ACTIONS(3427), 20, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -93847,164 +96702,83 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104339] = 2, + [102578] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 20, + ACTIONS(1056), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [104365] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(997), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [104391] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(995), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [104417] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(993), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, sym_floating, anon_sym_DQUOTE, sym_operator, + sym_macro_id, sym_id, - [104443] = 2, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [102604] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(991), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym__, + ACTIONS(2647), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, sym_floating, + ACTIONS(2655), 1, anon_sym_DQUOTE, - sym_operator, + ACTIONS(2657), 1, sym_id, - [104469] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(989), 20, + ACTIONS(3595), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + ACTIONS(3597), 1, anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + ACTIONS(3599), 1, anon_sym__, - anon_sym_QMARK, + STATE(1142), 1, + sym_pattern_var, + STATE(1143), 1, + sym_string, + STATE(2739), 1, + sym_integer, + STATE(3544), 1, + sym_pattern, + STATE(4179), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_id, - [104495] = 2, + STATE(1542), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [102660] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 20, + ACTIONS(3415), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -94015,20 +96789,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104521] = 2, + [102686] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 20, + ACTIONS(1132), 20, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -94039,195 +96813,166 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104547] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4533), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [104600] = 16, + [102712] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4546), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(5023), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104653] = 16, + [102768] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1042), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4382), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(3669), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104706] = 16, + [102824] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4517), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4867), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104759] = 16, + [102880] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4384), 1, + STATE(3662), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104812] = 2, + [102936] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3240), 19, + ACTIONS(1050), 20, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, @@ -94237,6 +96982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -94247,1545 +96993,1872 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [104837] = 16, + [102962] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4534), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4827), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104890] = 16, + [103018] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4541), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4164), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104943] = 16, + [103074] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4548), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4875), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [104996] = 16, + [103130] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4191), 1, + STATE(3640), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105049] = 16, + [103186] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(1036), 1, + STATE(1218), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1219), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4549), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4709), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105102] = 16, + [103242] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1056), 20, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103268] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4515), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4114), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105155] = 16, + [103324] = 15, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + ACTIONS(3621), 1, + anon_sym_DOT_DOT, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4692), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [103376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4385), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4050), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105208] = 16, + [103432] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4512), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4883), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105261] = 16, + [103488] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1050), 20, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103514] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1015), 1, + ACTIONS(3623), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1459), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(4264), 1, + STATE(4292), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105314] = 16, + [103570] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3409), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103596] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1046), 20, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103622] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(896), 1, + ACTIONS(3625), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(897), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4387), 1, + STATE(4294), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105367] = 16, + [103678] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4506), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4086), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105420] = 16, + [103734] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1042), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4401), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4891), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105473] = 16, + [103790] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4502), 1, + STATE(3462), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105526] = 16, + [103846] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4403), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4061), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105579] = 16, + [103902] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3407), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103928] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1046), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [103954] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4347), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4899), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105632] = 16, + [104010] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1054), 20, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_LT_DASH, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [104036] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4500), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4016), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105685] = 16, + [104092] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4406), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4907), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105738] = 16, + [104148] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3627), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4497), 1, + STATE(4572), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105791] = 16, + [104204] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1054), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [104230] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4203), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(3988), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105844] = 16, + [104286] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3382), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [104312] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4553), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4915), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105897] = 16, + [104368] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4407), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4490), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [105950] = 16, + [104424] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3457), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1139), 1, - sym_pattern, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - ACTIONS(2341), 2, + STATE(3544), 1, + sym_pattern, + STATE(3943), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1005), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106003] = 16, + [104480] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4491), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4923), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106056] = 16, + [104536] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1042), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4416), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4787), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106109] = 16, + [104592] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1015), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4122), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(3924), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106162] = 16, + [104648] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1142), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(3800), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4931), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106215] = 16, + [104704] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4487), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4338), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106268] = 16, + [104760] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4418), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4821), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106321] = 16, + [104816] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4485), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4296), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106374] = 16, + [104872] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4420), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4806), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106427] = 16, + [104928] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4205), 1, + STATE(3962), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106480] = 16, + [104984] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3629), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4482), 1, + STATE(4132), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106533] = 16, + [105040] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(896), 1, + ACTIONS(3631), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(897), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4421), 1, + STATE(4131), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106586] = 16, + [105096] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1142), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4260), 1, + STATE(3542), 1, + sym_or_pattern, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106639] = 16, + [105152] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1042), 1, + ACTIONS(3633), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1459), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(4225), 1, + STATE(4104), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106692] = 16, + [105208] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(896), 1, + STATE(1218), 1, sym_pattern_var, - STATE(897), 1, + STATE(1219), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4114), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4712), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106745] = 16, + [105264] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4523), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4800), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106798] = 16, + [105320] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4366), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(3904), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106851] = 16, + [105376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1015), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4061), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4351), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106904] = 16, + [105432] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1142), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4120), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(3882), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [106957] = 2, - ACTIONS(9), 1, + [105488] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 19, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - sym_operator, - sym_macro_id, + ACTIONS(3095), 1, sym_id, - sym_qualified_id, - sym_force_id, - [106982] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1096), 19, + ACTIONS(3601), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + ACTIONS(3635), 1, + anon_sym_RPAREN, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4103), 1, + sym_pattern, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [107007] = 2, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [105544] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 19, + ACTIONS(1050), 20, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -95796,167 +98869,200 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [107032] = 16, + [105570] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4476), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4784), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107085] = 16, + [105626] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(896), 1, + STATE(1218), 1, sym_pattern_var, - STATE(897), 1, + STATE(1219), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4334), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4723), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107138] = 16, + [105682] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3427), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [105708] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1042), 1, + ACTIONS(3637), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1459), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(4427), 1, + STATE(4512), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107191] = 16, + [105764] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3457), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1261), 1, - sym_pattern, - STATE(2333), 1, + STATE(1179), 1, + sym_string, + STATE(2739), 1, sym_integer, - ACTIONS(2341), 2, + STATE(4049), 1, + sym_pattern, + STATE(4057), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1005), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107244] = 2, + [105820] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 19, + ACTIONS(1132), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -95967,19 +99073,20 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [107269] = 2, + [105846] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 19, + ACTIONS(1086), 20, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_COLON, anon_sym_forall, anon_sym_LBRACK, anon_sym_let, anon_sym_do, + anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -95990,315 +99097,335 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [107294] = 16, + [105872] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4472), 1, + STATE(3846), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107347] = 16, - ACTIONS(3), 1, + [105928] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(1056), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3447), 1, + sym_qualified_id, + sym_force_id, + [105954] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1050), 20, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3651), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [107400] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [105980] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1015), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(3298), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(3863), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107453] = 16, + [106036] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4527), 1, + STATE(3592), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107506] = 16, - ACTIONS(3), 1, + [106092] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3335), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3441), 1, + sym_qualified_id, + sym_force_id, + [106118] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4428), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [107559] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [106144] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3639), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4470), 1, + STATE(4574), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107612] = 16, - ACTIONS(3), 1, + [106200] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3425), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3298), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [107665] = 16, + sym_qualified_id, + sym_force_id, + [106226] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4431), 1, + STATE(3735), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107718] = 2, + [106282] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 19, + ACTIONS(3321), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -96309,255 +99436,214 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [107743] = 16, + [106308] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1015), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4006), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4777), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107796] = 16, - ACTIONS(3), 1, + [106364] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(1054), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4363), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_in, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [107849] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3917), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [107902] = 16, + sym_qualified_id, + sym_force_id, + [106390] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4467), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4398), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [107955] = 16, + [106446] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3303), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [106472] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4435), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4757), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108008] = 16, + [106528] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(1036), 1, + STATE(1218), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1219), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4530), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4744), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108061] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3334), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [108086] = 2, + [106584] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3369), 19, + ACTIONS(3307), 20, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_COLON, @@ -96567,6 +99653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -96577,389 +99664,434 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [108111] = 16, + [106610] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1173), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1179), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(3298), 1, + STATE(3665), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108164] = 16, + [106666] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4361), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4791), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108217] = 16, + [106722] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4532), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4234), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108270] = 16, + [106778] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1042), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4360), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4749), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108323] = 16, + [106834] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3313), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [106860] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4536), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4570), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108376] = 16, + [106916] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4461), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4482), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108429] = 16, + [106972] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1042), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1044), 1, + STATE(1143), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4442), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4874), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108482] = 16, + [107028] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + STATE(1218), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1219), 1, + sym_string, + STATE(2739), 1, sym_integer, - STATE(4183), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4668), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108535] = 16, + [107084] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4453), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(5092), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108588] = 16, + [107140] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3611), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3613), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3615), 1, anon_sym__, - STATE(1015), 1, + STATE(1218), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1219), 1, sym_string, - STATE(2333), 1, + STATE(2739), 1, sym_integer, - STATE(4186), 1, + STATE(4144), 1, sym_pattern, - ACTIONS(2341), 2, + STATE(4695), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1458), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108641] = 2, + [107196] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 19, + ACTIONS(3325), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -96970,916 +100102,975 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [108666] = 16, + [107222] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3641), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4562), 1, + STATE(4013), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108719] = 16, + [107278] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(896), 1, + ACTIONS(3643), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(897), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4443), 1, + STATE(4015), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108772] = 16, + [107334] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3323), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [107360] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3459), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3463), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(967), 1, - sym_string, - STATE(969), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1061), 1, - sym_pattern, - STATE(2349), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - ACTIONS(1963), 2, + STATE(3544), 1, + sym_pattern, + STATE(4423), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1081), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108825] = 16, + [107416] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4452), 1, + STATE(3581), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108878] = 16, + [107472] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4444), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4417), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [108931] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3240), 19, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [108956] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(859), 19, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [108981] = 16, + [107528] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3457), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, + ACTIONS(3645), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1004), 1, - sym_pattern, - STATE(2333), 1, + STATE(1459), 1, + sym_string, + STATE(2960), 1, sym_integer, - ACTIONS(2341), 2, + STATE(4382), 1, + sym_pattern, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1005), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109034] = 16, + [107584] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3457), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1264), 1, - sym_pattern, - STATE(2333), 1, + STATE(1143), 1, + sym_string, + STATE(2739), 1, sym_integer, - ACTIONS(2341), 2, + STATE(3544), 1, + sym_pattern, + STATE(4914), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1005), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109087] = 16, + [107640] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(1036), 1, + STATE(1142), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4451), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4567), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109140] = 16, + [107696] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3647), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4542), 1, + STATE(4383), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109193] = 16, + [107752] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1015), 1, + ACTIONS(3649), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1016), 1, + STATE(1459), 1, sym_string, - STATE(2333), 1, + STATE(2960), 1, sym_integer, - STATE(3951), 1, + STATE(4452), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109246] = 16, + [107808] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4346), 1, + STATE(3551), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109299] = 16, + [107864] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(2343), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(2347), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3377), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, + ACTIONS(3651), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(2333), 1, + STATE(1459), 1, + sym_string, + STATE(2960), 1, sym_integer, - STATE(3785), 1, + STATE(4454), 1, sym_pattern, - ACTIONS(2341), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109352] = 16, - ACTIONS(3), 1, + [107920] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3319), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [107946] = 15, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4545), 1, - sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + ACTIONS(3653), 1, + anon_sym_DOT_DOT, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4658), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [107998] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3315), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [109405] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3441), 1, + sym_qualified_id, + sym_force_id, + [108024] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3311), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4446), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [109458] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [108050] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4344), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(5007), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109511] = 16, - ACTIONS(3), 1, + [108106] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3380), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, + sym_qualified_id, + sym_force_id, + [108132] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3393), 20, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4547), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [109564] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3435), 1, + sym_qualified_id, + sym_force_id, + [108158] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3309), 20, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4445), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [109617] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3435), 1, + sym_qualified_id, + sym_force_id, + [108184] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3429), 20, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4342), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [109670] = 16, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [108210] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4454), 1, + STATE(3500), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109723] = 16, + [108266] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3399), 20, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, + aux_sym_integer_token1, + sym_floating, + anon_sym_DQUOTE, + sym_operator, + sym_macro_id, + sym_id, + sym_qualified_id, + sym_force_id, + [108292] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4441), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4150), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109776] = 16, + [108348] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4462), 1, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(4570), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109829] = 16, + [108404] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4439), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(5019), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109882] = 16, + [108460] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(1036), 1, + STATE(1173), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4551), 1, + STATE(3431), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [109935] = 2, + [108516] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 19, + ACTIONS(3305), 20, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, - anon_sym_in, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -97890,796 +101081,353 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [109960] = 16, - ACTIONS(3), 1, + [108542] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3427), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, + sym_hex_integer, + sym_octet_integer, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4464), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110013] = 16, + sym_qualified_id, + sym_force_id, + [108568] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3589), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3591), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3593), 1, anon_sym__, - STATE(896), 1, + STATE(1173), 1, sym_pattern_var, - STATE(897), 1, + STATE(1179), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4436), 1, + STATE(3503), 1, + sym_or_pattern, + STATE(4049), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1455), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [110066] = 16, - ACTIONS(3), 1, + [108624] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3447), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3897), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110119] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3371), 1, + ACTIONS(3301), 20, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4059), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110172] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4557), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110225] = 16, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [108650] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, + ACTIONS(3299), 20, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4469), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110278] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4430), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110331] = 16, + sym_qualified_id, + sym_force_id, + [108676] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + ACTIONS(3655), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4477), 1, + STATE(4511), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [110384] = 16, - ACTIONS(3), 1, + [108732] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(1132), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4425), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110437] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4478), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110490] = 16, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [108758] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(1086), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4333), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110543] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4560), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110596] = 16, + sym_qualified_id, + sym_force_id, + [108784] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(2647), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(2651), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(2653), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(2655), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2657), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3595), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3597), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3599), 1, anon_sym__, - STATE(896), 1, + STATE(1142), 1, sym_pattern_var, - STATE(897), 1, + STATE(1143), 1, sym_string, - STATE(2349), 1, + STATE(2739), 1, sym_integer, - STATE(4331), 1, + STATE(3544), 1, sym_pattern, - ACTIONS(1963), 2, + STATE(5030), 1, + sym_or_pattern, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, + STATE(1542), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [110649] = 16, - ACTIONS(3), 1, + [108840] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3447), 1, + ACTIONS(1054), 20, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3851), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110702] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3371), 1, - anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4003), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110755] = 16, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [108866] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(1056), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4423), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110808] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4484), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110861] = 16, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [108892] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(1046), 20, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4419), 1, - sym_pattern, - ACTIONS(1963), 2, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110914] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, sym_floating, - ACTIONS(1969), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4493), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [110967] = 16, - ACTIONS(3), 1, + sym_qualified_id, + sym_force_id, + [108918] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3435), 1, + ACTIONS(3405), 20, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4411), 1, - sym_pattern, - ACTIONS(2341), 2, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_let, + anon_sym_do, + anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111020] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, aux_sym_integer_token1, - ACTIONS(2345), 1, sym_floating, - ACTIONS(2347), 1, anon_sym_DQUOTE, - ACTIONS(2349), 1, + sym_operator, + sym_macro_id, sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4328), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111073] = 2, + sym_qualified_id, + sym_force_id, + [108944] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 19, + ACTIONS(3327), 20, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -98690,3817 +101438,4326 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [111098] = 16, - ACTIONS(3), 1, + [108970] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4501), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111151] = 16, - ACTIONS(3), 1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3543), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109019] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(1317), 1, - sym_pattern, - STATE(2333), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111204] = 16, - ACTIONS(3), 1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3442), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109068] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4566), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111257] = 2, + ACTIONS(3659), 1, + anon_sym_forall, + ACTIONS(3663), 1, + sym_operator, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109117] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 19, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, + sym_id, + ACTIONS(3657), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3659), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3663), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [111282] = 16, - ACTIONS(3), 1, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109166] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3666), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111335] = 2, + ACTIONS(3659), 1, + anon_sym_forall, + ACTIONS(3663), 1, + sym_operator, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3056), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109215] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3334), 19, + ACTIONS(2039), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, sym_operator, - sym_macro_id, + ACTIONS(2061), 1, sym_id, - sym_qualified_id, - sym_force_id, - [111360] = 16, - ACTIONS(3), 1, + STATE(1038), 1, + sym_type, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109264] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4402), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111413] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109313] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4398), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111466] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109362] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4511), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111519] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109411] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4386), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111572] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3056), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109460] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3803), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111625] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109509] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(3810), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111678] = 16, - ACTIONS(3), 1, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109558] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4371), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111731] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3369), 19, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [111756] = 16, - ACTIONS(3), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109607] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4524), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111809] = 16, - ACTIONS(3), 1, + ACTIONS(3659), 1, + anon_sym_forall, + ACTIONS(3663), 1, + sym_operator, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109656] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4368), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111862] = 16, - ACTIONS(3), 1, + ACTIONS(3659), 1, + anon_sym_forall, + ACTIONS(3663), 1, + sym_operator, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109705] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2889), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4521), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111915] = 16, - ACTIONS(3), 1, + ACTIONS(3659), 1, + anon_sym_forall, + ACTIONS(3663), 1, + sym_operator, + STATE(2986), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3661), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109754] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + anon_sym_forall, + ACTIONS(725), 1, + sym_type_implicit_var, + ACTIONS(727), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(729), 1, + anon_sym_POUND_BANG, + ACTIONS(731), 1, + sym_operator, + ACTIONS(3673), 1, + anon_sym_LPAREN, + ACTIONS(3675), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4343), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [111968] = 16, - ACTIONS(3), 1, + STATE(246), 1, + sym_type, + STATE(1603), 1, + sym_primitive_reverse_atom, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109803] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4552), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112021] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3725), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109852] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4339), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112074] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3741), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109901] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, + ACTIONS(123), 1, + sym_type_implicit_var, + ACTIONS(125), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(127), 1, + anon_sym_POUND_BANG, + ACTIONS(3679), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4565), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112127] = 16, - ACTIONS(3), 1, + ACTIONS(3681), 1, + anon_sym_forall, + ACTIONS(3683), 1, + sym_operator, + ACTIONS(3685), 1, + sym_id, + STATE(30), 1, + sym_type, + STATE(377), 1, + sym_primitive_reverse_atom, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(50), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109950] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4327), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112180] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3762), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [109999] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3371), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3375), 1, - anon_sym_BANG, - ACTIONS(3377), 1, - anon_sym__, - STATE(1079), 1, - sym_string, - STATE(1083), 1, - sym_pattern_var, - STATE(2333), 1, - sym_integer, - STATE(4312), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1093), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112233] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3778), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110048] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4576), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112286] = 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3787), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110097] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112311] = 16, - ACTIONS(3), 1, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2197), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110146] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4309), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112364] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3447), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3755), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112417] = 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3804), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110195] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112442] = 2, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2199), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110244] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 19, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3697), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3699), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3701), 1, sym_operator, - sym_macro_id, + ACTIONS(3703), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112467] = 2, + STATE(24), 1, + sym_type, + STATE(355), 1, + sym_primitive_reverse_atom, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110293] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 19, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, + sym_id, + ACTIONS(3705), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3707), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3711), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112492] = 16, - ACTIONS(3), 1, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110342] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3705), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3937), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112545] = 2, + ACTIONS(3707), 1, + anon_sym_forall, + ACTIONS(3711), 1, + sym_operator, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110391] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112570] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3818), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110440] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 19, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, + sym_id, + ACTIONS(3705), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3707), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3711), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112595] = 15, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110489] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_DASH_GT, - ACTIONS(2928), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2930), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3834), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110538] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2533), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2535), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2537), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2541), 1, sym_id, - STATE(2826), 1, + ACTIONS(3705), 1, + anon_sym_LPAREN, + ACTIONS(3707), 1, + anon_sym_forall, + ACTIONS(3711), 1, + sym_operator, + STATE(2908), 1, sym_primitive_reverse_atom, - STATE(1672), 3, + STATE(3056), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [112646] = 16, - ACTIONS(3), 1, + [110587] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4359), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112699] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3844), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110636] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3705), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4570), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112752] = 2, + ACTIONS(3707), 1, + anon_sym_forall, + ACTIONS(3711), 1, + sym_operator, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110685] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 19, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, + sym_id, + ACTIONS(3705), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3707), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3711), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112777] = 2, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110734] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 19, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2541), 1, + sym_id, + ACTIONS(3705), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3707), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3711), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112802] = 2, + STATE(2908), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3709), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1099), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110783] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [112827] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3861), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110832] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112852] = 2, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2122), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110881] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, + ACTIONS(3713), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112877] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5070), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110930] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112902] = 16, - ACTIONS(3), 1, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2198), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [110979] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4537), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [112955] = 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3881), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111028] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [112980] = 2, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2195), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111077] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [113005] = 2, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2194), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111126] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 19, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3689), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3693), 1, sym_operator, - sym_macro_id, + ACTIONS(3695), 1, sym_id, - sym_qualified_id, - sym_force_id, - [113030] = 15, + STATE(623), 1, + sym_primitive_reverse_atom, + STATE(2189), 1, + sym_type, + ACTIONS(3691), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(170), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111175] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_DASH_GT, - ACTIONS(2928), 1, + ACTIONS(2951), 1, anon_sym_LPAREN, - ACTIONS(2930), 1, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, anon_sym_forall, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2963), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2965), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2967), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2969), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + ACTIONS(2971), 1, sym_operator, - ACTIONS(2948), 1, + ACTIONS(2973), 1, sym_id, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1672), 3, + STATE(1147), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1152), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [113081] = 16, - ACTIONS(3), 1, + [111224] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4350), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113134] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3901), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111273] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2075), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2077), 1, + sym_type_implicit_var, + ACTIONS(2079), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2081), 1, + anon_sym_POUND_BANG, + ACTIONS(2085), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3715), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4544), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113187] = 16, - ACTIONS(3), 1, + ACTIONS(3717), 1, + anon_sym_forall, + ACTIONS(3721), 1, + sym_operator, + STATE(2883), 1, + sym_primitive_reverse_atom, + STATE(3301), 1, + sym_type, + ACTIONS(3719), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(941), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111322] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3720), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113240] = 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3921), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111371] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_in, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [113265] = 16, - ACTIONS(3), 1, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5056), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111420] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3453), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(1506), 1, - sym_pattern, - STATE(2333), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113318] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3941), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111469] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4479), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113371] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3977), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111518] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, + ACTIONS(191), 1, + sym_type_implicit_var, + ACTIONS(193), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(195), 1, + anon_sym_POUND_BANG, + ACTIONS(3723), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4345), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113424] = 16, - ACTIONS(3), 1, + ACTIONS(3725), 1, + anon_sym_forall, + ACTIONS(3727), 1, + sym_operator, + ACTIONS(3729), 1, + sym_id, + STATE(110), 1, + sym_type, + STATE(500), 1, + sym_primitive_reverse_atom, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(90), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111567] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4550), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113477] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3653), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113530] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4012), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111616] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4317), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113583] = 2, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4054), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111665] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 19, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + ACTIONS(3731), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3733), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3735), 1, sym_operator, - sym_macro_id, + ACTIONS(3737), 1, sym_id, - sym_qualified_id, - sym_force_id, - [113608] = 16, - ACTIONS(3), 1, + STATE(11), 1, + sym_type, + STATE(319), 1, + sym_primitive_reverse_atom, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(3), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111714] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2581), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4555), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113661] = 15, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111763] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_DASH_GT, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2573), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2575), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2577), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2581), 1, sym_id, - STATE(2826), 1, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, sym_primitive_reverse_atom, - STATE(1672), 3, + STATE(3064), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [113712] = 15, - ACTIONS(7), 1, - anon_sym_DASH_GT, + [111812] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2573), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2575), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2577), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2581), 1, sym_id, - STATE(2826), 1, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, sym_primitive_reverse_atom, - STATE(1672), 3, + STATE(3041), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [113763] = 16, - ACTIONS(3), 1, + [111861] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2581), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4248), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113816] = 16, - ACTIONS(3), 1, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(3056), 1, + sym_type, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111910] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4558), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113869] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4084), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [111959] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4554), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113922] = 16, - ACTIONS(3), 1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3631), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112008] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2581), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4256), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [113975] = 16, - ACTIONS(3), 1, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112057] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4559), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114028] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4111), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112106] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2581), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4258), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114081] = 16, - ACTIONS(3), 1, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112155] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2581), 1, sym_id, - ACTIONS(3435), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3561), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114134] = 16, - ACTIONS(3), 1, + ACTIONS(3741), 1, + anon_sym_forall, + ACTIONS(3745), 1, + sym_operator, + STATE(2969), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3743), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1113), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112204] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3459), 1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym__, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(1127), 1, - sym_pattern, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114187] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4294), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114240] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4564), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114293] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3242), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3749), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3753), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [114318] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, - sym_id, - ACTIONS(3447), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3641), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114371] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(3755), 1, sym_id, - ACTIONS(3453), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym__, - STATE(769), 1, - sym_string, - STATE(770), 1, - sym_pattern_var, - STATE(1245), 1, - sym_pattern, - STATE(2333), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1005), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114424] = 16, - ACTIONS(3), 1, + STATE(577), 1, + sym_primitive_reverse_atom, + STATE(2142), 1, + sym_type, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112253] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4572), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114477] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, + sym_operator, + ACTIONS(3755), 1, sym_id, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4314), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114530] = 16, - ACTIONS(3), 1, + STATE(577), 1, + sym_primitive_reverse_atom, + STATE(2136), 1, + sym_type, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112302] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4575), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114583] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, + sym_operator, + ACTIONS(3755), 1, sym_id, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4310), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114636] = 16, - ACTIONS(3), 1, + STATE(577), 1, + sym_primitive_reverse_atom, + STATE(2132), 1, + sym_type, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112351] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3429), 1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3747), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4507), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114689] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, + sym_operator, + ACTIONS(3755), 1, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4577), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114742] = 15, + STATE(577), 1, + sym_primitive_reverse_atom, + STATE(2131), 1, + sym_type, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112400] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + ACTIONS(3747), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, sym_operator, - ACTIONS(2948), 1, + ACTIONS(3755), 1, sym_id, - STATE(2826), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(2226), 3, + STATE(2129), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [114793] = 16, - ACTIONS(3), 1, + [112449] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym__, - STATE(1042), 1, - sym_pattern_var, - STATE(1044), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(4308), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1242), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114846] = 15, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2928), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(2930), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(2932), 1, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4160), 1, + sym_type, + ACTIONS(3021), 2, anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112498] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + ACTIONS(3747), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, sym_operator, - ACTIONS(2948), 1, + ACTIONS(3755), 1, sym_id, - STATE(2826), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(2239), 3, + STATE(2128), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [114897] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, - sym_id, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4302), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [114950] = 15, + [112547] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(431), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(433), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(435), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + ACTIONS(3747), 1, + anon_sym_LPAREN, + ACTIONS(3749), 1, + anon_sym_forall, + ACTIONS(3753), 1, sym_operator, - ACTIONS(2948), 1, + ACTIONS(3755), 1, sym_id, - STATE(2826), 1, + STATE(577), 1, sym_primitive_reverse_atom, - STATE(2252), 3, + STATE(2125), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3751), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(133), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [115001] = 2, + [112596] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(923), 1, sym_operator, - sym_macro_id, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, sym_id, - sym_qualified_id, - sym_force_id, - [115026] = 15, + STATE(321), 1, + sym_type, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112645] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2934), 1, - anon_sym_BANG, - ACTIONS(2936), 1, - anon_sym_BANG_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, sym_operator, - ACTIONS(2948), 1, + ACTIONS(3763), 1, sym_id, - STATE(2826), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(2253), 3, + STATE(5028), 1, sym_type, - sym_type_effect_suffix, - aux_sym_type_repeat2, - STATE(1724), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [115077] = 2, + [112694] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, - sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115102] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3765), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3855), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115155] = 16, - ACTIONS(3), 1, + ACTIONS(3767), 1, + anon_sym_forall, + ACTIONS(3771), 1, + sym_operator, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112743] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, sym_id, - ACTIONS(3459), 1, + ACTIONS(3765), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym__, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(1074), 1, - sym_pattern, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115208] = 16, - ACTIONS(3), 1, + ACTIONS(3767), 1, + anon_sym_forall, + ACTIONS(3771), 1, + sym_operator, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112792] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3447), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3685), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115261] = 16, - ACTIONS(3), 1, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4176), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112841] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, sym_id, - ACTIONS(3459), 1, + ACTIONS(3765), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym__, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(1022), 1, - sym_pattern, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115314] = 16, - ACTIONS(3), 1, + ACTIONS(3767), 1, + anon_sym_forall, + ACTIONS(3771), 1, + sym_operator, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112890] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, sym_id, - ACTIONS(3429), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4525), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115367] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(921), 19, + ACTIONS(3765), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3767), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3771), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115392] = 16, - ACTIONS(3), 1, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3056), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112939] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4300), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115445] = 16, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4200), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [112988] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(1965), 1, + ACTIONS(3089), 1, aux_sym_integer_token1, - ACTIONS(1967), 1, + ACTIONS(3091), 1, sym_floating, - ACTIONS(1969), 1, + ACTIONS(3093), 1, anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3601), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3605), 1, anon_sym_BANG, - ACTIONS(3433), 1, + ACTIONS(3607), 1, anon_sym__, - STATE(1036), 1, + STATE(1457), 1, sym_pattern_var, - STATE(1037), 1, + STATE(1459), 1, sym_string, - STATE(2349), 1, + STATE(2960), 1, sym_integer, - STATE(4567), 1, + STATE(3678), 1, sym_pattern, - ACTIONS(1963), 2, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - STATE(1272), 4, + STATE(1776), 4, sym_pattern_cons, sym_pattern_unit, sym_number, sym_string_cons, - [115498] = 16, - ACTIONS(3), 1, + [113041] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3765), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4296), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115551] = 2, + ACTIONS(3767), 1, + anon_sym_forall, + ACTIONS(3771), 1, + sym_operator, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113090] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 19, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, sym_operator, - sym_macro_id, + ACTIONS(3773), 1, + anon_sym_LPAREN, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - sym_qualified_id, - sym_force_id, - [115576] = 16, - ACTIONS(3), 1, + STATE(281), 1, + sym_type, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113139] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3441), 1, + ACTIONS(3779), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym__, - STATE(896), 1, - sym_pattern_var, - STATE(897), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4316), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1020), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115629] = 16, - ACTIONS(3), 1, + ACTIONS(3781), 1, + anon_sym_forall, + ACTIONS(3785), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2325), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113188] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3429), 1, + ACTIONS(3779), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym__, - STATE(1036), 1, - sym_pattern_var, - STATE(1037), 1, - sym_string, - STATE(2349), 1, - sym_integer, - STATE(4574), 1, - sym_pattern, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1272), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115682] = 2, + ACTIONS(3781), 1, + anon_sym_forall, + ACTIONS(3785), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2326), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113237] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 19, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3779), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3781), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3785), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115707] = 2, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2327), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113286] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115732] = 16, - ACTIONS(3), 1, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4231), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113335] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(2339), 1, - anon_sym_QMARK, - ACTIONS(2343), 1, - aux_sym_integer_token1, - ACTIONS(2345), 1, - sym_floating, - ACTIONS(2347), 1, - anon_sym_DQUOTE, - ACTIONS(2349), 1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3447), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym__, - STATE(1015), 1, - sym_pattern_var, - STATE(1016), 1, - sym_string, - STATE(2333), 1, - sym_integer, - STATE(3596), 1, - sym_pattern, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1521), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115785] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(859), 19, + ACTIONS(3779), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3781), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3785), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115810] = 2, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2328), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113384] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 19, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3779), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3781), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3785), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115835] = 2, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2329), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113433] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 19, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115860] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5010), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113482] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 19, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3463), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3469), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115885] = 16, - ACTIONS(3), 1, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3825), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113531] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(1955), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - ACTIONS(1961), 1, - anon_sym_QMARK, - ACTIONS(1965), 1, - aux_sym_integer_token1, - ACTIONS(1967), 1, - sym_floating, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - ACTIONS(1971), 1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3459), 1, + ACTIONS(3779), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym__, - STATE(967), 1, - sym_string, - STATE(969), 1, - sym_pattern_var, - STATE(1195), 1, - sym_pattern, - STATE(2349), 1, - sym_integer, - ACTIONS(1963), 2, - sym_hex_integer, - sym_octet_integer, - STATE(1081), 4, - sym_pattern_cons, - sym_pattern_unit, - sym_number, - sym_string_cons, - [115938] = 2, + ACTIONS(3781), 1, + anon_sym_forall, + ACTIONS(3785), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2330), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113580] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 19, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3779), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3781), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3785), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [115963] = 2, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(2332), 1, + sym_type, + ACTIONS(3783), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(181), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113629] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 19, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [115988] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2750), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113678] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 19, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116013] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2749), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113727] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 18, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116037] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2748), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113776] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 18, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116061] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2747), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113825] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 18, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, + sym_id, + ACTIONS(3765), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3767), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3771), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116085] = 2, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113874] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 18, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2747), 1, + sym_id, + ACTIONS(3765), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3767), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3771), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116109] = 2, + STATE(2977), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3769), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1239), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113923] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 18, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116133] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2746), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [113972] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 18, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3789), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, sym_operator, - sym_macro_id, + ACTIONS(3797), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116157] = 2, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2745), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114021] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 18, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + ACTIONS(3731), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3733), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3735), 1, sym_operator, - sym_macro_id, + ACTIONS(3737), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116181] = 2, + STATE(173), 1, + sym_type, + STATE(319), 1, + sym_primitive_reverse_atom, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(3), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114070] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(845), 18, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5008), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114119] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116205] = 2, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4262), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114168] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4272), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114217] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, + anon_sym_LPAREN, + ACTIONS(3789), 1, + anon_sym_forall, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, + sym_operator, + ACTIONS(3797), 1, + sym_id, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2744), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114266] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, + anon_sym_LPAREN, + ACTIONS(3789), 1, + anon_sym_forall, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, + sym_operator, + ACTIONS(3797), 1, + sym_id, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2759), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114315] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3697), 1, + anon_sym_LPAREN, + ACTIONS(3699), 1, + anon_sym_forall, + ACTIONS(3701), 1, + sym_operator, + ACTIONS(3703), 1, + sym_id, + STATE(186), 1, + sym_type, + STATE(355), 1, + sym_primitive_reverse_atom, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114364] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4278), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114413] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4287), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114462] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2093), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114511] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2084), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114560] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2081), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114609] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2076), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114658] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2048), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114707] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, + anon_sym_LPAREN, + ACTIONS(3789), 1, + anon_sym_forall, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, + sym_operator, + ACTIONS(3797), 1, + sym_id, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2752), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114756] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(3787), 1, + anon_sym_LPAREN, + ACTIONS(3789), 1, + anon_sym_forall, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3795), 1, + sym_operator, + ACTIONS(3797), 1, + sym_id, + STATE(1779), 1, + sym_primitive_reverse_atom, + STATE(2753), 1, + sym_type, + ACTIONS(3791), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(260), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114805] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2065), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114854] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + anon_sym_forall, + ACTIONS(3805), 1, + sym_operator, + ACTIONS(3807), 1, + sym_id, + STATE(619), 1, + sym_primitive_reverse_atom, + STATE(2061), 1, + sym_type, + ACTIONS(3803), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(125), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114903] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(859), 1, + anon_sym_forall, + ACTIONS(865), 1, + sym_type_implicit_var, + ACTIONS(867), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(869), 1, + anon_sym_POUND_BANG, + ACTIONS(871), 1, + sym_operator, + ACTIONS(3773), 1, + anon_sym_LPAREN, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, + sym_id, + STATE(271), 1, + sym_type, + STATE(1786), 1, + sym_primitive_reverse_atom, + ACTIONS(861), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(278), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [114952] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4291), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115001] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3427), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102511,18 +105768,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116229] = 2, + [115026] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 18, + ACTIONS(1132), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102533,18 +105791,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116253] = 2, + [115051] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 18, + ACTIONS(1086), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102555,18 +105814,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116277] = 2, + [115076] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(901), 18, + ACTIONS(1056), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102577,10 +105837,10 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116301] = 2, + [115101] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(909), 18, + ACTIONS(1050), 19, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_forall, @@ -102589,6 +105849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102599,18 +105860,19 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116325] = 2, + [115126] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 18, + ACTIONS(1046), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102621,40 +105883,54 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116349] = 2, + [115151] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 18, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116373] = 2, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4315), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115200] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 18, + ACTIONS(1054), 19, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_forall, + anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_let, anon_sym_do, anon_sym_with, + anon_sym_handler, sym_hex_integer, sym_octet_integer, aux_sym_integer_token1, @@ -102665,13193 +105941,17765 @@ static const uint16_t ts_small_parse_table[] = { sym_id, sym_qualified_id, sym_force_id, - [116397] = 2, + [115225] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116421] = 2, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4320), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115274] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(925), 18, + ACTIONS(2091), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2111), 1, sym_operator, - sym_macro_id, + ACTIONS(2113), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116445] = 2, + STATE(960), 1, + sym_type, + STATE(2792), 1, + sym_primitive_reverse_atom, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1054), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115323] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(921), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116469] = 2, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4333), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115372] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(915), 18, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116493] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4342), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115421] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(841), 18, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3463), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3469), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116517] = 2, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4462), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115470] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(905), 18, + ACTIONS(2559), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, sym_operator, - sym_macro_id, + ACTIONS(2581), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116541] = 2, + STATE(1103), 1, + sym_type, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115519] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(855), 18, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3019), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3025), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116565] = 2, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4471), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115568] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(851), 18, + ACTIONS(2519), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, sym_operator, - sym_macro_id, + ACTIONS(2541), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116589] = 2, + STATE(1089), 1, + sym_type, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115617] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(833), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116613] = 2, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4366), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115666] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(859), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116637] = 3, - ACTIONS(3), 1, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4372), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115715] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(3084), 4, + ACTIONS(2015), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(3086), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2027), 1, aux_sym_type_unit_token1, - anon_sym_RBRACK, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [116663] = 2, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(1074), 1, + sym_type, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115764] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1096), 18, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3667), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3671), 1, sym_operator, - sym_macro_id, - sym_id, - sym_qualified_id, - sym_force_id, - [116687] = 2, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4381), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115813] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3242), 18, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(31), 1, + aux_sym_type_unit_token1, + ACTIONS(33), 1, + sym_type_implicit_var, + ACTIONS(35), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(37), 1, + anon_sym_POUND_BANG, + ACTIONS(3731), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(3733), 1, anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_let, - anon_sym_do, - anon_sym_with, - sym_hex_integer, - sym_octet_integer, - aux_sym_integer_token1, - sym_floating, - anon_sym_DQUOTE, + ACTIONS(3735), 1, sym_operator, - sym_macro_id, + ACTIONS(3737), 1, sym_id, - sym_qualified_id, - sym_force_id, - [116711] = 4, - ACTIONS(3), 1, + STATE(8), 1, + sym_type, + STATE(319), 1, + sym_primitive_reverse_atom, + ACTIONS(25), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(3), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115862] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(3467), 1, - aux_sym_number_token1, - ACTIONS(2981), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(3465), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(2836), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [116763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3469), 4, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(3471), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_AT, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116788] = 3, - ACTIONS(3), 1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4795), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115911] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2838), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(2840), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [116813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 4, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3697), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3699), 1, + anon_sym_forall, + ACTIONS(3701), 1, + sym_operator, + ACTIONS(3703), 1, sym_id, - ACTIONS(2285), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116837] = 3, - ACTIONS(3), 1, + STATE(48), 1, + sym_type, + STATE(355), 1, + sym_primitive_reverse_atom, + ACTIONS(131), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(40), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [115960] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2267), 4, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, + anon_sym_forall, + ACTIONS(725), 1, + sym_type_implicit_var, + ACTIONS(727), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(729), 1, + anon_sym_POUND_BANG, + ACTIONS(731), 1, + sym_operator, + ACTIONS(3673), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(2269), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3675), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3475), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116885] = 3, - ACTIONS(3), 1, + STATE(285), 1, + sym_type, + STATE(1603), 1, + sym_primitive_reverse_atom, + ACTIONS(721), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(240), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116009] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2105), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, sym_id, - ACTIONS(3477), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [116933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 5, + ACTIONS(3809), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2836), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [116957] = 3, - ACTIONS(3), 1, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3031), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116058] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2838), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2840), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [116981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 5, + ACTIONS(191), 1, + sym_type_implicit_var, + ACTIONS(193), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(195), 1, + anon_sym_POUND_BANG, + ACTIONS(3723), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(3725), 1, + anon_sym_forall, + ACTIONS(3727), 1, + sym_operator, + ACTIONS(3729), 1, sym_id, - ACTIONS(3086), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - aux_sym_number_token1, - anon_sym_DQUOTE, - [117005] = 3, + STATE(53), 1, + sym_type, + STATE(500), 1, + sym_primitive_reverse_atom, + ACTIONS(183), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(90), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116107] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(3481), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3079), 1, aux_sym_type_unit_token1, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - [117029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3469), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3471), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_LPAREN, + ACTIONS(3819), 1, anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_AT, - anon_sym_QMARK, + ACTIONS(3821), 1, + anon_sym__, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(1764), 1, + sym_pattern, + STATE(2960), 1, + sym_integer, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117053] = 3, - ACTIONS(3), 1, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [116160] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(3483), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3485), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1842), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116209] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117077] = 3, - ACTIONS(3), 1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1825), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116258] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(3487), 4, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4967), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116307] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, sym_id, - ACTIONS(3489), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4838), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116356] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117101] = 4, - ACTIONS(3), 1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4969), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116405] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(3491), 1, - aux_sym_number_token1, - ACTIONS(2981), 5, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3067), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116454] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, sym_id, - ACTIONS(3465), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1806), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116503] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1812), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116552] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4505), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116601] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1835), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116650] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4395), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116699] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1840), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116748] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(137), 1, + aux_sym_type_unit_token1, + ACTIONS(139), 1, + sym_type_implicit_var, + ACTIONS(141), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(143), 1, + anon_sym_POUND_BANG, + ACTIONS(3703), 1, + sym_id, + ACTIONS(3823), 1, + anon_sym_LPAREN, + ACTIONS(3825), 1, + anon_sym_forall, + ACTIONS(3829), 1, + sym_operator, + STATE(355), 1, + sym_primitive_reverse_atom, + STATE(1860), 1, + sym_type, + ACTIONS(3827), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(35), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116797] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3143), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116846] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3141), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116895] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3056), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116944] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3138), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [116993] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3133), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117042] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(1247), 1, + sym_type, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117091] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3129), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117140] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3128), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117189] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4449), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117238] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4456), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117287] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, + anon_sym_forall, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(923), 1, + sym_operator, + ACTIONS(3757), 1, + anon_sym_LPAREN, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + STATE(315), 1, + sym_type, + STATE(1830), 1, + sym_primitive_reverse_atom, + ACTIONS(913), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(310), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117336] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4465), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117385] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3118), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117434] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4964), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117483] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3116), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117532] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4534), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117581] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117630] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, + anon_sym_forall, + ACTIONS(553), 1, + sym_type_implicit_var, + ACTIONS(555), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(557), 1, + anon_sym_POUND_BANG, + ACTIONS(559), 1, + sym_operator, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + aux_sym_type_unit_token1, + ACTIONS(3843), 1, + sym_id, + STATE(217), 1, + sym_type, + STATE(1501), 1, + sym_primitive_reverse_atom, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(208), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117679] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4856), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117728] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4860), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117777] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4199), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117826] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LPAREN, + ACTIONS(2561), 1, + anon_sym_LBRACE, + ACTIONS(2563), 1, + anon_sym_forall, + ACTIONS(2571), 1, + aux_sym_type_unit_token1, + ACTIONS(2573), 1, + sym_type_implicit_var, + ACTIONS(2575), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2577), 1, + anon_sym_POUND_BANG, + ACTIONS(2579), 1, + sym_operator, + ACTIONS(2581), 1, + sym_id, + STATE(1376), 1, + sym_type, + STATE(2969), 1, + sym_primitive_reverse_atom, + ACTIONS(2565), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1396), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117875] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3835), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117924] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [117973] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(257), 1, + aux_sym_type_unit_token1, + ACTIONS(259), 1, + sym_type_implicit_var, + ACTIONS(261), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(263), 1, + anon_sym_POUND_BANG, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_forall, + ACTIONS(3849), 1, + sym_operator, + ACTIONS(3851), 1, + sym_id, + STATE(102), 1, + sym_type, + STATE(505), 1, + sym_primitive_reverse_atom, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(88), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118022] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3815), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118071] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2519), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, + anon_sym_forall, + ACTIONS(2531), 1, + aux_sym_type_unit_token1, + ACTIONS(2533), 1, + sym_type_implicit_var, + ACTIONS(2535), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2537), 1, + anon_sym_POUND_BANG, + ACTIONS(2539), 1, + sym_operator, + ACTIONS(2541), 1, + sym_id, + STATE(1323), 1, + sym_type, + STATE(2908), 1, + sym_primitive_reverse_atom, + ACTIONS(2525), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118120] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3695), 1, + sym_id, + ACTIONS(3853), 1, + anon_sym_LPAREN, + ACTIONS(3855), 1, + anon_sym_forall, + ACTIONS(3857), 1, + sym_operator, + STATE(149), 1, + sym_type, + STATE(623), 1, + sym_primitive_reverse_atom, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(142), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118169] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4970), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118218] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3150), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118267] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4862), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118316] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2037), 1, + sym_id, + ACTIONS(3831), 1, + anon_sym_LPAREN, + ACTIONS(3833), 1, + anon_sym_forall, + ACTIONS(3837), 1, + sym_operator, + STATE(2880), 1, + sym_primitive_reverse_atom, + STATE(3158), 1, + sym_type, + ACTIONS(3835), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(945), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118365] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118414] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + aux_sym_type_unit_token1, + ACTIONS(2965), 1, + sym_type_implicit_var, + ACTIONS(2967), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2969), 1, + anon_sym_POUND_BANG, + ACTIONS(2973), 1, + sym_id, + ACTIONS(3809), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_forall, + ACTIONS(3815), 1, + sym_operator, + STATE(2965), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3813), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1377), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118463] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(845), 1, + sym_type, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118512] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + anon_sym_LBRACE, + ACTIONS(2019), 1, + anon_sym_forall, + ACTIONS(2027), 1, + aux_sym_type_unit_token1, + ACTIONS(2029), 1, + sym_type_implicit_var, + ACTIONS(2031), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2033), 1, + anon_sym_POUND_BANG, + ACTIONS(2035), 1, + sym_operator, + ACTIONS(2037), 1, + sym_id, + STATE(942), 1, + sym_type, + STATE(2880), 1, + sym_primitive_reverse_atom, + ACTIONS(2021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(971), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118561] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, + anon_sym_forall, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(715), 1, + sym_operator, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3797), 1, + sym_id, + ACTIONS(3859), 1, + anon_sym_LPAREN, + STATE(263), 1, + sym_type, + STATE(1779), 1, + sym_primitive_reverse_atom, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118610] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(3068), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118659] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, + anon_sym_forall, + ACTIONS(657), 1, + sym_type_implicit_var, + ACTIONS(659), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(661), 1, + anon_sym_POUND_BANG, + ACTIONS(663), 1, + sym_operator, + ACTIONS(3861), 1, + anon_sym_LPAREN, + ACTIONS(3863), 1, + aux_sym_type_unit_token1, + ACTIONS(3865), 1, + sym_id, + STATE(233), 1, + sym_type, + STATE(1510), 1, + sym_primitive_reverse_atom, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(201), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118708] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4468), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118757] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(1672), 1, + sym_type, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118806] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4478), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [118859] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2113), 1, + sym_id, + ACTIONS(3867), 1, + anon_sym_LPAREN, + ACTIONS(3869), 1, + anon_sym_forall, + ACTIONS(3873), 1, + sym_operator, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(3158), 1, + sym_type, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118908] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1901), 1, + anon_sym_forall, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1917), 1, + sym_operator, + ACTIONS(1919), 1, + sym_id, + STATE(928), 1, + sym_type, + STATE(2754), 1, + sym_primitive_reverse_atom, + ACTIONS(1903), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(893), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [118957] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3805), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119006] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2039), 1, + anon_sym_LPAREN, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, + anon_sym_forall, + ACTIONS(2051), 1, + aux_sym_type_unit_token1, + ACTIONS(2053), 1, + sym_type_implicit_var, + ACTIONS(2055), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(2059), 1, + sym_operator, + ACTIONS(2061), 1, + sym_id, + STATE(975), 1, + sym_type, + STATE(2886), 1, + sym_primitive_reverse_atom, + ACTIONS(2045), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1064), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119055] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, + aux_sym_type_unit_token1, + ACTIONS(2105), 1, + sym_type_implicit_var, + ACTIONS(2107), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2109), 1, + anon_sym_POUND_BANG, + ACTIONS(2113), 1, + sym_id, + ACTIONS(3867), 1, + anon_sym_LPAREN, + ACTIONS(3869), 1, + anon_sym_forall, + ACTIONS(3873), 1, + sym_operator, + STATE(2792), 1, + sym_primitive_reverse_atom, + STATE(3150), 1, + sym_type, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119104] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4507), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119153] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4515), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119202] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, + aux_sym_type_unit_token1, + ACTIONS(1911), 1, + sym_type_implicit_var, + ACTIONS(1913), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(1915), 1, + anon_sym_POUND_BANG, + ACTIONS(1919), 1, + sym_id, + ACTIONS(3665), 1, + anon_sym_LPAREN, + ACTIONS(3667), 1, + anon_sym_forall, + ACTIONS(3671), 1, + sym_operator, + STATE(2754), 1, + sym_primitive_reverse_atom, + STATE(4537), 1, + sym_type, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119251] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(241), 1, + aux_sym_type_unit_token1, + ACTIONS(243), 1, + sym_type_implicit_var, + ACTIONS(245), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(247), 1, + anon_sym_POUND_BANG, + ACTIONS(3875), 1, + anon_sym_LPAREN, + ACTIONS(3877), 1, + anon_sym_forall, + ACTIONS(3879), 1, + sym_operator, + ACTIONS(3881), 1, + sym_id, + STATE(81), 1, + sym_type, + STATE(506), 1, + sym_primitive_reverse_atom, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(105), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119300] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_forall, + ACTIONS(2879), 1, + aux_sym_type_unit_token1, + ACTIONS(2881), 1, + sym_type_implicit_var, + ACTIONS(2883), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2885), 1, + anon_sym_POUND_BANG, + ACTIONS(2887), 1, + sym_operator, + ACTIONS(2889), 1, + sym_id, + STATE(1086), 1, + sym_type, + STATE(2986), 1, + sym_primitive_reverse_atom, + ACTIONS(2873), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1108), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119349] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, + aux_sym_type_unit_token1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3755), 1, + sym_id, + ACTIONS(3883), 1, + anon_sym_LPAREN, + ACTIONS(3885), 1, + anon_sym_forall, + ACTIONS(3887), 1, + sym_operator, + STATE(168), 1, + sym_type, + STATE(577), 1, + sym_primitive_reverse_atom, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119398] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + aux_sym_type_unit_token1, + ACTIONS(3893), 1, + sym_id, + STATE(265), 1, + sym_type, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119447] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(545), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, + anon_sym_forall, + ACTIONS(553), 1, + sym_type_implicit_var, + ACTIONS(555), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(557), 1, + anon_sym_POUND_BANG, + ACTIONS(559), 1, + sym_operator, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + aux_sym_type_unit_token1, + ACTIONS(3843), 1, + sym_id, + STATE(224), 1, + sym_type, + STATE(1501), 1, + sym_primitive_reverse_atom, + ACTIONS(549), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(208), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119496] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(257), 1, + aux_sym_type_unit_token1, + ACTIONS(259), 1, + sym_type_implicit_var, + ACTIONS(261), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(263), 1, + anon_sym_POUND_BANG, + ACTIONS(3845), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_forall, + ACTIONS(3849), 1, + sym_operator, + ACTIONS(3851), 1, + sym_id, + STATE(100), 1, + sym_type, + STATE(505), 1, + sym_primitive_reverse_atom, + ACTIONS(251), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(88), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119545] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + aux_sym_type_unit_token1, + ACTIONS(415), 1, + sym_type_implicit_var, + ACTIONS(417), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(419), 1, + anon_sym_POUND_BANG, + ACTIONS(3695), 1, + sym_id, + ACTIONS(3853), 1, + anon_sym_LPAREN, + ACTIONS(3855), 1, + anon_sym_forall, + ACTIONS(3857), 1, + sym_operator, + STATE(159), 1, + sym_type, + STATE(623), 1, + sym_primitive_reverse_atom, + ACTIONS(407), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(142), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119594] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3003), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119643] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3004), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119692] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACE, + ACTIONS(703), 1, + anon_sym_forall, + ACTIONS(709), 1, + sym_type_implicit_var, + ACTIONS(711), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(713), 1, + anon_sym_POUND_BANG, + ACTIONS(715), 1, + sym_operator, + ACTIONS(3793), 1, + aux_sym_type_unit_token1, + ACTIONS(3797), 1, + sym_id, + ACTIONS(3859), 1, + anon_sym_LPAREN, + STATE(257), 1, + sym_type, + STATE(1779), 1, + sym_primitive_reverse_atom, + ACTIONS(705), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(245), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119741] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3008), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119790] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3005), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119839] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(1278), 1, + sym_type, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119888] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(649), 1, + anon_sym_LBRACE, + ACTIONS(651), 1, + anon_sym_forall, + ACTIONS(657), 1, + sym_type_implicit_var, + ACTIONS(659), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(661), 1, + anon_sym_POUND_BANG, + ACTIONS(663), 1, + sym_operator, + ACTIONS(3861), 1, + anon_sym_LPAREN, + ACTIONS(3863), 1, + aux_sym_type_unit_token1, + ACTIONS(3865), 1, + sym_id, + STATE(202), 1, + sym_type, + STATE(1510), 1, + sym_primitive_reverse_atom, + ACTIONS(653), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(201), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119937] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_LBRACE, + ACTIONS(241), 1, + aux_sym_type_unit_token1, + ACTIONS(243), 1, + sym_type_implicit_var, + ACTIONS(245), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(247), 1, + anon_sym_POUND_BANG, + ACTIONS(3875), 1, + anon_sym_LPAREN, + ACTIONS(3877), 1, + anon_sym_forall, + ACTIONS(3879), 1, + sym_operator, + ACTIONS(3881), 1, + sym_id, + STATE(77), 1, + sym_type, + STATE(506), 1, + sym_primitive_reverse_atom, + ACTIONS(235), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(105), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [119986] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(2997), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120035] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(2998), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120084] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, + aux_sym_type_unit_token1, + ACTIONS(431), 1, + sym_type_implicit_var, + ACTIONS(433), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(435), 1, + anon_sym_POUND_BANG, + ACTIONS(3755), 1, + sym_id, + ACTIONS(3883), 1, + anon_sym_LPAREN, + ACTIONS(3885), 1, + anon_sym_forall, + ACTIONS(3887), 1, + sym_operator, + STATE(122), 1, + sym_type, + STATE(577), 1, + sym_primitive_reverse_atom, + ACTIONS(423), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120133] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(805), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, + anon_sym_forall, + ACTIONS(813), 1, + sym_type_implicit_var, + ACTIONS(815), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(817), 1, + anon_sym_POUND_BANG, + ACTIONS(819), 1, + sym_operator, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + aux_sym_type_unit_token1, + ACTIONS(3893), 1, + sym_id, + STATE(299), 1, + sym_type, + STATE(1593), 1, + sym_primitive_reverse_atom, + ACTIONS(809), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(288), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120182] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, + anon_sym_forall, + ACTIONS(605), 1, + sym_type_implicit_var, + ACTIONS(607), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(609), 1, + anon_sym_POUND_BANG, + ACTIONS(611), 1, + sym_operator, + ACTIONS(3903), 1, + anon_sym_LPAREN, + ACTIONS(3905), 1, + aux_sym_type_unit_token1, + ACTIONS(3907), 1, + sym_id, + STATE(193), 1, + sym_type, + STATE(1504), 1, + sym_primitive_reverse_atom, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(216), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120231] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(273), 1, + aux_sym_type_unit_token1, + ACTIONS(275), 1, + sym_type_implicit_var, + ACTIONS(277), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(279), 1, + anon_sym_POUND_BANG, + ACTIONS(3909), 1, + anon_sym_LPAREN, + ACTIONS(3911), 1, + anon_sym_forall, + ACTIONS(3913), 1, + sym_operator, + ACTIONS(3915), 1, + sym_id, + STATE(80), 1, + sym_type, + STATE(474), 1, + sym_primitive_reverse_atom, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(69), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120280] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3002), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120329] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_LPAREN, + ACTIONS(2727), 1, + anon_sym_LBRACE, + ACTIONS(2729), 1, + anon_sym_forall, + ACTIONS(2737), 1, + aux_sym_type_unit_token1, + ACTIONS(2739), 1, + sym_type_implicit_var, + ACTIONS(2741), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2743), 1, + anon_sym_POUND_BANG, + ACTIONS(2745), 1, + sym_operator, + ACTIONS(2747), 1, + sym_id, + STATE(1400), 1, + sym_type, + STATE(2977), 1, + sym_primitive_reverse_atom, + ACTIONS(2731), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1389), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120378] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3001), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120427] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3807), 1, + sym_id, + ACTIONS(3917), 1, + anon_sym_LPAREN, + ACTIONS(3919), 1, + anon_sym_forall, + ACTIONS(3921), 1, + sym_operator, + STATE(135), 1, + sym_type, + STATE(619), 1, + sym_primitive_reverse_atom, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(124), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120476] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(599), 1, + anon_sym_forall, + ACTIONS(605), 1, + sym_type_implicit_var, + ACTIONS(607), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(609), 1, + anon_sym_POUND_BANG, + ACTIONS(611), 1, + sym_operator, + ACTIONS(3903), 1, + anon_sym_LPAREN, + ACTIONS(3905), 1, + aux_sym_type_unit_token1, + ACTIONS(3907), 1, + sym_id, + STATE(226), 1, + sym_type, + STATE(1504), 1, + sym_primitive_reverse_atom, + ACTIONS(601), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(216), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120525] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_forall, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2225), 1, + sym_operator, + ACTIONS(2227), 1, + sym_id, + STATE(985), 1, + sym_type, + STATE(2822), 1, + sym_primitive_reverse_atom, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(965), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120574] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(265), 1, + anon_sym_LBRACE, + ACTIONS(273), 1, + aux_sym_type_unit_token1, + ACTIONS(275), 1, + sym_type_implicit_var, + ACTIONS(277), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(279), 1, + anon_sym_POUND_BANG, + ACTIONS(3909), 1, + anon_sym_LPAREN, + ACTIONS(3911), 1, + anon_sym_forall, + ACTIONS(3913), 1, + sym_operator, + ACTIONS(3915), 1, + sym_id, + STATE(117), 1, + sym_type, + STATE(474), 1, + sym_primitive_reverse_atom, + ACTIONS(267), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(69), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120623] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(397), 1, + aux_sym_type_unit_token1, + ACTIONS(399), 1, + sym_type_implicit_var, + ACTIONS(401), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(403), 1, + anon_sym_POUND_BANG, + ACTIONS(3807), 1, + sym_id, + ACTIONS(3917), 1, + anon_sym_LPAREN, + ACTIONS(3919), 1, + anon_sym_forall, + ACTIONS(3921), 1, + sym_operator, + STATE(136), 1, + sym_type, + STATE(619), 1, + sym_primitive_reverse_atom, + ACTIONS(391), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(124), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120672] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4421), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120721] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4602), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120770] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(2999), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120819] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_LBRACE, + ACTIONS(917), 1, + sym_type_implicit_var, + ACTIONS(919), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(921), 1, + anon_sym_POUND_BANG, + ACTIONS(3759), 1, + aux_sym_type_unit_token1, + ACTIONS(3761), 1, + sym_id, + ACTIONS(3895), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_forall, + ACTIONS(3901), 1, + sym_operator, + STATE(1830), 1, + sym_primitive_reverse_atom, + STATE(3007), 1, + sym_type, + ACTIONS(3899), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(342), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120868] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5117), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [120917] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4414), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [120970] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4975), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121019] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4870), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121068] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4976), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121117] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4962), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121166] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3030), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121215] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, aux_sym_type_unit_token1, - anon_sym_LT_DASH, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - [117127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3095), 1, sym_id, - ACTIONS(2067), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4127), 1, + sym_pattern, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117151] = 3, - ACTIONS(3), 1, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [121268] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2093), 4, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3143), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121317] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(2095), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3064), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121366] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117175] = 3, - ACTIONS(3), 1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(4550), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121415] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2101), 4, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3141), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121464] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, sym_id, - ACTIONS(2103), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3795), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121513] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117199] = 3, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(3041), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121562] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_BANG, + ACTIONS(3079), 1, aux_sym_type_unit_token1, + ACTIONS(3085), 1, anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, sym_floating, + ACTIONS(3093), 1, anon_sym_DQUOTE, - [117223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 4, - anon_sym_LPAREN, - anon_sym__, - aux_sym_integer_token1, + ACTIONS(3095), 1, sym_id, - ACTIONS(3493), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4564), 1, + sym_pattern, + ACTIONS(3087), 2, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117247] = 3, - ACTIONS(3), 1, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [121615] = 14, + ACTIONS(9), 1, sym_comment, - ACTIONS(2109), 4, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + aux_sym_type_unit_token1, + ACTIONS(2187), 1, + sym_type_implicit_var, + ACTIONS(2189), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2191), 1, + anon_sym_POUND_BANG, + ACTIONS(2195), 1, + sym_id, + ACTIONS(3015), 1, anon_sym_LPAREN, - anon_sym__, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, + sym_primitive_reverse_atom, + STATE(5109), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [121664] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - ACTIONS(2111), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_QMARK, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1465), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, sym_hex_integer, sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [117271] = 13, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [121717] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2961), 1, + STATE(4525), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117314] = 13, + [121766] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3155), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3503), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3505), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3507), 1, - anon_sym_DASH_GT, - ACTIONS(3509), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2890), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2955), 1, + STATE(4961), 1, sym_type, - STATE(1882), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117357] = 13, + [121815] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4270), 1, + STATE(4977), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117400] = 13, + [121864] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(959), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(961), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, + ACTIONS(2227), 1, sym_id, - STATE(424), 1, - sym_type, - STATE(2017), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(388), 4, + STATE(3056), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117443] = 13, + [121913] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(49), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(61), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(27), 1, - sym_type, - STATE(420), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(28), 4, + STATE(5111), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117486] = 13, + [121962] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4602), 1, + STATE(4599), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117529] = 13, + [122011] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2951), 1, + anon_sym_LPAREN, + ACTIONS(2953), 1, + anon_sym_LBRACE, + ACTIONS(2955), 1, + anon_sym_forall, + ACTIONS(2963), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2965), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2967), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2969), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2971), 1, + sym_operator, + ACTIONS(2973), 1, sym_id, - ACTIONS(3519), 1, + STATE(1350), 1, + sym_type, + STATE(2965), 1, + sym_primitive_reverse_atom, + ACTIONS(2957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1152), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [122060] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3469), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2714), 1, + STATE(5090), 1, sym_type, - STATE(203), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117572] = 13, + [122109] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2956), 1, + STATE(3031), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117615] = 13, + [122158] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3935), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2720), 1, + STATE(3030), 1, sym_type, - STATE(203), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117658] = 13, + [122207] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3935), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2955), 1, + STATE(3064), 1, sym_type, - STATE(1725), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117701] = 13, + [122256] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(3220), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3228), 1, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(3236), 1, + ACTIONS(2193), 1, sym_operator, - ACTIONS(3238), 1, + ACTIONS(2195), 1, sym_id, - STATE(1794), 1, + STATE(963), 1, sym_type, - STATE(2853), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(1820), 4, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(973), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117744] = 13, + [122305] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3935), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3623), 1, + STATE(3041), 1, sym_type, - STATE(1691), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117787] = 13, + [122354] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3935), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2946), 1, + STATE(3056), 1, sym_type, - STATE(1725), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117830] = 13, + [122403] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_forall, - ACTIONS(2846), 1, - anon_sym_DASH_GT, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, - sym_operator, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - STATE(1767), 1, - sym_type, - STATE(2815), 1, + ACTIONS(3929), 1, + anon_sym_LPAREN, + ACTIONS(3931), 1, + anon_sym_forall, + ACTIONS(3935), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1712), 4, + STATE(3031), 1, + sym_type, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117873] = 13, + [122452] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3469), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2724), 1, + STATE(3138), 1, sym_type, - STATE(203), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117916] = 13, + [122501] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3624), 1, + STATE(3133), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [117959] = 13, + [122550] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3817), 1, + anon_sym_LPAREN, + ACTIONS(3819), 1, + anon_sym_BANG, + ACTIONS(3821), 1, + anon_sym__, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(1715), 1, + sym_pattern, + STATE(2960), 1, + sym_integer, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [122603] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2945), 1, + STATE(3067), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118002] = 13, + [122652] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3935), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2728), 1, + STATE(3067), 1, sym_type, - STATE(203), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118045] = 13, + [122701] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3929), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3931), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3935), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2739), 1, + STATE(3068), 1, sym_type, - STATE(203), 4, + ACTIONS(3933), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1652), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118088] = 13, + [122750] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3625), 1, + STATE(4773), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118131] = 13, + [122799] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3469), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2765), 1, + STATE(4778), 1, sym_type, - STATE(203), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118174] = 13, + [122848] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(2063), 1, anon_sym_LPAREN, - ACTIONS(3143), 1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3151), 1, + ACTIONS(2075), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, + ACTIONS(2077), 1, sym_type_implicit_var, - ACTIONS(3155), 1, + ACTIONS(2079), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2081), 1, anon_sym_POUND_BANG, - ACTIONS(3159), 1, + ACTIONS(2083), 1, sym_operator, - ACTIONS(3161), 1, + ACTIONS(2085), 1, sym_id, - STATE(1843), 1, + STATE(943), 1, sym_type, - STATE(2890), 1, + STATE(2883), 1, sym_primitive_reverse_atom, - STATE(1782), 4, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1058), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118217] = 13, + [122897] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2963), 1, + STATE(3949), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118260] = 13, + [122946] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3469), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2769), 1, + STATE(4393), 1, sym_type, - STATE(203), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118303] = 13, + [122995] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3469), 1, sym_operator, - STATE(1922), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2771), 1, + STATE(4588), 1, sym_type, - STATE(203), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118346] = 13, + [123044] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2959), 1, + STATE(4138), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118389] = 13, + [123093] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3495), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(3527), 1, - sym_id, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4799), 1, + STATE(3068), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118432] = 13, + [123142] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3626), 1, + STATE(3845), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118475] = 13, + [123191] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2815), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(2957), 1, + STATE(5096), 1, sym_type, - STATE(1725), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118518] = 13, + [123240] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2878), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2884), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3529), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3533), 1, - anon_sym_DASH_GT, - ACTIONS(3535), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2795), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3364), 1, + STATE(4782), 1, sym_type, - STATE(1599), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [118561] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1098), 1, - anon_sym_forall, - ACTIONS(1100), 1, + ACTIONS(3465), 2, anon_sym_DASH_GT, - ACTIONS(1104), 1, - sym_type_implicit_var, - ACTIONS(1106), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, - anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, - sym_id, - STATE(395), 1, - sym_type, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(379), 4, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118604] = 13, + [123289] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3943), 1, sym_operator, - STATE(2826), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(3627), 1, + STATE(2750), 1, sym_type, - STATE(1691), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118647] = 13, + [123338] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3943), 1, sym_operator, - STATE(1922), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(2745), 1, + STATE(2749), 1, sym_type, - STATE(203), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118690] = 13, + [123387] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3943), 1, sym_operator, - STATE(2826), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(3628), 1, + STATE(2748), 1, sym_type, - STATE(1691), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118733] = 13, + [123436] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(606), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3519), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3523), 1, - anon_sym_DASH_GT, - ACTIONS(3525), 1, + ACTIONS(3943), 1, sym_operator, - STATE(1922), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(2744), 1, + STATE(2747), 1, sym_type, - STATE(203), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118776] = 13, + [123485] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2826), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(3629), 1, + STATE(3067), 1, sym_type, - STATE(1691), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118819] = 13, - ACTIONS(9), 1, + [123534] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(981), 1, - sym_type_implicit_var, - ACTIONS(983), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, - anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1126), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(1128), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(403), 1, - sym_type, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(383), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [118862] = 13, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1529), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [123587] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2952), 1, + STATE(4955), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118905] = 13, - ACTIONS(9), 1, + [123636] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(3257), 5, anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, - sym_type_implicit_var, - ACTIONS(2826), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, - anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - STATE(1729), 1, - sym_type, - STATE(2829), 1, - sym_primitive_reverse_atom, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [118948] = 13, + ACTIONS(3259), 14, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_RBRACK, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [123663] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3630), 1, + STATE(4788), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [118991] = 13, + [123712] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(1911), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(1913), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(1915), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(1919), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3667), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3671), 1, sym_operator, - STATE(2826), 1, + STATE(2754), 1, sym_primitive_reverse_atom, - STATE(2961), 1, + STATE(4578), 1, sym_type, - STATE(2277), 4, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119034] = 13, + [123761] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LPAREN, - ACTIONS(2866), 1, - anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2874), 1, - aux_sym_type_unit_token1, - ACTIONS(2876), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2878), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - STATE(1737), 1, - sym_type, - STATE(2795), 1, + ACTIONS(3937), 1, + anon_sym_LPAREN, + ACTIONS(3939), 1, + anon_sym_forall, + ACTIONS(3943), 1, + sym_operator, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(1742), 4, + STATE(2746), 1, + sym_type, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119077] = 13, + [123810] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3943), 1, sym_operator, - STATE(2826), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(2951), 1, + STATE(2745), 1, sym_type, - STATE(2277), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119120] = 13, + [123859] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3631), 1, + STATE(5106), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119163] = 13, + [123908] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3632), 1, + STATE(5104), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119206] = 13, + [123957] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4672), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [124010] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1498), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [124063] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3633), 1, + STATE(3456), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119249] = 13, + [124112] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3609), 1, + STATE(4038), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119292] = 13, + [124161] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2959), 1, + STATE(5091), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119335] = 13, + [124210] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3943), 1, sym_operator, - STATE(2826), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(2958), 1, + STATE(2744), 1, sym_type, - STATE(2277), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119378] = 13, + [124259] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3634), 1, + STATE(3473), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119421] = 13, + [124308] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(185), 1, - aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, + sym_id, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(195), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(197), 1, + ACTIONS(3943), 1, sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(76), 1, - sym_type, - STATE(597), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(53), 4, + STATE(2759), 1, + sym_type, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119464] = 13, + [124357] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3635), 1, + STATE(4036), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119507] = 13, + [124406] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2942), 1, + STATE(5089), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119550] = 13, + [124455] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3648), 1, + STATE(4034), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119593] = 13, + [124504] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2960), 1, + STATE(4032), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119636] = 13, + [124553] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2947), 1, + STATE(4030), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119679] = 13, + [124602] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2952), 1, + STATE(5108), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119722] = 13, + [124651] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3414), 1, + STATE(3497), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119765] = 13, + [124700] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2957), 1, + STATE(4028), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119808] = 13, + [124749] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2947), 1, + STATE(4026), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119851] = 13, + [124798] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2963), 1, + STATE(4023), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3485), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [119917] = 13, + [124847] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2842), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(2989), 1, + STATE(4916), 1, sym_type, - STATE(1883), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [119960] = 13, + [124896] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2945), 1, + STATE(4020), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120003] = 13, + [124945] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, - anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, sym_operator, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2991), 1, + STATE(4017), 1, sym_type, - STATE(1883), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120046] = 13, + [124994] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2946), 1, + STATE(3428), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3475), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_BANG, - aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [120112] = 13, + [125043] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2999), 1, + STATE(5079), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120155] = 13, + [125092] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2955), 1, + STATE(4014), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120198] = 13, + [125141] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3537), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3539), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3541), 1, - anon_sym_DASH_GT, - ACTIONS(3543), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2956), 1, + STATE(5114), 1, sym_type, - STATE(2277), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120241] = 13, + [125190] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3495), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(3561), 1, - sym_id, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4766), 1, + STATE(4011), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120284] = 13, + [125239] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2980), 1, + STATE(5119), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120327] = 13, + [125288] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_LPAREN, - ACTIONS(2930), 1, - anon_sym_forall, - ACTIONS(2932), 1, - anon_sym_DASH_GT, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, - sym_operator, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - STATE(1718), 1, - sym_type, - STATE(2826), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1724), 4, + STATE(4008), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120370] = 13, + [125337] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2306), 1, + STATE(3514), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120413] = 13, + [125386] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2307), 1, + STATE(4005), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120456] = 13, + [125435] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3951), 1, sym_operator, - STATE(2826), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(3486), 1, + STATE(3158), 1, sym_type, - STATE(1691), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120499] = 13, + [125484] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2308), 1, + STATE(3486), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120542] = 13, + [125533] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2310), 1, + STATE(5087), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120585] = 13, + [125582] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2311), 1, + STATE(4002), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120628] = 13, + [125631] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3951), 1, sym_operator, - STATE(2826), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(2961), 1, + STATE(3150), 1, sym_type, - STATE(1691), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120671] = 13, + [125680] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2313), 1, + STATE(5033), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120714] = 13, + [125729] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3622), 1, + STATE(3999), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120757] = 13, + [125778] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(1911), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(1913), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(1915), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(1919), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3667), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3671), 1, sym_operator, - STATE(2815), 1, + STATE(2754), 1, sym_primitive_reverse_atom, - STATE(2960), 1, + STATE(4525), 1, sym_type, - STATE(1725), 4, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120800] = 13, + [125827] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3943), 1, sym_operator, - STATE(2826), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(3621), 1, + STATE(2752), 1, sym_type, - STATE(1691), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120843] = 13, + [125876] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_forall, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, - sym_id, - ACTIONS(3563), 1, - anon_sym_LPAREN, - ACTIONS(3565), 1, - anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(2193), 1, sym_operator, - STATE(982), 1, - sym_primitive_reverse_atom, - STATE(2314), 1, + ACTIONS(2195), 1, + sym_id, + STATE(1014), 1, sym_type, - STATE(124), 4, + STATE(2889), 1, + sym_primitive_reverse_atom, + ACTIONS(2179), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(973), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120886] = 13, + [125925] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2312), 1, + STATE(3528), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120929] = 13, + [125974] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(717), 1, + anon_sym_LBRACE, + ACTIONS(725), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(727), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(729), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(3675), 1, + aux_sym_type_unit_token1, + ACTIONS(3677), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3937), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3939), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3943), 1, sym_operator, - STATE(982), 1, + STATE(1603), 1, sym_primitive_reverse_atom, - STATE(2315), 1, + STATE(2753), 1, sym_type, - STATE(124), 4, + ACTIONS(3941), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(259), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [120972] = 13, + [126023] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LPAREN, - ACTIONS(2866), 1, - anon_sym_forall, - ACTIONS(2868), 1, - anon_sym_DASH_GT, - ACTIONS(2874), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2876), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2878), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2880), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2882), 1, - sym_operator, - ACTIONS(2884), 1, + ACTIONS(2227), 1, sym_id, - STATE(1708), 1, - sym_type, - STATE(2795), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1742), 4, + STATE(5067), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121015] = 13, + [126072] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2842), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(3019), 1, + STATE(3030), 1, sym_type, - STATE(1883), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121058] = 13, + [126121] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2305), 1, + STATE(5066), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121101] = 13, + [126170] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3018), 1, + STATE(3996), 1, sym_type, - STATE(1883), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121144] = 13, + [126219] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2317), 1, + STATE(5076), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121187] = 13, + [126268] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2318), 1, + STATE(3993), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121230] = 13, + [126317] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2319), 1, + STATE(5075), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121273] = 13, + [126366] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1506), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [126419] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(453), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(463), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3563), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3565), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, + ACTIONS(3469), 1, sym_operator, - STATE(982), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2320), 1, + STATE(3545), 1, sym_type, - STATE(124), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121316] = 13, + [126468] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2951), 1, + STATE(3990), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121359] = 13, + [126517] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2869), 1, + anon_sym_LBRACE, + ACTIONS(2879), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2881), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2883), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2885), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2889), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3659), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3663), 1, sym_operator, - STATE(597), 1, + STATE(2986), 1, sym_primitive_reverse_atom, - STATE(2060), 1, + STATE(3030), 1, sym_type, - STATE(82), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [121402] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1037), 1, - anon_sym_forall, - ACTIONS(1039), 1, + ACTIONS(3661), 2, anon_sym_DASH_GT, - ACTIONS(1043), 1, - sym_type_implicit_var, - ACTIONS(1045), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, - anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - STATE(342), 1, - sym_type, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(371), 4, + anon_sym_EQ_GT, + STATE(1237), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121445] = 13, - ACTIONS(9), 1, + [126566] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(746), 1, - anon_sym_LPAREN, - ACTIONS(748), 1, - anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(756), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(758), 1, - sym_type_implicit_var, - ACTIONS(760), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, - anon_sym_POUND_BANG, - ACTIONS(764), 1, - sym_operator, - ACTIONS(766), 1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, sym_id, - STATE(219), 1, - sym_type, - STATE(1779), 1, - sym_primitive_reverse_atom, - STATE(240), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [121488] = 13, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1508), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [126619] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3014), 1, + STATE(4341), 1, sym_type, - STATE(1883), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121531] = 13, + [126668] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2842), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(3012), 1, + STATE(3143), 1, sym_type, - STATE(1883), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121574] = 13, + [126717] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3639), 1, + STATE(3987), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121617] = 13, + [126766] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2014), 1, + STATE(5060), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121660] = 13, + [126815] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2885), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(3003), 1, + STATE(3141), 1, sym_type, - STATE(1793), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121703] = 13, + [126864] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1979), 1, + STATE(3981), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121746] = 13, + [126913] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3008), 1, + STATE(3978), 1, sym_type, - STATE(1793), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [121789] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, + ACTIONS(3465), 2, anon_sym_DASH_GT, - ACTIONS(145), 1, - aux_sym_type_unit_token1, - ACTIONS(147), 1, - sym_type_implicit_var, - ACTIONS(149), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, - anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, - sym_id, - STATE(61), 1, - sym_type, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(83), 4, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121832] = 13, + [126962] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(29), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, + ACTIONS(2227), 1, sym_id, - STATE(22), 1, - sym_type, - STATE(288), 1, - sym_primitive_reverse_atom, - STATE(34), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [121875] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3196), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3198), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3200), 1, - anon_sym_DASH_GT, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3214), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(3216), 1, - sym_id, - STATE(1869), 1, - sym_type, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1850), 4, + STATE(3585), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121918] = 13, + [127011] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3008), 1, + STATE(5045), 1, sym_type, - STATE(1883), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [121961] = 13, + [127060] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2842), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3003), 1, + STATE(5058), 1, sym_type, - STATE(1883), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122004] = 13, + [127109] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1987), 1, + STATE(5039), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122047] = 13, + [127158] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1990), 1, + STATE(3562), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122090] = 13, + [127207] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1995), 1, + STATE(3975), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122133] = 13, + [127256] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3025), 1, sym_operator, - STATE(727), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(2243), 1, + STATE(3064), 1, sym_type, - STATE(92), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122176] = 13, + [127305] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(113), 1, + anon_sym_LBRACE, + ACTIONS(121), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(123), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(125), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(127), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, - sym_id, - ACTIONS(3545), 1, + ACTIONS(3679), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3681), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3683), 1, sym_operator, - STATE(2842), 1, - sym_primitive_reverse_atom, - STATE(2980), 1, + ACTIONS(3685), 1, + sym_id, + STATE(21), 1, sym_type, - STATE(1883), 4, + STATE(377), 1, + sym_primitive_reverse_atom, + ACTIONS(115), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(50), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122219] = 13, + [127354] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(3264), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3545), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3549), 1, - anon_sym_DASH_GT, - ACTIONS(3551), 1, + ACTIONS(3959), 1, sym_operator, - STATE(2842), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(2999), 1, + STATE(1965), 1, sym_type, - STATE(1883), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122262] = 13, + [127403] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1997), 1, + STATE(3626), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122305] = 13, + [127452] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3951), 1, sym_operator, - STATE(597), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(1937), 1, + STATE(3116), 1, sym_type, - STATE(82), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122348] = 13, + [127501] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2238), 1, + STATE(5038), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122391] = 13, + [127550] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3951), 1, sym_operator, - STATE(727), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(2237), 1, + STATE(3118), 1, sym_type, - STATE(92), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122434] = 13, + [127599] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3959), 1, sym_operator, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(2236), 1, + STATE(1975), 1, sym_type, - STATE(92), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122477] = 13, + [127648] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2022), 1, + STATE(3972), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122520] = 13, + [127697] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3959), 1, sym_operator, - STATE(727), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(2234), 1, + STATE(1997), 1, sym_type, - STATE(92), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122563] = 13, + [127746] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2233), 1, + STATE(3668), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122606] = 13, + [127795] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2232), 1, + STATE(5022), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122649] = 13, + [127844] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2230), 1, + STATE(4651), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122692] = 13, + [127893] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2229), 1, + STATE(5016), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122735] = 13, + [127942] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2170), 1, + STATE(3969), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122778] = 13, + [127991] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2225), 1, + STATE(5057), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122821] = 13, + [128040] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3469), 1, sym_operator, - STATE(727), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2224), 1, + STATE(5053), 1, sym_type, - STATE(92), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122864] = 13, + [128089] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3951), 1, sym_operator, - STATE(727), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(2220), 1, + STATE(3128), 1, sym_type, - STATE(92), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122907] = 13, + [128138] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(332), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(342), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3579), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3581), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3583), 1, - anon_sym_DASH_GT, - ACTIONS(3585), 1, + ACTIONS(3951), 1, sym_operator, - STATE(727), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(2217), 1, + STATE(3129), 1, sym_type, - STATE(92), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122950] = 13, + [128187] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3959), 1, sym_operator, - STATE(2826), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(3688), 1, + STATE(2011), 1, sym_type, - STATE(1691), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [122993] = 13, + [128236] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2942), 1, + STATE(3705), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123036] = 13, + [128285] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3901), 1, + STATE(5003), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123079] = 13, + [128334] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - STATE(1839), 1, - sym_type, - STATE(2842), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1876), 4, + STATE(3966), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123122] = 13, + [128383] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2038), 1, + STATE(3586), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123165] = 13, + [128432] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(552), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, + ACTIONS(2227), 1, sym_id, - STATE(186), 1, - sym_type, - STATE(1856), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(256), 4, + STATE(3963), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123208] = 13, + [128481] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - STATE(1669), 1, - sym_type, - STATE(2787), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1671), 4, + STATE(3960), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123251] = 13, + [128530] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3959), 1, sym_operator, - STATE(2826), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(4568), 1, + STATE(2015), 1, sym_type, - STATE(1691), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123294] = 13, + [128579] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3246), 1, - anon_sym_forall, - ACTIONS(3248), 1, - anon_sym_DASH_GT, - ACTIONS(3254), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3256), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3258), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3260), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3262), 1, - sym_operator, - ACTIONS(3264), 1, + ACTIONS(2227), 1, sym_id, - STATE(1867), 1, - sym_type, - STATE(2842), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1876), 4, + STATE(3740), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123337] = 13, + [128628] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(135), 1, - anon_sym_LPAREN, - ACTIONS(137), 1, - anon_sym_forall, - ACTIONS(139), 1, - anon_sym_DASH_GT, - ACTIONS(145), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(147), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(149), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(153), 1, - sym_operator, - ACTIONS(155), 1, + ACTIONS(2061), 1, sym_id, - STATE(78), 1, - sym_type, - STATE(542), 1, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3947), 1, + anon_sym_forall, + ACTIONS(3951), 1, + sym_operator, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(83), 4, + STATE(3133), 1, + sym_type, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123380] = 13, + [128677] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3951), 1, sym_operator, - STATE(597), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(1974), 1, + STATE(3138), 1, sym_type, - STATE(82), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123423] = 13, + [128726] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1037), 1, - anon_sym_forall, - ACTIONS(1039), 1, - anon_sym_DASH_GT, - ACTIONS(1043), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(1045), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(1049), 1, - sym_operator, - ACTIONS(1051), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + ACTIONS(2227), 1, sym_id, - STATE(373), 1, - sym_type, - STATE(2054), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(371), 4, + STATE(4989), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123466] = 13, + [128775] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2324), 1, + STATE(3957), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123509] = 13, + [128824] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1971), 1, + STATE(3953), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123552] = 13, + [128873] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3951), 1, sym_operator, - STATE(597), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(2323), 1, + STATE(3141), 1, sym_type, - STATE(152), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123595] = 13, + [128922] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2041), 1, + anon_sym_LBRACE, + ACTIONS(2051), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2053), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2055), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2057), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2061), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3945), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3947), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3951), 1, sym_operator, - STATE(597), 1, + STATE(2886), 1, sym_primitive_reverse_atom, - STATE(1967), 1, + STATE(3143), 1, sym_type, - STATE(82), 4, + ACTIONS(3949), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(934), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123638] = 13, + [128971] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2322), 1, + STATE(4981), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123681] = 13, + [129020] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3959), 1, sym_operator, - STATE(597), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(2321), 1, + STATE(2017), 1, sym_type, - STATE(152), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123724] = 13, + [129069] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2316), 1, + STATE(4741), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123767] = 13, + [129118] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(189), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(191), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(193), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(195), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(3729), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3955), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3959), 1, sym_operator, - STATE(597), 1, + STATE(500), 1, sym_primitive_reverse_atom, - STATE(2309), 1, + STATE(2005), 1, sym_type, - STATE(152), 4, + ACTIONS(3957), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(76), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123810] = 13, + [129167] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2329), 1, + STATE(3984), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123853] = 13, + [129216] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4335), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [129269] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2326), 1, + STATE(3803), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123896] = 13, + [129318] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2327), 1, + STATE(4972), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123939] = 13, + [129367] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4046), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [129420] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2304), 1, + STATE(3944), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [123982] = 13, + [129469] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3873), 1, sym_operator, - STATE(597), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(2328), 1, + STATE(3138), 1, sym_type, - STATE(152), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124025] = 13, + [129518] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3873), 1, sym_operator, - STATE(597), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(2325), 1, + STATE(3133), 1, sym_type, - STATE(152), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124068] = 13, + [129567] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2331), 1, + STATE(4924), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124111] = 13, + [129616] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3587), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3589), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3591), 1, - anon_sym_DASH_GT, - ACTIONS(3593), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2332), 1, + STATE(4894), 1, sym_type, - STATE(152), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124154] = 13, + [129665] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DASH_GT, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(195), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(197), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(199), 1, - sym_id, - STATE(151), 1, - sym_type, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(53), 4, + STATE(3862), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124197] = 13, + [129714] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(187), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(189), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(199), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3571), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3573), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3575), 1, - anon_sym_DASH_GT, - ACTIONS(3577), 1, + ACTIONS(3469), 1, sym_operator, - STATE(597), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1953), 1, + STATE(4945), 1, sym_type, - STATE(82), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124240] = 13, + [129763] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(1098), 1, - anon_sym_forall, - ACTIONS(1100), 1, - anon_sym_DASH_GT, - ACTIONS(1104), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(1106), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(1110), 1, - sym_operator, - ACTIONS(1114), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + ACTIONS(2227), 1, sym_id, - STATE(381), 1, - sym_type, - STATE(1986), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(379), 4, + STATE(4925), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124283] = 13, + [129812] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(975), 1, - anon_sym_forall, - ACTIONS(977), 1, - anon_sym_DASH_GT, - ACTIONS(981), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(983), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(987), 1, - sym_operator, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + ACTIONS(2227), 1, sym_id, - STATE(386), 1, - sym_type, - STATE(1981), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(383), 4, + STATE(4807), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124326] = 13, + [129861] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_forall, - ACTIONS(955), 1, - anon_sym_DASH_GT, - ACTIONS(959), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(961), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(965), 1, - sym_operator, - ACTIONS(1156), 1, - anon_sym_LPAREN, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, + ACTIONS(2227), 1, sym_id, - STATE(390), 1, - sym_type, - STATE(2017), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(388), 4, + STATE(5044), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124369] = 13, + [129910] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2958), 1, + STATE(4936), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124412] = 13, + [129959] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(2063), 1, anon_sym_LPAREN, - ACTIONS(3220), 1, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(2067), 1, anon_sym_forall, - ACTIONS(3222), 1, - anon_sym_DASH_GT, - ACTIONS(3228), 1, + ACTIONS(2075), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2077), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2079), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2081), 1, anon_sym_POUND_BANG, - ACTIONS(3236), 1, + ACTIONS(2083), 1, sym_operator, - ACTIONS(3238), 1, + ACTIONS(2085), 1, sym_id, - STATE(1801), 1, + STATE(1044), 1, sym_type, - STATE(2853), 1, + STATE(2883), 1, sym_primitive_reverse_atom, - STATE(1820), 4, + ACTIONS(2069), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1058), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124455] = 13, + [130008] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_DASH_GT, - ACTIONS(49), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(51), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(53), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(55), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(57), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(61), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(63), 1, - sym_id, - STATE(30), 1, - sym_type, - STATE(420), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(28), 4, + STATE(3603), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124498] = 13, + [130057] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3141), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_forall, - ACTIONS(3145), 1, - anon_sym_DASH_GT, - ACTIONS(3151), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3153), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3155), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3159), 1, - sym_operator, - ACTIONS(3161), 1, + ACTIONS(2227), 1, sym_id, - STATE(1934), 1, - sym_type, - STATE(2890), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1782), 4, + STATE(4817), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124541] = 13, + [130106] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3817), 1, + anon_sym_LPAREN, + ACTIONS(3819), 1, + anon_sym_BANG, + ACTIONS(3821), 1, + anon_sym__, + STATE(1505), 1, + sym_pattern_var, + STATE(1528), 1, + sym_string, + STATE(1639), 1, + sym_pattern, + STATE(2960), 1, + sym_integer, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1711), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [130159] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2814), 1, - anon_sym_forall, - ACTIONS(2816), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2830), 1, - sym_operator, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - STATE(1596), 1, - sym_type, - STATE(2829), 1, - sym_primitive_reverse_atom, - STATE(1697), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [124584] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(746), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(748), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(756), 1, - aux_sym_type_unit_token1, - ACTIONS(758), 1, - sym_type_implicit_var, - ACTIONS(760), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(762), 1, - anon_sym_POUND_BANG, - ACTIONS(764), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(766), 1, - sym_id, - STATE(242), 1, - sym_type, - STATE(1779), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(240), 4, + STATE(5042), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124627] = 13, + [130208] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_forall, - ACTIONS(23), 1, - anon_sym_DASH_GT, - ACTIONS(29), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(31), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(33), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, - sym_operator, - ACTIONS(39), 1, + ACTIONS(2227), 1, sym_id, - STATE(129), 1, - sym_type, - STATE(288), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(34), 4, + STATE(5040), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124670] = 13, + [130257] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_LPAREN, - ACTIONS(522), 1, - anon_sym_forall, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(530), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, + ACTIONS(2227), 1, sym_id, - STATE(250), 1, - sym_type, - STATE(1834), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(248), 4, + STATE(3634), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124713] = 13, + [130306] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(542), 1, - anon_sym_LPAREN, - ACTIONS(544), 1, - anon_sym_forall, - ACTIONS(546), 1, - anon_sym_DASH_GT, - ACTIONS(552), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(554), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(556), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(558), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(560), 1, - sym_operator, - ACTIONS(562), 1, + ACTIONS(2195), 1, sym_id, - STATE(258), 1, - sym_type, - STATE(1856), 1, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(256), 4, + STATE(3041), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124756] = 13, + [130355] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3012), 1, + STATE(4307), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124799] = 13, + [130404] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(332), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, + ACTIONS(2195), 1, sym_id, - STATE(99), 1, - sym_type, - STATE(727), 1, + ACTIONS(3015), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_forall, + ACTIONS(3025), 1, + sym_operator, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(101), 4, + STATE(4690), 1, + sym_type, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124842] = 13, + [130453] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(453), 1, - aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, - sym_operator, - ACTIONS(463), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - STATE(139), 1, - sym_type, - STATE(982), 1, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_forall, + ACTIONS(3967), 1, + sym_operator, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(141), 4, + STATE(2750), 1, + sym_type, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124885] = 13, + [130502] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(596), 1, - aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, - sym_operator, - ACTIONS(606), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - STATE(218), 1, - sym_type, - STATE(1922), 1, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_forall, + ACTIONS(3967), 1, + sym_operator, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(198), 4, + STATE(2749), 1, + sym_type, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124928] = 13, + [130551] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3014), 1, + STATE(3935), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [124971] = 13, + [130600] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(574), 1, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, + ACTIONS(2225), 1, sym_operator, - ACTIONS(584), 1, + ACTIONS(2227), 1, sym_id, - STATE(179), 1, + STATE(1004), 1, sym_type, - STATE(1913), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(216), 4, + ACTIONS(2211), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(965), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125014] = 13, + [130649] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_forall, - ACTIONS(161), 1, - anon_sym_DASH_GT, - ACTIONS(167), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(169), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(171), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, - sym_operator, - ACTIONS(177), 1, + ACTIONS(2227), 1, sym_id, - STATE(66), 1, - sym_type, - STATE(505), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(39), 4, + STATE(4992), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125057] = 13, + [130698] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(300), 1, - anon_sym_DASH_GT, - ACTIONS(306), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(308), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(310), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(316), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(318), 1, + ACTIONS(3469), 1, sym_operator, - ACTIONS(320), 1, - sym_id, - STATE(119), 1, - sym_type, - STATE(793), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(115), 4, + STATE(3651), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125100] = 13, + [130747] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - anon_sym_forall, - ACTIONS(469), 1, - anon_sym_DASH_GT, - ACTIONS(475), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(477), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(479), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, - sym_operator, - ACTIONS(485), 1, + ACTIONS(2227), 1, sym_id, - STATE(168), 1, - sym_type, - STATE(1621), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(170), 4, + STATE(4926), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125143] = 13, + [130796] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2826), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(2989), 1, + STATE(2748), 1, sym_type, - STATE(1691), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125186] = 13, + [130845] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2826), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(2991), 1, + STATE(2747), 1, sym_type, - STATE(1691), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125229] = 13, + [130894] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2942), 1, + STATE(4825), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125272] = 13, + [130943] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4726), 1, + STATE(4732), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125315] = 13, + [130992] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_LPAREN, - ACTIONS(324), 1, - anon_sym_forall, - ACTIONS(326), 1, - anon_sym_DASH_GT, - ACTIONS(332), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(334), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(336), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(338), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(340), 1, - sym_operator, - ACTIONS(342), 1, + ACTIONS(2227), 1, sym_id, - STATE(89), 1, - sym_type, - STATE(727), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(101), 4, + STATE(5027), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125358] = 13, + [131041] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3449), 1, + STATE(5026), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125401] = 12, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3595), 1, - anon_sym_LPAREN, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3601), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3603), 1, - anon_sym_POUND_BANG, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(3607), 1, - sym_operator, - ACTIONS(3609), 1, - sym_id, - STATE(2731), 1, - sym_type_var, - STATE(2730), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2934), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3597), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [125442] = 13, + [131090] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3723), 1, + STATE(3676), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125485] = 13, + [131139] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(2091), 1, anon_sym_LPAREN, - ACTIONS(445), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2095), 1, anon_sym_forall, - ACTIONS(447), 1, - anon_sym_DASH_GT, - ACTIONS(453), 1, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(455), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(457), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(459), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(461), 1, + ACTIONS(2111), 1, sym_operator, - ACTIONS(463), 1, + ACTIONS(2113), 1, sym_id, - STATE(145), 1, + STATE(978), 1, sym_type, - STATE(982), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(141), 4, + ACTIONS(2097), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1054), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125528] = 13, + [131188] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(520), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, + sym_type_implicit_var, + ACTIONS(2221), 1, + anon_sym_POUND_BANG_LPAREN, + ACTIONS(2223), 1, + anon_sym_POUND_BANG, + ACTIONS(2227), 1, + sym_id, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(522), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(524), 1, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, + sym_primitive_reverse_atom, + STATE(4893), 1, + sym_type, + ACTIONS(3465), 2, anon_sym_DASH_GT, - ACTIONS(530), 1, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, + sym_type_unit, + sym_type_tuple, + sym_type_var, + sym_primitive_type, + [131237] = 14, + ACTIONS(9), 1, + sym_comment, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(532), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(534), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(536), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(538), 1, - sym_operator, - ACTIONS(540), 1, + ACTIONS(2227), 1, sym_id, - STATE(175), 1, - sym_type, - STATE(1834), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(248), 4, + STATE(5015), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125571] = 13, + [131286] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2999), 1, + STATE(3688), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125614] = 13, + [131335] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2787), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2999), 1, + STATE(3925), 1, sym_type, - STATE(1664), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125657] = 13, + [131384] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2787), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2980), 1, + STATE(4932), 1, sym_type, - STATE(1664), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125700] = 13, + [131433] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2980), 1, + STATE(5014), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125743] = 13, + [131482] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2826), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(2960), 1, + STATE(2746), 1, sym_type, - STATE(1691), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125786] = 13, + [131531] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2787), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3003), 1, + STATE(5013), 1, sym_type, - STATE(1664), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125829] = 13, + [131580] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2787), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(3008), 1, + STATE(2745), 1, sym_type, - STATE(1664), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125872] = 13, + [131629] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2958), 1, + STATE(4832), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125915] = 13, + [131678] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3003), 1, + STATE(3704), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [125958] = 13, + [131727] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3008), 1, + STATE(4747), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126001] = 13, + [131776] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4643), 1, + STATE(3915), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126044] = 13, + [131825] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3581), 1, + STATE(5001), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126087] = 13, + [131874] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3012), 1, + STATE(3716), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126130] = 13, + [131923] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3019), 1, + STATE(4934), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126173] = 13, + [131972] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, - aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2829), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(3014), 1, + STATE(2744), 1, sym_type, - STATE(1709), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126216] = 13, + [132021] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2826), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(3018), 1, + STATE(2759), 1, sym_type, - STATE(1691), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126259] = 13, + [132070] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2947), 1, + STATE(3905), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126302] = 13, + [132119] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2826), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(3493), 1, + STATE(4876), 1, sym_type, - STATE(1691), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126345] = 13, + [132168] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2854), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2856), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3495), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3499), 1, - anon_sym_DASH_GT, - ACTIONS(3501), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2815), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4721), 1, + STATE(3926), 1, sym_type, - STATE(1725), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126388] = 13, + [132217] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3758), 1, + STATE(4927), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126431] = 13, + [132266] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4216), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [132319] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2787), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(3012), 1, + STATE(3129), 1, sym_type, - STATE(1664), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126474] = 13, + [132368] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2787), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(3014), 1, + STATE(3128), 1, sym_type, - STATE(1664), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126517] = 13, + [132417] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3018), 1, + STATE(4939), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126560] = 13, + [132466] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3019), 1, + STATE(3158), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126603] = 13, + [132515] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3014), 1, + STATE(3967), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126646] = 13, + [132564] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3012), 1, + STATE(4940), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126689] = 13, + [132613] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4192), 1, + STATE(3150), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126732] = 13, + [132662] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3955), 1, + STATE(5000), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126775] = 13, + [132711] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3504), 1, + STATE(4999), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126818] = 13, + [132760] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2952), 1, + STATE(3739), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126861] = 13, + [132809] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2991), 1, + STATE(3895), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126904] = 13, + [132858] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2826), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(3515), 1, + STATE(3031), 1, sym_type, - STATE(1691), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126947] = 13, + [132907] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2824), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2826), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2832), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3611), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3613), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - ACTIONS(3617), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2829), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2989), 1, + STATE(4910), 1, sym_type, - STATE(1709), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [126990] = 13, + [132956] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(4629), 1, + STATE(4941), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127033] = 13, + [133005] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2826), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(3008), 1, + STATE(3056), 1, sym_type, - STATE(1691), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127076] = 13, + [133054] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3003), 1, + STATE(3885), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127119] = 13, + [133103] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3526), 1, + STATE(4946), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127162] = 13, + [133152] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2787), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3018), 1, + STATE(4908), 1, sym_type, - STATE(1664), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127205] = 13, + [133201] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2187), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2191), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2195), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3015), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3019), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3025), 1, sym_operator, - STATE(2885), 1, + STATE(2889), 1, sym_primitive_reverse_atom, - STATE(2956), 1, + STATE(4789), 1, sym_type, - STATE(1793), 4, + ACTIONS(3021), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(976), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127248] = 13, + [133250] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2955), 1, + STATE(3751), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127291] = 13, + [133299] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2980), 1, + STATE(4947), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127334] = 13, + [133348] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1909), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(1911), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(1913), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(1915), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(1919), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3665), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3667), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3671), 1, sym_operator, - STATE(2826), 1, + STATE(2754), 1, sym_primitive_reverse_atom, - STATE(2999), 1, + STATE(4519), 1, sym_type, - STATE(1691), 4, + ACTIONS(3669), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(895), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127377] = 13, + [133397] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1035), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [133450] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2946), 1, + STATE(3875), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127420] = 13, + [133499] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3619), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2787), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3019), 1, + STATE(4991), 1, sym_type, - STATE(1664), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127463] = 13, + [133548] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2945), 1, + STATE(4024), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127506] = 13, + [133597] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2963), 1, + STATE(4904), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127549] = 13, + [133646] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4123), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [133699] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2957), 1, + STATE(4948), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127592] = 13, + [133748] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3537), 1, + STATE(4990), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127635] = 13, + [133797] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2885), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(2952), 1, + STATE(3116), 1, sym_type, - STATE(1793), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127678] = 13, + [133846] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2947), 1, + STATE(4053), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127721] = 13, + [133895] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2960), 1, + STATE(3865), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127764] = 13, + [133944] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2942), 1, + STATE(3765), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127807] = 13, + [133993] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2093), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2105), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2107), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2109), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2113), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3867), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3869), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3873), 1, sym_operator, - STATE(2885), 1, + STATE(2792), 1, sym_primitive_reverse_atom, - STATE(2958), 1, + STATE(3118), 1, sym_type, - STATE(1793), 4, + ACTIONS(3871), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1061), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127850] = 13, + [134042] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2959), 1, + STATE(4953), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127893] = 13, + [134091] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2826), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(3812), 1, + STATE(2752), 1, sym_type, - STATE(1691), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127936] = 13, + [134140] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2951), 1, + STATE(3116), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [127979] = 13, + [134189] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(857), 1, + anon_sym_LBRACE, + ACTIONS(865), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(867), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(869), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(3775), 1, + aux_sym_type_unit_token1, + ACTIONS(3777), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3963), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3967), 1, sym_operator, - STATE(2885), 1, + STATE(1786), 1, sym_primitive_reverse_atom, - STATE(2961), 1, + STATE(2753), 1, sym_type, - STATE(1793), 4, + ACTIONS(3965), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(305), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128022] = 13, + [134238] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_forall, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - ACTIONS(2969), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2971), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2973), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2977), 1, - sym_operator, - ACTIONS(2979), 1, + ACTIONS(2227), 1, sym_id, - STATE(1686), 1, - sym_type, - STATE(2787), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(1671), 4, + STATE(3118), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128065] = 13, + [134287] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3548), 1, + STATE(4892), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128108] = 13, + [134336] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2957), 1, + STATE(4985), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128151] = 13, + [134385] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_forall, - ACTIONS(590), 1, - anon_sym_DASH_GT, - ACTIONS(596), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(598), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(600), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(602), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(604), 1, - sym_operator, - ACTIONS(606), 1, + ACTIONS(2227), 1, sym_id, - STATE(206), 1, - sym_type, - STATE(1922), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(198), 4, + STATE(4834), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128194] = 13, + [134434] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - anon_sym_forall, - ACTIONS(568), 1, - anon_sym_DASH_GT, - ACTIONS(574), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(576), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(578), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(580), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(582), 1, - sym_operator, - ACTIONS(584), 1, + ACTIONS(2227), 1, sym_id, - STATE(215), 1, - sym_type, - STATE(1913), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_forall, + ACTIONS(3469), 1, + sym_operator, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(216), 4, + STATE(3775), 1, + sym_type, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128237] = 13, + [134483] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(2940), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(2942), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3511), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3513), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2826), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(3559), 1, + STATE(4886), 1, sym_type, - STATE(1691), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128280] = 13, + [134532] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3208), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3210), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3553), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2885), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2989), 1, + STATE(4954), 1, sym_type, - STATE(1793), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128323] = 13, + [134581] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym_type_unit_token1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(961), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3627), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3629), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2017), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2348), 1, + STATE(4984), 1, sym_type, - STATE(413), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128366] = 13, + [134630] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(2647), 1, + anon_sym_QMARK, + ACTIONS(2651), 1, + aux_sym_integer_token1, + ACTIONS(2653), 1, + sym_floating, + ACTIONS(2655), 1, + anon_sym_DQUOTE, + ACTIONS(2657), 1, + sym_id, + ACTIONS(3923), 1, + anon_sym_LPAREN, + ACTIONS(3925), 1, + anon_sym_BANG, + ACTIONS(3927), 1, + anon_sym__, + STATE(822), 1, + sym_string, + STATE(824), 1, + sym_pattern_var, + STATE(1485), 1, + sym_pattern, + STATE(2739), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1063), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [134683] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2961), 1, + STATE(3855), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128409] = 13, + [134732] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2951), 1, + STATE(4110), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128452] = 13, + [134781] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2959), 1, + STATE(3128), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128495] = 13, + [134830] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2958), 1, + STATE(3129), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128538] = 13, + [134879] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2942), 1, + STATE(4884), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128581] = 13, + [134928] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3089), 1, + aux_sym_integer_token1, + ACTIONS(3091), 1, + sym_floating, + ACTIONS(3093), 1, + anon_sym_DQUOTE, + ACTIONS(3095), 1, + sym_id, + ACTIONS(3601), 1, + anon_sym_LPAREN, + ACTIONS(3605), 1, + anon_sym_BANG, + ACTIONS(3607), 1, + anon_sym__, + STATE(1457), 1, + sym_pattern_var, + STATE(1459), 1, + sym_string, + STATE(2960), 1, + sym_integer, + STATE(4218), 1, + sym_pattern, + ACTIONS(3087), 2, + sym_hex_integer, + sym_octet_integer, + STATE(1776), 4, + sym_pattern_cons, + sym_pattern_unit, + sym_number, + sym_string_cons, + [134981] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2960), 1, + STATE(4982), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128624] = 13, + [135030] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2947), 1, + STATE(4230), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128667] = 13, + [135079] = 14, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2217), 1, aux_sym_type_unit_token1, - ACTIONS(3230), 1, + ACTIONS(2219), 1, sym_type_implicit_var, - ACTIONS(3232), 1, + ACTIONS(2221), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, + ACTIONS(2223), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2227), 1, sym_id, - ACTIONS(3635), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3463), 1, anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + ACTIONS(3469), 1, sym_operator, - STATE(2853), 1, + STATE(2822), 1, sym_primitive_reverse_atom, - STATE(2952), 1, + STATE(3785), 1, sym_type, - STATE(1787), 4, + ACTIONS(3465), 2, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + STATE(1030), 6, + sym_handler_type, + sym_record_type, sym_type_unit, sym_type_tuple, sym_type_var, sym_primitive_type, - [128710] = 13, + [135128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3117), 13, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [135154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 1, + aux_sym_number_token1, + ACTIONS(3261), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3969), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3975), 13, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_AT, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3285), 13, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [135234] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(977), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3230), 1, sym_type_implicit_var, - ACTIONS(3232), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, + anon_sym_RBRACK, + sym_operator, sym_id, - ACTIONS(3635), 1, + [135257] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 17, anon_sym_LPAREN, - ACTIONS(3637), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3639), 1, anon_sym_DASH_GT, - ACTIONS(3641), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2957), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128753] = 13, - ACTIONS(9), 1, + sym_id, + [135280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2399), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2269), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2435), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2479), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3979), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3983), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3985), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135480] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3238), 1, + ACTIONS(2315), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - ACTIONS(3635), 1, + ACTIONS(2317), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 5, anon_sym_LPAREN, - ACTIONS(3637), 1, - anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, - sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2963), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128796] = 13, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2429), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135530] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3238), 1, - sym_id, - ACTIONS(3635), 1, + ACTIONS(969), 17, anon_sym_LPAREN, - ACTIONS(3637), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3639), 1, anon_sym_DASH_GT, - ACTIONS(3641), 1, - sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2945), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128839] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3228), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3230), 1, sym_type_implicit_var, - ACTIONS(3232), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, - sym_id, - ACTIONS(3635), 1, - anon_sym_LPAREN, - ACTIONS(3637), 1, - anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + anon_sym_RBRACK, sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2946), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128882] = 13, + sym_id, + [135553] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3228), 1, - aux_sym_type_unit_token1, - ACTIONS(3230), 1, - sym_type_implicit_var, - ACTIONS(3232), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, - anon_sym_POUND_BANG, - ACTIONS(3238), 1, - sym_id, - ACTIONS(3635), 1, + ACTIONS(975), 17, anon_sym_LPAREN, - ACTIONS(3637), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3639), 1, anon_sym_DASH_GT, - ACTIONS(3641), 1, - sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2955), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128925] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3228), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3230), 1, sym_type_implicit_var, - ACTIONS(3232), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3234), 1, anon_sym_POUND_BANG, - ACTIONS(3238), 1, - sym_id, - ACTIONS(3635), 1, - anon_sym_LPAREN, - ACTIONS(3637), 1, - anon_sym_forall, - ACTIONS(3639), 1, - anon_sym_DASH_GT, - ACTIONS(3641), 1, + anon_sym_RBRACK, sym_operator, - STATE(2853), 1, - sym_primitive_reverse_atom, - STATE(2956), 1, - sym_type, - STATE(1787), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [128968] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, sym_id, - ACTIONS(3627), 1, - anon_sym_LPAREN, - ACTIONS(3629), 1, - anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2345), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129011] = 13, - ACTIONS(9), 1, + [135576] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - ACTIONS(3627), 1, + ACTIONS(3325), 5, anon_sym_LPAREN, - ACTIONS(3629), 1, - anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2350), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129054] = 13, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3987), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135601] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, - aux_sym_type_unit_token1, - ACTIONS(2940), 1, - sym_type_implicit_var, - ACTIONS(2942), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, - anon_sym_POUND_BANG, - ACTIONS(2948), 1, - sym_id, - ACTIONS(3511), 1, + ACTIONS(979), 17, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3570), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129097] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3206), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3208), 1, sym_type_implicit_var, - ACTIONS(3210), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, - sym_id, - ACTIONS(3553), 1, - anon_sym_LPAREN, - ACTIONS(3555), 1, - anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, + anon_sym_RBRACK, sym_operator, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(3018), 1, - sym_type, - STATE(1793), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129140] = 13, + sym_id, + [135624] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - ACTIONS(3627), 1, + ACTIONS(981), 17, anon_sym_LPAREN, - ACTIONS(3629), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3631), 1, anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2351), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129183] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3206), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3208), 1, sym_type_implicit_var, - ACTIONS(3210), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, anon_sym_POUND_BANG, - ACTIONS(3216), 1, + anon_sym_RBRACK, + sym_operator, sym_id, - ACTIONS(3553), 1, + [135647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 5, anon_sym_LPAREN, - ACTIONS(3555), 1, - anon_sym_forall, - ACTIONS(3557), 1, - anon_sym_DASH_GT, - ACTIONS(3559), 1, - sym_operator, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(2991), 1, - sym_type, - STATE(1793), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129226] = 13, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135672] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3206), 1, - aux_sym_type_unit_token1, - ACTIONS(3208), 1, - sym_type_implicit_var, - ACTIONS(3210), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, - anon_sym_POUND_BANG, - ACTIONS(3216), 1, - sym_id, - ACTIONS(3553), 1, + ACTIONS(985), 17, anon_sym_LPAREN, - ACTIONS(3555), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3557), 1, anon_sym_DASH_GT, - ACTIONS(3559), 1, - sym_operator, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(3019), 1, - sym_type, - STATE(1793), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129269] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(959), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(961), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - ACTIONS(3627), 1, - anon_sym_LPAREN, - ACTIONS(3629), 1, - anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, + anon_sym_RBRACK, sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2352), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129312] = 13, + sym_id, + [135695] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - ACTIONS(3627), 1, + ACTIONS(989), 17, anon_sym_LPAREN, - ACTIONS(3629), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2353), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129355] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(300), 1, anon_sym_DASH_GT, - ACTIONS(306), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(308), 1, sym_type_implicit_var, - ACTIONS(310), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(312), 1, anon_sym_POUND_BANG, - ACTIONS(314), 1, - anon_sym_LPAREN, - ACTIONS(316), 1, - anon_sym_forall, - ACTIONS(318), 1, + anon_sym_RBRACK, sym_operator, - ACTIONS(320), 1, sym_id, - STATE(114), 1, - sym_type, - STATE(793), 1, - sym_primitive_reverse_atom, - STATE(115), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129398] = 13, + [135718] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, - aux_sym_type_unit_token1, - ACTIONS(147), 1, - sym_type_implicit_var, - ACTIONS(149), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, - anon_sym_POUND_BANG, - ACTIONS(155), 1, - sym_id, - ACTIONS(3643), 1, + ACTIONS(991), 17, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2019), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129441] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, - sym_id, - ACTIONS(3511), 1, - anon_sym_LPAREN, - ACTIONS(3513), 1, - anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_RBRACK, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(2963), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129484] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, sym_id, - ACTIONS(3627), 1, - anon_sym_LPAREN, - ACTIONS(3629), 1, - anon_sym_forall, - ACTIONS(3631), 1, - anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2340), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129527] = 13, + [135741] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(959), 1, - sym_type_implicit_var, - ACTIONS(961), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, - anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, - sym_id, - ACTIONS(3627), 1, + ACTIONS(993), 17, anon_sym_LPAREN, - ACTIONS(3629), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3631), 1, anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2355), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129570] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - ACTIONS(3651), 1, - anon_sym_LPAREN, - ACTIONS(3653), 1, - anon_sym_forall, - ACTIONS(3655), 1, - anon_sym_DASH_GT, - ACTIONS(3657), 1, + anon_sym_RBRACK, sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2337), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129613] = 13, + sym_id, + [135764] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1043), 1, - sym_type_implicit_var, - ACTIONS(1045), 1, - anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, - anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, - sym_id, - ACTIONS(3651), 1, + ACTIONS(995), 17, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2338), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129656] = 13, + sym_id, + [135787] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(997), 17, anon_sym_LPAREN, - ACTIONS(3198), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3200), 1, anon_sym_DASH_GT, - ACTIONS(3206), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3208), 1, sym_type_implicit_var, - ACTIONS(3210), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3212), 1, anon_sym_POUND_BANG, - ACTIONS(3214), 1, + anon_sym_RBRACK, sym_operator, - ACTIONS(3216), 1, sym_id, - STATE(1865), 1, - sym_type, - STATE(2885), 1, - sym_primitive_reverse_atom, - STATE(1850), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129699] = 13, + [135810] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(999), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_RBRACK, + sym_operator, sym_id, - ACTIONS(3511), 1, + [135833] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1001), 17, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3592), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129742] = 13, + sym_id, + [135856] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(465), 1, + ACTIONS(1003), 17, anon_sym_LPAREN, - ACTIONS(467), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(469), 1, anon_sym_DASH_GT, - ACTIONS(475), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(477), 1, sym_type_implicit_var, - ACTIONS(479), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(481), 1, anon_sym_POUND_BANG, - ACTIONS(483), 1, + anon_sym_RBRACK, sym_operator, - ACTIONS(485), 1, sym_id, - STATE(158), 1, - sym_type, - STATE(1621), 1, - sym_primitive_reverse_atom, - STATE(170), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129785] = 13, + [135879] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(987), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_RBRACK, + sym_operator, sym_id, - ACTIONS(3511), 1, + [135902] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 17, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_RBRACK, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3603), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129828] = 13, + sym_id, + [135925] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(971), 17, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + anon_sym_RBRACK, sym_operator, - ACTIONS(2948), 1, sym_id, - STATE(2273), 1, - sym_type, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129871] = 13, + [135948] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(931), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(961), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, anon_sym_POUND_BANG, - ACTIONS(1160), 1, + anon_sym_RBRACK, + sym_operator, + sym_id, + [135971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, + sym_id, + ACTIONS(3991), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, aux_sym_type_unit_token1, - ACTIONS(1162), 1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [135996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 5, + anon_sym_LPAREN, + anon_sym__, + anon_sym_or, + aux_sym_integer_token1, sym_id, - ACTIONS(3627), 1, + ACTIONS(3995), 12, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_LT_DASH, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [136021] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3629), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3631), 1, anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2338), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129914] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136043] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(971), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3854), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [129957] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2852), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3495), 1, + [136065] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(989), 16, anon_sym_LPAREN, - ACTIONS(3497), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3501), 1, - sym_operator, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(2959), 1, - sym_type, - STATE(1725), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130000] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136087] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3606), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130043] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136109] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3608), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130086] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136131] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3610), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130129] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(959), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(961), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(963), 1, anon_sym_POUND_BANG, - ACTIONS(1160), 1, - aux_sym_type_unit_token1, - ACTIONS(1162), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3627), 1, + [136153] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 16, anon_sym_LPAREN, - ACTIONS(3629), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3631), 1, anon_sym_DASH_GT, - ACTIONS(3633), 1, - sym_operator, - STATE(2017), 1, - sym_primitive_reverse_atom, - STATE(2337), 1, - sym_type, - STATE(413), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130172] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [136175] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2991), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130215] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, - sym_id, - ACTIONS(3511), 1, - anon_sym_LPAREN, - ACTIONS(3513), 1, - anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_or, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3611), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130258] = 3, - ACTIONS(3), 1, + sym_id, + [136197] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(3369), 5, + ACTIONS(989), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3477), 10, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [130281] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136219] = 4, + ACTIONS(9), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_of, + ACTIONS(971), 14, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2355), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 5, - anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3493), 10, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [130347] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136245] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2340), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130390] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2852), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3495), 1, + [136267] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 16, anon_sym_LPAREN, - ACTIONS(3497), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3501), 1, - sym_operator, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(4585), 1, - sym_type, - STATE(1725), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130433] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [136289] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2989), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130476] = 13, + sym_id, + [136311] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(157), 1, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(159), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(161), 1, anon_sym_DASH_GT, - ACTIONS(167), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(169), 1, sym_type_implicit_var, - ACTIONS(171), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(173), 1, anon_sym_POUND_BANG, - ACTIONS(175), 1, + anon_sym_or, sym_operator, - ACTIONS(177), 1, sym_id, - STATE(65), 1, - sym_type, - STATE(505), 1, - sym_primitive_reverse_atom, - STATE(39), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130519] = 13, + [136333] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(979), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136355] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3612), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130562] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136377] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2956), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130605] = 12, + sym_id, + [136399] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(969), 16, anon_sym_LPAREN, - ACTIONS(3664), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(3667), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3670), 1, anon_sym_POUND_BANG, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3676), 1, + anon_sym_or, sym_operator, - ACTIONS(3679), 1, sym_id, - STATE(2731), 1, - sym_type_var, - STATE(2668), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2934), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3662), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [130646] = 13, + [136421] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(985), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136443] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2353), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130689] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136465] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2352), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130732] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136487] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2946), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130775] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136509] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3613), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130818] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136531] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3614), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130861] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136553] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(989), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2945), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130904] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136575] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3900), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130947] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136597] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2963), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [130990] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136619] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2957), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131033] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136641] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2351), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131076] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136663] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2350), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131119] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136685] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3615), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131162] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136707] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2952), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131205] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136729] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2947), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131248] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136751] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2345), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131291] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1045), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1047), 1, anon_sym_POUND_BANG, - ACTIONS(1055), 1, - aux_sym_type_unit_token1, - ACTIONS(1057), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3651), 1, + [136773] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 16, anon_sym_LPAREN, - ACTIONS(3653), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3655), 1, anon_sym_DASH_GT, - ACTIONS(3657), 1, - sym_operator, - STATE(2054), 1, - sym_primitive_reverse_atom, - STATE(2348), 1, - sym_type, - STATE(331), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131334] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136795] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3616), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131377] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136817] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2960), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131420] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136839] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2942), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131463] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136861] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2958), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131506] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136883] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2959), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131549] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136905] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2951), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131592] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3151), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(3153), 1, sym_type_implicit_var, - ACTIONS(3155), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3157), 1, anon_sym_POUND_BANG, - ACTIONS(3161), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3503), 1, + [136927] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3505), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3507), 1, anon_sym_DASH_GT, - ACTIONS(3509), 1, - sym_operator, - STATE(2890), 1, - sym_primitive_reverse_atom, - STATE(2961), 1, - sym_type, - STATE(1882), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131635] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136949] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(971), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4621), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131678] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3511), 1, + [136971] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4510), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131721] = 13, + sym_id, + [136993] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(2844), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(2846), 1, anon_sym_DASH_GT, - ACTIONS(2852), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2860), 1, + anon_sym_or, sym_operator, - ACTIONS(2862), 1, sym_id, - STATE(1715), 1, - sym_type, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(1712), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131764] = 13, + [137015] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, + ACTIONS(975), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137037] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(971), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2003), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131807] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137059] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(1938), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131850] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137081] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2005), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131893] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137103] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1001), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2006), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131936] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137125] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2011), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [131979] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137147] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3617), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132022] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137169] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2714), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132065] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137191] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3618), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132108] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137213] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3619), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132151] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137235] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(2945), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132194] = 13, + sym_id, + [137257] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(985), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137279] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3620), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132237] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137301] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(989), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2720), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132280] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137323] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2034), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132323] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137345] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, - sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2039), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132366] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137367] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2724), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132409] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137389] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2728), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132452] = 13, + sym_id, + [137411] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(179), 1, + ACTIONS(989), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, anon_sym_DASH_GT, - ACTIONS(185), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(187), 1, sym_type_implicit_var, - ACTIONS(189), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(191), 1, anon_sym_POUND_BANG, - ACTIONS(193), 1, - anon_sym_LPAREN, - ACTIONS(195), 1, - anon_sym_forall, - ACTIONS(197), 1, + anon_sym_do, sym_operator, - ACTIONS(199), 1, sym_id, - STATE(55), 1, - sym_type, - STATE(597), 1, - sym_primitive_reverse_atom, - STATE(53), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132495] = 13, + [137433] = 3, ACTIONS(9), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(3321), 1, + anon_sym_EQ, + ACTIONS(971), 15, anon_sym_LPAREN, - ACTIONS(21), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(23), 1, anon_sym_DASH_GT, - ACTIONS(29), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(31), 1, sym_type_implicit_var, - ACTIONS(33), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(35), 1, anon_sym_POUND_BANG, - ACTIONS(37), 1, sym_operator, - ACTIONS(39), 1, sym_id, - STATE(18), 1, - sym_type, - STATE(288), 1, - sym_primitive_reverse_atom, - STATE(34), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132538] = 13, + [137457] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(993), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137479] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(2946), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132581] = 3, - ACTIONS(3), 1, + sym_id, + [137501] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(3487), 5, + ACTIONS(1003), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3489), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [132604] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137523] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2739), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132647] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137545] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2765), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132690] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137567] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3956), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132733] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137589] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(2955), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132776] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137611] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(2956), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132819] = 3, - ACTIONS(3), 1, + sym_id, + [137633] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(3479), 5, + ACTIONS(975), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(3481), 10, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [132842] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [137655] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2337), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132885] = 13, + sym_id, + [137677] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1104), 1, + ACTIONS(983), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [137699] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2338), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132928] = 13, + sym_id, + [137721] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, + ACTIONS(979), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137743] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2042), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [132971] = 3, - ACTIONS(3), 1, + sym_id, + [137765] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2065), 5, + ACTIONS(1001), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2067), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [132994] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137787] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(977), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2769), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133037] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3682), 1, + [137809] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2771), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133080] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, - sym_id, - ACTIONS(3511), 1, - anon_sym_LPAREN, - ACTIONS(3513), 1, - anon_sym_forall, - ACTIONS(3515), 1, - anon_sym_DASH_GT, - ACTIONS(3517), 1, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(3406), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133123] = 3, - ACTIONS(3), 1, + sym_id, + [137831] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2093), 5, + ACTIONS(999), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2095), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [133146] = 13, + sym_operator, + sym_id, + [137853] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, + ACTIONS(993), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [137875] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2045), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133189] = 12, + sym_id, + [137897] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(995), 16, anon_sym_LPAREN, - ACTIONS(3599), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(3601), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3603), 1, anon_sym_POUND_BANG, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(3607), 1, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - ACTIONS(3609), 1, sym_id, - STATE(2731), 1, - sym_type_var, - STATE(2668), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2934), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3698), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [133230] = 5, + [137919] = 2, ACTIONS(9), 1, sym_comment, - STATE(2731), 1, - sym_type_var, - STATE(2737), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2934), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3597), 10, + ACTIONS(995), 16, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, sym_operator, sym_id, - [133257] = 13, + [137941] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(997), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [137963] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(993), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, - sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4662), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133300] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, - sym_id, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(3645), 1, - anon_sym_forall, - ACTIONS(3647), 1, - anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(1983), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133343] = 13, + sym_id, + [137985] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(991), 16, anon_sym_LPAREN, - ACTIONS(2930), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(2932), 1, anon_sym_DASH_GT, - ACTIONS(2938), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2946), 1, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - ACTIONS(2948), 1, sym_id, - STATE(1660), 1, - sym_type, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(1724), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133386] = 13, + [138007] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(981), 1, + ACTIONS(989), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3682), 1, + [138029] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, - sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2745), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133429] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(981), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(983), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(985), 1, anon_sym_POUND_BANG, - ACTIONS(1126), 1, - aux_sym_type_unit_token1, - ACTIONS(1128), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3682), 1, + [138051] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 16, anon_sym_LPAREN, - ACTIONS(3684), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3686), 1, anon_sym_DASH_GT, - ACTIONS(3688), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - STATE(1981), 1, - sym_primitive_reverse_atom, - STATE(2744), 1, - sym_type, - STATE(399), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133472] = 5, + sym_id, + [138073] = 2, ACTIONS(9), 1, sym_comment, - STATE(2731), 1, - sym_type_var, - STATE(2668), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2934), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3698), 10, + ACTIONS(1001), 16, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, + anon_sym_or, sym_operator, sym_id, - [133499] = 13, + [138095] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(1104), 1, + ACTIONS(983), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138117] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2355), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133542] = 3, - ACTIONS(3), 1, + sym_id, + [138139] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2101), 5, + ACTIONS(1001), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2103), 10, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [133565] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138161] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2340), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133608] = 13, + sym_id, + [138183] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(979), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3511), 1, + [138205] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 16, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4011), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133651] = 13, + sym_id, + [138227] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, + ACTIONS(977), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + anon_sym_or, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3643), 1, + [138249] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, + anon_sym_LT_DASH, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2049), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133694] = 13, + sym_id, + [138271] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(145), 1, + ACTIONS(1001), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [138293] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 16, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2033), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133737] = 3, - ACTIONS(3), 1, + sym_id, + [138315] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2283), 5, + ACTIONS(975), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2285), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [133760] = 3, - ACTIONS(3), 1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, + sym_operator, + sym_id, + [138337] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2267), 5, + ACTIONS(969), 16, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2269), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_or, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [133783] = 13, + sym_operator, + sym_id, + [138359] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(971), 16, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + sym_operator, sym_id, - ACTIONS(3495), 1, + [138381] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3497), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3501), 1, - sym_operator, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(4669), 1, - sym_type, - STATE(1725), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133826] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138403] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2353), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133869] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138425] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1001), 16, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2352), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133912] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138447] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(973), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2956), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133955] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138469] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2955), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [133998] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138491] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2946), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134041] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138513] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(971), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2945), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134084] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_or, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138535] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2963), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134127] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138557] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(971), 16, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2957), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134170] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_do, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138579] = 4, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym_COMMA, + ACTIONS(4003), 1, + anon_sym_of, + ACTIONS(971), 14, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2952), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134213] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138605] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 15, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2351), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134256] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138626] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(975), 15, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2350), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134299] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138647] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(995), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2947), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134342] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138668] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(987), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2960), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134385] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138689] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(985), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2942), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134428] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138710] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(997), 15, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2345), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134471] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(1104), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(1106), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(1108), 1, anon_sym_POUND_BANG, - ACTIONS(1118), 1, - aux_sym_type_unit_token1, - ACTIONS(1120), 1, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3690), 1, + [138731] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(983), 15, anon_sym_LPAREN, - ACTIONS(3692), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3694), 1, anon_sym_DASH_GT, - ACTIONS(3696), 1, - sym_operator, - STATE(1986), 1, - sym_primitive_reverse_atom, - STATE(2348), 1, - sym_type, - STATE(391), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134514] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138752] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1003), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2958), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134557] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, - sym_id, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(3621), 1, - anon_sym_forall, - ACTIONS(3623), 1, - anon_sym_DASH_GT, - ACTIONS(3625), 1, sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2959), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134600] = 3, - ACTIONS(3), 1, + sym_id, + [138773] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2097), 5, + ACTIONS(971), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2099), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [134623] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, - aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138794] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, - sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2951), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134666] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(2969), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2971), 1, sym_type_implicit_var, - ACTIONS(2973), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2975), 1, anon_sym_POUND_BANG, - ACTIONS(2979), 1, + sym_operator, sym_id, - ACTIONS(3619), 1, + [138815] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 15, anon_sym_LPAREN, - ACTIONS(3621), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3623), 1, anon_sym_DASH_GT, - ACTIONS(3625), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, - STATE(2787), 1, - sym_primitive_reverse_atom, - STATE(2961), 1, - sym_type, - STATE(1664), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134709] = 13, + sym_id, + [138836] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(979), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2854), 1, sym_type_implicit_var, - ACTIONS(2856), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2858), 1, anon_sym_POUND_BANG, - ACTIONS(2862), 1, + sym_operator, sym_id, - ACTIONS(3495), 1, + [138857] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(981), 15, anon_sym_LPAREN, - ACTIONS(3497), 1, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, - ACTIONS(3499), 1, anon_sym_DASH_GT, - ACTIONS(3501), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, - STATE(2815), 1, - sym_primitive_reverse_atom, - STATE(2951), 1, - sym_type, - STATE(1725), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134752] = 3, - ACTIONS(3), 1, + sym_id, + [138878] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2105), 5, + ACTIONS(1003), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2107), 10, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [134775] = 13, + sym_operator, + sym_id, + [138899] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(977), 15, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + sym_operator, sym_id, - ACTIONS(3511), 1, + [138920] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(979), 15, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_do, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4064), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134818] = 3, - ACTIONS(3), 1, + sym_id, + [138941] = 2, + ACTIONS(9), 1, sym_comment, - ACTIONS(2109), 5, + ACTIONS(969), 15, anon_sym_LPAREN, - anon_sym__, - anon_sym_or, - aux_sym_integer_token1, - sym_id, - ACTIONS(2111), 10, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - anon_sym_LT_DASH, - anon_sym_QMARK, - sym_hex_integer, - sym_octet_integer, - sym_floating, - anon_sym_DQUOTE, - [134841] = 13, - ACTIONS(9), 1, - sym_comment, - ACTIONS(145), 1, - aux_sym_type_unit_token1, - ACTIONS(147), 1, sym_type_implicit_var, - ACTIONS(149), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(151), 1, anon_sym_POUND_BANG, - ACTIONS(155), 1, + sym_operator, sym_id, - ACTIONS(3643), 1, + [138962] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(1001), 15, anon_sym_LPAREN, - ACTIONS(3645), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3647), 1, anon_sym_DASH_GT, - ACTIONS(3649), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - STATE(542), 1, - sym_primitive_reverse_atom, - STATE(2061), 1, - sym_type, - STATE(58), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134884] = 13, + sym_id, + [138983] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(2938), 1, + ACTIONS(1001), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - ACTIONS(2940), 1, sym_type_implicit_var, - ACTIONS(2942), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(2944), 1, anon_sym_POUND_BANG, - ACTIONS(2948), 1, + anon_sym_LT_DASH, + sym_operator, sym_id, - ACTIONS(3511), 1, + [139004] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(999), 15, anon_sym_LPAREN, - ACTIONS(3513), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, - ACTIONS(3515), 1, anon_sym_DASH_GT, - ACTIONS(3517), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, sym_operator, - STATE(2826), 1, - sym_primitive_reverse_atom, - STATE(4096), 1, - sym_type, - STATE(1691), 4, - sym_type_unit, - sym_type_tuple, - sym_type_var, - sym_primitive_type, - [134927] = 2, + sym_id, + [139025] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(997), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, sym_operator, sym_id, - [134947] = 4, + [139046] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_COMMA, - ACTIONS(3702), 1, - anon_sym_of, - ACTIONS(951), 12, + ACTIONS(993), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -115860,144 +123708,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [134971] = 12, + [139067] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(995), 15, anon_sym_LPAREN, - ACTIONS(3706), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(3708), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3710), 1, anon_sym_POUND_BANG, - ACTIONS(3712), 1, - anon_sym_LBRACK, - ACTIONS(3714), 1, sym_operator, - ACTIONS(3716), 1, sym_id, - STATE(2791), 1, - sym_type_var, - ACTIONS(3698), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2790), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2962), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [135011] = 2, + [139088] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(975), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, + anon_sym_LT_DASH, sym_operator, sym_id, - [135031] = 2, + [139109] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(993), 15, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135051] = 2, + [139130] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(977), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, + anon_sym_LT_DASH, sym_operator, sym_id, - [135071] = 12, + [139151] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(991), 15, anon_sym_LPAREN, - ACTIONS(3706), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(3708), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3710), 1, anon_sym_POUND_BANG, - ACTIONS(3712), 1, - anon_sym_LBRACK, - ACTIONS(3714), 1, sym_operator, - ACTIONS(3716), 1, sym_id, - STATE(2791), 1, - sym_type_var, - ACTIONS(3597), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2776), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2962), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [135111] = 2, + [139172] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(989), 15, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135131] = 2, + [139193] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 14, + ACTIONS(987), 15, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116006,106 +123841,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [135151] = 2, + [139214] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(985), 15, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135171] = 2, + [139235] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(983), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, sym_operator, sym_id, - [135191] = 2, + [139256] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(971), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [135211] = 2, + [139277] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(981), 15, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135231] = 2, + [139298] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(979), 15, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135251] = 2, + [139319] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(977), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116114,118 +123955,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [135271] = 2, + [139340] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 14, + ACTIONS(979), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, + anon_sym_LT_DASH, sym_operator, sym_id, - [135291] = 12, + [139361] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(975), 15, anon_sym_LPAREN, - ACTIONS(3721), 1, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, - ACTIONS(3724), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3727), 1, anon_sym_POUND_BANG, - ACTIONS(3730), 1, - anon_sym_LBRACK, - ACTIONS(3733), 1, sym_operator, - ACTIONS(3736), 1, sym_id, - STATE(2791), 1, - sym_type_var, - ACTIONS(3662), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2790), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2962), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [135331] = 5, + [139382] = 5, ACTIONS(9), 1, sym_comment, - STATE(2791), 1, + STATE(2929), 1, sym_type_var, - STATE(2802), 2, + STATE(2995), 2, sym_primitive_compound, aux_sym_primitive_compound_repeat1, - STATE(2962), 2, + STATE(3076), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - ACTIONS(3597), 9, + ACTIONS(4005), 10, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, sym_operator, sym_id, - [135357] = 2, + [139409] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(1003), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, + anon_sym_do, sym_operator, sym_id, - [135377] = 2, + [139430] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 14, + ACTIONS(931), 15, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, sym_operator, sym_id, - [135397] = 2, + [139451] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(931), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116235,51 +124072,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135417] = 2, + [139472] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(983), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, + anon_sym_LT_DASH, sym_operator, sym_id, - [135437] = 2, + [139493] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(971), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135457] = 2, + [139514] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(973), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116289,51 +124129,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135477] = 2, + [139535] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(985), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, sym_id, - [135497] = 2, + [139556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3285), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [139579] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 14, + ACTIONS(995), 15, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, sym_operator, sym_id, - [135517] = 2, + [139600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3117), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [139623] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(1001), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116343,15 +124226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135537] = 2, + [139644] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(999), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116361,126 +124245,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135557] = 5, + [139665] = 2, ACTIONS(9), 1, sym_comment, - STATE(2791), 1, - sym_type_var, - STATE(2790), 2, - sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2962), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - ACTIONS(3698), 9, + ACTIONS(997), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_forall, + anon_sym_DASH_GT, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_BANG_LBRACE, + aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_LBRACK, + anon_sym_do, sym_operator, sym_id, - [135583] = 2, + [139686] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(995), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135603] = 2, + [139707] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(993), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, + anon_sym_do, sym_operator, sym_id, - [135623] = 2, + [139728] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(4007), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4011), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4013), 1, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, + ACTIONS(4015), 1, + anon_sym_LBRACK, + ACTIONS(4017), 1, sym_operator, + ACTIONS(4019), 1, sym_id, - [135643] = 2, + STATE(2929), 1, + sym_type_var, + STATE(2985), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3076), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4005), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [139769] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(991), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135663] = 2, + [139790] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(989), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, + anon_sym_do, sym_operator, sym_id, - [135683] = 2, + [139811] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(987), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116490,124 +124388,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135703] = 2, + [139832] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 14, + ACTIONS(993), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, anon_sym_LT_DASH, sym_operator, sym_id, - [135723] = 2, + [139853] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(1003), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [135743] = 2, + [139874] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(985), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135763] = 2, + [139895] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(991), 15, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, sym_id, - [135783] = 2, + [139916] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(983), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135803] = 2, + [139937] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 14, + ACTIONS(989), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135823] = 2, + [139958] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(931), 15, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116616,69 +124521,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [135843] = 2, + [139979] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(931), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [135863] = 2, + [140000] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 14, + ACTIONS(971), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [135883] = 2, + [140021] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 14, + ACTIONS(981), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135903] = 2, + [140042] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(977), 15, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116688,88 +124597,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_do, sym_operator, sym_id, - [135923] = 2, - ACTIONS(9), 1, + [140063] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(4021), 1, + aux_sym_number_token1, + ACTIONS(3261), 4, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3969), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, - sym_operator, - sym_id, - [135943] = 2, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [140088] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(975), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_do, sym_operator, sym_id, - [135963] = 2, + [140109] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(1001), 15, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, sym_operator, sym_id, - [135983] = 2, - ACTIONS(9), 1, + [140130] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(3257), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3259), 11, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, - sym_id, - [136003] = 2, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + aux_sym_number_token1, + anon_sym_DQUOTE, + [140153] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(973), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -116778,305 +124695,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [136023] = 2, + [140174] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(969), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, + anon_sym_do, sym_operator, sym_id, - [136043] = 2, + [140195] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(1001), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136063] = 2, + [140216] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 14, + ACTIONS(999), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136083] = 2, + [140237] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(997), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136103] = 2, + [140258] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 14, + ACTIONS(969), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, sym_operator, sym_id, - [136123] = 2, + [140279] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(987), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, anon_sym_LT_DASH, sym_operator, sym_id, - [136143] = 2, + [140300] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(995), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136163] = 2, + [140321] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(993), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, + anon_sym_in, sym_operator, sym_id, - [136183] = 2, + [140342] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(997), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_RBRACK, sym_operator, sym_id, - [136203] = 2, + [140363] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(1003), 15, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, - anon_sym_LT_DASH, sym_operator, sym_id, - [136223] = 2, + [140384] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(989), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, anon_sym_LT_DASH, sym_operator, sym_id, - [136243] = 2, - ACTIONS(9), 1, + [140405] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(3973), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3975), 11, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_AT, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [140428] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(969), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, sym_id, - [136263] = 2, + [140449] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 14, + ACTIONS(991), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136283] = 2, + [140470] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(989), 15, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136303] = 2, + [140491] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(973), 15, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_do, + anon_sym_LT_DASH, sym_operator, sym_id, - [136323] = 4, + [140512] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_COMMA, - ACTIONS(3741), 1, - anon_sym_of, - ACTIONS(951), 12, + ACTIONS(931), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LT_DASH, sym_operator, sym_id, - [136347] = 2, + [140533] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 13, + ACTIONS(973), 15, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -117085,65 +125038,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [136366] = 2, + [140554] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 13, + ACTIONS(987), 15, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, + anon_sym_in, sym_operator, sym_id, - [136385] = 2, + [140575] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 13, + ACTIONS(973), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136404] = 2, + [140596] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 13, + ACTIONS(4007), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4011), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4013), 1, anon_sym_POUND_BANG, + ACTIONS(4015), 1, + anon_sym_LBRACK, + ACTIONS(4017), 1, sym_operator, + ACTIONS(4019), 1, sym_id, - [136423] = 2, + STATE(2929), 1, + sym_type_var, + STATE(2991), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3076), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4023), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [140637] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 13, + ACTIONS(969), 15, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -117153,14 +125124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, sym_operator, sym_id, - [136442] = 2, + [140658] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 13, + ACTIONS(985), 15, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -117170,15 +125143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, sym_operator, sym_id, - [136461] = 2, + [140679] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 13, + ACTIONS(971), 15, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -117187,31 +125162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_BANG, sym_operator, sym_id, - [136480] = 2, + [140700] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 13, + ACTIONS(975), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136499] = 2, + [140721] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 13, + ACTIONS(977), 15, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, @@ -117221,23734 +125200,24386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, sym_operator, sym_id, - [136518] = 2, + [140742] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 13, + ACTIONS(4025), 1, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4030), 1, sym_type_implicit_var, + ACTIONS(4033), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4036), 1, anon_sym_POUND_BANG, + ACTIONS(4039), 1, + anon_sym_LBRACK, + ACTIONS(4042), 1, sym_operator, + ACTIONS(4045), 1, sym_id, - [136537] = 2, + STATE(2929), 1, + sym_type_var, + STATE(2991), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3076), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4028), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [140783] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 13, + ACTIONS(979), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136556] = 2, + [140804] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 13, + ACTIONS(981), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136575] = 2, + [140825] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 13, + ACTIONS(983), 15, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_in, sym_operator, sym_id, - [136594] = 2, + [140846] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 13, + STATE(2929), 1, + sym_type_var, + STATE(2991), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3076), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4023), 10, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_or, + anon_sym_LBRACK, sym_operator, sym_id, - [136613] = 2, + [140873] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 13, + ACTIONS(991), 15, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_forall, anon_sym_DASH_GT, + anon_sym_EQ_GT, anon_sym_BANG, anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, - anon_sym_in, sym_operator, sym_id, - [136632] = 2, - ACTIONS(9), 1, + [140894] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(973), 13, + ACTIONS(2271), 4, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2273), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [140916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, sym_id, - [136651] = 2, - ACTIONS(9), 1, + ACTIONS(2269), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [140938] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 13, + ACTIONS(2315), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2317), 10, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [140960] = 12, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4048), 1, + anon_sym_LPAREN, + ACTIONS(4051), 1, sym_type_implicit_var, + ACTIONS(4054), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4057), 1, anon_sym_POUND_BANG, + ACTIONS(4060), 1, + anon_sym_LBRACK, + ACTIONS(4063), 1, sym_operator, + ACTIONS(4066), 1, sym_id, - [136670] = 2, - ACTIONS(9), 1, + STATE(3015), 1, + sym_type_var, + ACTIONS(4028), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3000), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3083), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141000] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(951), 13, + ACTIONS(2393), 4, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2395), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, sym_id, - [136689] = 2, - ACTIONS(9), 1, + ACTIONS(2399), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141044] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 13, + ACTIONS(3981), 4, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3983), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, sym_id, - [136708] = 2, - ACTIONS(9), 1, + ACTIONS(3979), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141088] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(991), 13, + ACTIONS(2433), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2435), 10, anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, - sym_operator, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, sym_id, - [136727] = 2, - ACTIONS(9), 1, + ACTIONS(3991), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141132] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(951), 13, + ACTIONS(2427), 4, anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2429), 10, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(2479), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141176] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + ts_builtin_sym_end, + ACTIONS(4071), 1, + anon_sym_use, + ACTIONS(4074), 1, + anon_sym_data, + ACTIONS(4077), 1, + anon_sym_fixity, + ACTIONS(4080), 1, + anon_sym_let, + ACTIONS(4083), 1, + anon_sym_effect, + STATE(3009), 4, + sym__top, + sym_use, + sym_declaration, + aux_sym_source_file_repeat1, + STATE(3105), 4, + sym_data, + sym_fixity, + sym_let_binding, + sym_effect, + [141210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3995), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3985), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BANG, - anon_sym_BANG_LBRACE, aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141254] = 5, + ACTIONS(9), 1, + sym_comment, + STATE(3015), 1, + sym_type_var, + STATE(3000), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3083), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4023), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LBRACK, sym_operator, sym_id, - [136746] = 12, + [141280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3325), 4, + anon_sym_LPAREN, + anon_sym__, + aux_sym_integer_token1, + sym_id, + ACTIONS(3987), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BANG, + aux_sym_type_unit_token1, + anon_sym_QMARK, + sym_hex_integer, + sym_octet_integer, + sym_floating, + anon_sym_DQUOTE, + [141302] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(3597), 1, - anon_sym_SEMI, - ACTIONS(3743), 1, + ACTIONS(4086), 1, anon_sym_LPAREN, - ACTIONS(3745), 1, + ACTIONS(4088), 1, sym_type_implicit_var, - ACTIONS(3747), 1, + ACTIONS(4090), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3749), 1, + ACTIONS(4092), 1, anon_sym_POUND_BANG, - ACTIONS(3751), 1, + ACTIONS(4094), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4096), 1, sym_operator, - ACTIONS(3755), 1, + ACTIONS(4098), 1, sym_id, - STATE(2878), 1, + STATE(3015), 1, sym_type_var, - STATE(2864), 2, + ACTIONS(4005), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3017), 2, sym_primitive_compound, aux_sym_primitive_compound_repeat1, - STATE(2970), 2, + STATE(3083), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [136785] = 2, + [141342] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 13, + STATE(3015), 1, + sym_type_var, + STATE(3012), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3083), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4005), 9, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + anon_sym_RPAREN, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LBRACK, sym_operator, sym_id, - [136804] = 12, + [141368] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4100), 1, + ts_builtin_sym_end, + ACTIONS(4102), 1, + anon_sym_use, + ACTIONS(4104), 1, + anon_sym_data, + ACTIONS(4106), 1, + anon_sym_fixity, + ACTIONS(4108), 1, + anon_sym_let, + ACTIONS(4110), 1, + anon_sym_effect, + STATE(3009), 4, + sym__top, + sym_use, + sym_declaration, + aux_sym_source_file_repeat1, + STATE(3105), 4, + sym_data, + sym_fixity, + sym_let_binding, + sym_effect, + [141402] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(3698), 1, - anon_sym_SEMI, - ACTIONS(3743), 1, + ACTIONS(4086), 1, anon_sym_LPAREN, - ACTIONS(3745), 1, + ACTIONS(4088), 1, sym_type_implicit_var, - ACTIONS(3747), 1, + ACTIONS(4090), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3749), 1, + ACTIONS(4092), 1, anon_sym_POUND_BANG, - ACTIONS(3751), 1, + ACTIONS(4094), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4096), 1, sym_operator, - ACTIONS(3755), 1, + ACTIONS(4098), 1, sym_id, - STATE(2878), 1, + STATE(3015), 1, sym_type_var, - STATE(2871), 2, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3000), 2, sym_primitive_compound, aux_sym_primitive_compound_repeat1, - STATE(2970), 2, + STATE(3083), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [136843] = 2, + [141442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + anon_sym_use, + ACTIONS(4104), 1, + anon_sym_data, + ACTIONS(4106), 1, + anon_sym_fixity, + ACTIONS(4108), 1, + anon_sym_let, + ACTIONS(4110), 1, + anon_sym_effect, + ACTIONS(4112), 1, + ts_builtin_sym_end, + STATE(3016), 4, + sym__top, + sym_use, + sym_declaration, + aux_sym_source_file_repeat1, + STATE(3105), 4, + sym_data, + sym_fixity, + sym_let_binding, + sym_effect, + [141476] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(971), 13, + ACTIONS(4028), 1, + anon_sym_SEMI, + ACTIONS(4114), 1, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4117), 1, sym_type_implicit_var, + ACTIONS(4120), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4123), 1, anon_sym_POUND_BANG, + ACTIONS(4126), 1, + anon_sym_LBRACK, + ACTIONS(4129), 1, sym_operator, + ACTIONS(4132), 1, sym_id, - [136862] = 2, + STATE(3022), 1, + sym_type_var, + STATE(3019), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3092), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141515] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 13, + ACTIONS(4023), 1, + anon_sym_SEMI, + ACTIONS(4135), 1, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4137), 1, sym_type_implicit_var, + ACTIONS(4139), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4141), 1, anon_sym_POUND_BANG, + ACTIONS(4143), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, sym_operator, + ACTIONS(4147), 1, sym_id, - [136881] = 2, + STATE(3022), 1, + sym_type_var, + STATE(3019), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3092), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141554] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 13, + STATE(3022), 1, + sym_type_var, + STATE(3019), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3092), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4023), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [136900] = 2, + [141579] = 5, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 13, + STATE(3022), 1, + sym_type_var, + STATE(3021), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3092), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + ACTIONS(4005), 8, anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [136919] = 2, + [141604] = 12, ACTIONS(9), 1, sym_comment, - ACTIONS(973), 13, + ACTIONS(4005), 1, + anon_sym_SEMI, + ACTIONS(4135), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4137), 1, sym_type_implicit_var, + ACTIONS(4139), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4141), 1, anon_sym_POUND_BANG, + ACTIONS(4143), 1, + anon_sym_LBRACK, + ACTIONS(4145), 1, sym_operator, + ACTIONS(4147), 1, sym_id, - [136938] = 2, + STATE(3022), 1, + sym_type_var, + STATE(3020), 2, + sym_primitive_compound, + aux_sym_primitive_compound_repeat1, + STATE(3092), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141643] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(969), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + ACTIONS(4019), 1, sym_id, - [136957] = 12, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3662), 1, - anon_sym_SEMI, - ACTIONS(3757), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3760), 1, - sym_type_implicit_var, - ACTIONS(3763), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3766), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3769), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3772), 1, + ACTIONS(4157), 1, sym_operator, - ACTIONS(3775), 1, - sym_id, - STATE(2878), 1, + STATE(2945), 1, sym_type_var, - STATE(2871), 2, + STATE(3170), 1, sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2970), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [136996] = 2, + [141678] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(831), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137015] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(989), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137034] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3228), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141713] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137053] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(971), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_or, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137072] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3179), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141748] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_in, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137091] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(973), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_or, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137110] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2878), 1, + STATE(2945), 1, sym_type_var, - STATE(2886), 2, + STATE(3184), 1, sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2970), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - ACTIONS(3597), 8, - anon_sym_LPAREN, + [141783] = 11, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4137), 1, sym_type_implicit_var, + ACTIONS(4147), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, anon_sym_LBRACK, - anon_sym_SEMI, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137135] = 2, + STATE(3023), 1, + sym_type_var, + STATE(4909), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141818] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137154] = 2, - ACTIONS(9), 1, + STATE(2945), 1, + sym_type_var, + STATE(3278), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141853] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(993), 13, - anon_sym_LPAREN, + ACTIONS(4159), 11, anon_sym_COMMA, - anon_sym_forall, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_RBRACK, + anon_sym_do, anon_sym_in, - sym_operator, - sym_id, - [137173] = 2, - ACTIONS(9), 1, + anon_sym_LT_DASH, + [141870] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(995), 13, - anon_sym_LPAREN, + ACTIONS(4161), 11, anon_sym_COMMA, - anon_sym_forall, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, + anon_sym_RBRACK, + anon_sym_do, anon_sym_in, - sym_operator, - sym_id, - [137192] = 2, + anon_sym_LT_DASH, + [141887] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(989), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137211] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(919), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_in, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137230] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3236), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141922] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(991), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137249] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(913), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137268] = 5, - ACTIONS(9), 1, - sym_comment, - STATE(2878), 1, + STATE(2945), 1, sym_type_var, - STATE(2871), 2, + STATE(3193), 1, sym_primitive_compound, - aux_sym_primitive_compound_repeat1, - STATE(2970), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - ACTIONS(3698), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [137293] = 2, + [141957] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_or, - sym_operator, + ACTIONS(4019), 1, sym_id, - [137312] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(997), 13, + ACTIONS(4149), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, - sym_type_implicit_var, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_in, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137331] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3201), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [141992] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137350] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3250), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [142027] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(913), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_in, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137369] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3198), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [142062] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(993), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_or, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137388] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3268), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [142097] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(997), 13, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137407] = 2, + STATE(2945), 1, + sym_type_var, + STATE(3192), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [142132] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(995), 13, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_forall, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_BANG_LBRACE, - aux_sym_type_unit_token1, + ACTIONS(4009), 1, sym_type_implicit_var, + ACTIONS(4019), 1, + sym_id, + ACTIONS(4149), 1, + anon_sym_LPAREN, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - anon_sym_or, + ACTIONS(4155), 1, + anon_sym_LBRACK, + ACTIONS(4157), 1, sym_operator, - sym_id, - [137426] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 1, - ts_builtin_sym_end, - ACTIONS(3780), 1, - anon_sym_use, - ACTIONS(3782), 1, - anon_sym_data, - ACTIONS(3784), 1, - anon_sym_fixity, - ACTIONS(3786), 1, - anon_sym_let, - STATE(3111), 3, - sym_data, - sym_fixity, - sym_let_binding, - STATE(2895), 4, - sym__top, - sym_use, - sym_declaration, - aux_sym_source_file_repeat1, - [137456] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_use, - ACTIONS(3782), 1, - anon_sym_data, - ACTIONS(3784), 1, - anon_sym_fixity, - ACTIONS(3786), 1, - anon_sym_let, - ACTIONS(3788), 1, - ts_builtin_sym_end, - STATE(3111), 3, - sym_data, - sym_fixity, - sym_let_binding, - STATE(2896), 4, - sym__top, - sym_use, - sym_declaration, - aux_sym_source_file_repeat1, - [137486] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 1, - ts_builtin_sym_end, - ACTIONS(3792), 1, - anon_sym_use, - ACTIONS(3795), 1, - anon_sym_data, - ACTIONS(3798), 1, - anon_sym_fixity, - ACTIONS(3801), 1, - anon_sym_let, - STATE(3111), 3, - sym_data, - sym_fixity, - sym_let_binding, - STATE(2896), 4, - sym__top, - sym_use, - sym_declaration, - aux_sym_source_file_repeat1, - [137516] = 11, + STATE(2945), 1, + sym_type_var, + STATE(3214), 1, + sym_primitive_compound, + STATE(3388), 2, + sym_primitive_reverse_atom, + sym_primitive_reverse_prim, + [142167] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3204), 1, + STATE(3223), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137551] = 11, + [142202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_do, + anon_sym_in, + anon_sym_LT_DASH, + [142219] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3194), 1, + STATE(3186), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137586] = 11, + [142254] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3113), 1, + STATE(3263), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137621] = 11, + [142289] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3240), 1, + STATE(3234), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137656] = 11, + [142324] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4088), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4098), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(3014), 1, sym_type_var, - STATE(3232), 1, + STATE(4661), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137691] = 11, + [142359] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3755), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2862), 1, + STATE(2945), 1, sym_type_var, - STATE(4666), 1, + STATE(3202), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137726] = 11, + [142394] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3716), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2780), 1, + STATE(2945), 1, sym_type_var, - STATE(4514), 1, + STATE(3264), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137761] = 11, + [142429] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3212), 1, + STATE(3176), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137796] = 11, + [142464] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3243), 1, + STATE(3206), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137831] = 11, + [142499] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3046), 1, + STATE(3160), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137866] = 11, + [142534] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3190), 1, + STATE(3191), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137901] = 11, + [142569] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3200), 1, + STATE(3230), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137936] = 11, + [142604] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3119), 1, + STATE(3271), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [137971] = 11, + [142639] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3049), 1, + STATE(3188), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138006] = 11, + [142674] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3755), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2862), 1, + STATE(2945), 1, sym_type_var, - STATE(4579), 1, + STATE(3164), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138041] = 11, + [142709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_do, + anon_sym_in, + anon_sym_LT_DASH, + [142726] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3755), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2862), 1, + STATE(2945), 1, sym_type_var, - STATE(4584), 1, + STATE(4662), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138076] = 11, + [142761] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3059), 1, + STATE(3183), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138111] = 11, + [142796] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4137), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4147), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(3023), 1, sym_type_var, - STATE(3219), 1, + STATE(4779), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138146] = 11, + [142831] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3230), 1, + STATE(3197), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138181] = 11, + [142866] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3148), 1, + STATE(3212), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138216] = 11, + [142901] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(4518), 1, + STATE(3181), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138251] = 11, + [142936] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4137), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4147), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(3023), 1, sym_type_var, - STATE(3104), 1, + STATE(4752), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138286] = 11, + [142971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_do, + anon_sym_in, + anon_sym_LT_DASH, + [142988] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3217), 1, + STATE(3171), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138321] = 11, + [143023] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3264), 1, + STATE(3175), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138356] = 11, + [143058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_do, + anon_sym_in, + anon_sym_LT_DASH, + [143075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_RBRACK, + anon_sym_do, + anon_sym_in, + anon_sym_LT_DASH, + [143092] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4137), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4147), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(3023), 1, sym_type_var, - STATE(3208), 1, + STATE(4799), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138391] = 11, + [143127] = 11, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(4009), 1, sym_type_implicit_var, - ACTIONS(3609), 1, + ACTIONS(4019), 1, sym_id, - ACTIONS(3804), 1, + ACTIONS(4149), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(4151), 1, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, + ACTIONS(4153), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, + ACTIONS(4155), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, + ACTIONS(4157), 1, sym_operator, - STATE(2546), 1, + STATE(2945), 1, sym_type_var, - STATE(3201), 1, + STATE(3190), 1, sym_primitive_compound, - STATE(3399), 2, + STATE(3388), 2, sym_primitive_reverse_atom, sym_primitive_reverse_prim, - [138426] = 11, + [143162] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(971), 10, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, sym_type_implicit_var, - ACTIONS(3609), 1, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + sym_operator, sym_id, - ACTIONS(3804), 1, + [143178] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4173), 10, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + sym_operator, + sym_id, + [143194] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4175), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3115), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138461] = 11, + sym_id, + [143210] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4177), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3226), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138496] = 11, + sym_id, + [143226] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4179), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3077), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138531] = 11, + sym_id, + [143242] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4181), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3241), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138566] = 11, + sym_id, + [143258] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(931), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3038), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138601] = 11, + sym_id, + [143274] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(973), 10, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3189), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138636] = 11, + sym_id, + [143290] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(973), 9, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3228), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138671] = 11, + sym_id, + [143305] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4179), 9, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3023), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138706] = 11, + sym_id, + [143320] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(971), 9, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3130), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138741] = 11, + sym_id, + [143335] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3599), 1, - sym_type_implicit_var, - ACTIONS(3609), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4173), 9, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2546), 1, - sym_type_var, - STATE(3060), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138776] = 11, + sym_id, + [143350] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3745), 1, - sym_type_implicit_var, - ACTIONS(3755), 1, - sym_id, - ACTIONS(3804), 1, + ACTIONS(4181), 9, anon_sym_LPAREN, - ACTIONS(3806), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, - ACTIONS(3808), 1, anon_sym_POUND_BANG, - ACTIONS(3810), 1, anon_sym_LBRACK, - ACTIONS(3812), 1, sym_operator, - STATE(2862), 1, - sym_type_var, - STATE(4725), 1, - sym_primitive_compound, - STATE(3399), 2, - sym_primitive_reverse_atom, - sym_primitive_reverse_prim, - [138811] = 2, + sym_id, + [143365] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3814), 10, + ACTIONS(4177), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, sym_operator, sym_id, - [138827] = 2, + [143380] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3816), 10, + ACTIONS(4175), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, sym_operator, sym_id, - [138843] = 2, + [143395] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3818), 10, + ACTIONS(931), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, sym_operator, sym_id, - [138859] = 2, + [143410] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(951), 10, + ACTIONS(4179), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138875] = 2, + [143424] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3820), 10, + ACTIONS(973), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138891] = 2, + [143438] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 10, + ACTIONS(971), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138907] = 2, - ACTIONS(9), 1, + [143452] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 10, + ACTIONS(4183), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4187), 1, + aux_sym_type_unit_token1, + ACTIONS(4189), 1, + sym_id, + ACTIONS(4185), 2, + anon_sym_SEMI_SEMI, anon_sym_PIPE, + STATE(3096), 3, + sym_type_unit, + sym_type_tuple, + aux_sym_data_repeat2, + [143474] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(931), 8, + anon_sym_LPAREN, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138923] = 2, + [143488] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3822), 10, + ACTIONS(4181), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138939] = 2, + [143502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4191), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + aux_sym_type_unit_token1, + ACTIONS(4199), 1, + sym_id, + ACTIONS(4194), 2, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [138954] = 2, + STATE(3093), 3, + sym_type_unit, + sym_type_tuple, + aux_sym_data_repeat2, + [143524] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(919), 9, + ACTIONS(4175), 8, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138969] = 2, + [143538] = 2, ACTIONS(9), 1, sym_comment, - ACTIONS(3822), 9, + ACTIONS(4177), 8, + anon_sym_LPAREN, + sym_type_implicit_var, + anon_sym_POUND_BANG_LPAREN, + anon_sym_POUND_BANG, + anon_sym_LBRACK, + anon_sym_SEMI, + sym_operator, + sym_id, + [143552] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 1, anon_sym_LPAREN, + ACTIONS(4187), 1, + aux_sym_type_unit_token1, + ACTIONS(4204), 1, + sym_id, + ACTIONS(4202), 2, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + STATE(3093), 3, + sym_type_unit, + sym_type_tuple, + aux_sym_data_repeat2, + [143574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + anon_sym_STAR, + ACTIONS(4212), 1, + anon_sym_self, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4210), 2, + anon_sym_as, + anon_sym_alias, + ACTIONS(4208), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [143596] = 2, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4173), 8, + anon_sym_LPAREN, sym_type_implicit_var, anon_sym_POUND_BANG_LPAREN, anon_sym_POUND_BANG, anon_sym_LBRACK, + anon_sym_SEMI, sym_operator, sym_id, - [138984] = 2, + [143610] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4216), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4218), 1, + anon_sym_LBRACE, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + sym_id, + STATE(3136), 1, + aux_sym_data_repeat1, + STATE(3529), 1, + aux_sym_data_repeat3, + [143635] = 6, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4226), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4230), 1, + sym_operator, + STATE(3152), 1, + aux_sym_fixity_repeat1, + STATE(3279), 1, + aux_sym_fixity_repeat2, + ACTIONS(4228), 3, + anon_sym_infix, + anon_sym_postfix, + anon_sym_prefix, + [143656] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + sym_id, + ACTIONS(4232), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4234), 1, + anon_sym_LBRACE, + ACTIONS(4236), 1, + anon_sym_EQ, + STATE(3099), 1, + aux_sym_data_repeat1, + STATE(3458), 1, + aux_sym_data_repeat3, + [143681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4240), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143705] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4242), 1, + sym_module_annotation, + ACTIONS(4244), 1, + sym_module_path, + ACTIONS(4246), 1, + anon_sym_DQUOTE, + STATE(3441), 1, + sym_module_attr, + STATE(4655), 1, + sym_string, + STATE(5107), 1, + sym_use_piece, + [143727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4248), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4250), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143751] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_module, + ACTIONS(4254), 1, + anon_sym_STAR, + ACTIONS(4256), 1, + anon_sym_RPAREN, + ACTIONS(4258), 1, + sym_id, + ACTIONS(4260), 1, + sym_qualified_id, + STATE(3455), 1, + sym_module_export, + [143773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4264), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(4272), 1, + anon_sym_COLON, + STATE(3487), 1, + aux_sym_handler_repeat1, + ACTIONS(4270), 3, + anon_sym_LBRACE, + anon_sym_DOT, + sym_id, + [143827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4274), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143851] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_module, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + sym_id, + ACTIONS(4284), 1, + sym_qualified_id, + STATE(3513), 1, + sym_module_export, + [143873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [143897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [143921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4298), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [143993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 1, + anon_sym_RPAREN, + ACTIONS(4304), 1, + sym_operator_id, + STATE(3602), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [144011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [144047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [144059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [144107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 1, + sym_id, + STATE(3136), 1, + aux_sym_data_repeat1, + ACTIONS(4322), 4, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_PIPE, + [144147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 9, + ACTIONS(4327), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2479), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [138999] = 2, + anon_sym_or, + anon_sym_LT_DASH, + [144171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4329), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 9, + ACTIONS(3979), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139014] = 2, + anon_sym_or, + anon_sym_LT_DASH, + [144207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 9, + ACTIONS(3983), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139029] = 2, - ACTIONS(9), 1, + anon_sym_or, + anon_sym_LT_DASH, + [144231] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 9, - anon_sym_LPAREN, + ACTIONS(4335), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4337), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4341), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4343), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4345), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 6, anon_sym_COMMA, anon_sym_RPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - sym_operator, - sym_id, - [139044] = 2, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + anon_sym_LT_DASH, + [144315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144327] = 4, ACTIONS(9), 1, sym_comment, - ACTIONS(3818), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, + ACTIONS(4351), 1, sym_operator, - sym_id, - [139059] = 2, - ACTIONS(9), 1, + STATE(3152), 1, + aux_sym_fixity_repeat1, + ACTIONS(4349), 4, + anon_sym_SEMI_SEMI, + anon_sym_infix, + anon_sym_postfix, + anon_sym_prefix, + [144343] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(951), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4354), 1, anon_sym_RPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - sym_operator, + ACTIONS(4356), 1, + sym_operator_id, + STATE(4422), 1, + sym_identifier, + ACTIONS(4306), 3, sym_id, - [139074] = 2, + sym_qualified_id, + sym_force_id, + [144361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 9, + ACTIONS(2429), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139089] = 2, + anon_sym_or, + anon_sym_LT_DASH, + [144421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 6, + ts_builtin_sym_end, + anon_sym_use, + anon_sym_data, + anon_sym_fixity, + anon_sym_let, + anon_sym_effect, + [144433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 9, + ACTIONS(4368), 1, anon_sym_COMMA, + ACTIONS(4370), 1, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139104] = 2, - ACTIONS(9), 1, + STATE(4388), 1, + aux_sym_primitive_type_repeat2, + STATE(4389), 1, + aux_sym_primitive_type_repeat1, + [144452] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(831), 9, + ACTIONS(4374), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4376), 4, + anon_sym_SEMI_SEMI, + anon_sym_PIPE, + aux_sym_type_unit_token1, + sym_id, + [144465] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - sym_operator, + STATE(4198), 1, + sym_identifier, + ACTIONS(4306), 3, sym_id, - [139119] = 2, - ACTIONS(9), 1, + sym_qualified_id, + sym_force_id, + [144480] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4380), 1, sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - sym_operator, + STATE(3836), 1, + sym_identifier, + ACTIONS(4306), 3, sym_id, - [139134] = 2, + sym_qualified_id, + sym_force_id, + [144495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 9, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139149] = 2, + ACTIONS(4382), 1, + anon_sym_RPAREN, + STATE(3436), 1, + aux_sym_primitive_type_repeat1, + STATE(3437), 1, + aux_sym_primitive_type_repeat2, + [144514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 9, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + ACTIONS(4386), 1, anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139164] = 2, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4240), 1, + aux_sym_handler_repeat3, + [144533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 9, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139179] = 2, + ACTIONS(4390), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4244), 1, + aux_sym_handler_repeat3, + [144552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 9, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139194] = 2, + ACTIONS(4392), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4249), 1, + aux_sym_handler_repeat3, + [144571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 9, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139209] = 2, + ACTIONS(4394), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4254), 1, + aux_sym_handler_repeat3, + [144590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139224] = 2, + ACTIONS(4396), 1, + sym_type_implicit_var, + STATE(3796), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [144605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 9, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139239] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3814), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4398), 1, anon_sym_RPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - sym_operator, - sym_id, - [139254] = 2, + STATE(4492), 1, + aux_sym_primitive_type_repeat1, + STATE(4493), 1, + aux_sym_primitive_type_repeat2, + [144624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 9, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_RBRACK, - anon_sym_in, - [139269] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(831), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139283] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3820), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139297] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(919), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139311] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3816), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139325] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(951), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139339] = 6, + ACTIONS(4400), 1, + anon_sym_RPAREN, + STATE(3852), 1, + aux_sym_primitive_type_repeat1, + STATE(3853), 1, + aux_sym_primitive_type_repeat2, + [144643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - ACTIONS(3856), 1, - aux_sym_type_unit_token1, - ACTIONS(3858), 1, - sym_id, - ACTIONS(3854), 2, + ACTIONS(4402), 4, anon_sym_SEMI_SEMI, anon_sym_PIPE, - STATE(2975), 3, - sym_type_unit, - sym_type_tuple, - aux_sym_data_repeat2, - [139361] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3814), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, + aux_sym_type_unit_token1, sym_id, - [139375] = 6, + [144656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3865), 1, - aux_sym_type_unit_token1, - ACTIONS(3868), 1, - sym_id, - ACTIONS(3863), 2, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - anon_sym_PIPE, - STATE(2971), 3, - sym_type_unit, - sym_type_tuple, - aux_sym_data_repeat2, - [139397] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3822), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139411] = 2, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3818), 8, - anon_sym_LPAREN, - sym_type_implicit_var, - anon_sym_POUND_BANG_LPAREN, - anon_sym_POUND_BANG, - anon_sym_LBRACK, - anon_sym_SEMI, - sym_operator, - sym_id, - [139425] = 6, + ACTIONS(4408), 1, + anon_sym_RBRACE, + STATE(3322), 1, + aux_sym_expression_repeat2, + STATE(4264), 1, + aux_sym_do_block_repeat1, + [144675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - anon_sym_STAR, - ACTIONS(3877), 1, - anon_sym_self, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(3875), 2, - anon_sym_as, - anon_sym_alias, - ACTIONS(3873), 3, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4410), 1, anon_sym_RBRACE, - [139447] = 6, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(3976), 1, + aux_sym_handler_repeat3, + [144694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_LPAREN, - ACTIONS(3856), 1, - aux_sym_type_unit_token1, - ACTIONS(3883), 1, - sym_id, - ACTIONS(3881), 2, - anon_sym_SEMI_SEMI, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, anon_sym_PIPE, - STATE(2971), 3, - sym_type_unit, - sym_type_tuple, - aux_sym_data_repeat2, - [139469] = 6, - ACTIONS(9), 1, + ACTIONS(4412), 1, + anon_sym_RPAREN, + STATE(3823), 1, + aux_sym_primitive_type_repeat2, + STATE(3826), 1, + aux_sym_primitive_type_repeat1, + [144713] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_SEMI_SEMI, - ACTIONS(3889), 1, - sym_operator, - STATE(2990), 1, - aux_sym_fixity_repeat1, - STATE(3220), 1, - aux_sym_fixity_repeat2, - ACTIONS(3887), 3, - anon_sym_infix, - anon_sym_postfix, - anon_sym_prefix, - [139490] = 8, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4414), 1, + anon_sym_RPAREN, + STATE(4207), 1, + aux_sym_primitive_type_repeat2, + STATE(4208), 1, + aux_sym_primitive_type_repeat1, + [144732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(3893), 1, - anon_sym_LBRACE, - ACTIONS(3895), 1, - anon_sym_EQ, - ACTIONS(3897), 1, - anon_sym_PIPE, - ACTIONS(3899), 1, + ACTIONS(4416), 1, + anon_sym_RBRACE, + STATE(3173), 1, + aux_sym_expression_repeat2, + STATE(4267), 1, + aux_sym_do_block_repeat1, + [144751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4418), 1, + sym_type_implicit_var, + STATE(3856), 1, + sym_identifier, + ACTIONS(4306), 3, sym_id, - STATE(3005), 1, - aux_sym_data_repeat1, - STATE(3547), 1, - aux_sym_data_repeat3, - [139515] = 8, + sym_qualified_id, + sym_force_id, + [144766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(3899), 1, - sym_id, - ACTIONS(3901), 1, - anon_sym_SEMI_SEMI, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_EQ, - STATE(2977), 1, - aux_sym_data_repeat1, - STATE(3495), 1, - aux_sym_data_repeat3, - [139540] = 5, + ACTIONS(4420), 1, + anon_sym_RPAREN, + STATE(3832), 1, + aux_sym_primitive_type_repeat1, + STATE(3833), 1, + aux_sym_primitive_type_repeat2, + [144785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3907), 1, - anon_sym_RBRACE, - ACTIONS(3909), 1, + ACTIONS(4422), 1, sym_type_implicit_var, - STATE(3565), 1, + STATE(4109), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139558] = 2, + [144800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 6, + ACTIONS(4368), 1, anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4424), 1, anon_sym_RPAREN, + STATE(3467), 1, + aux_sym_primitive_type_repeat1, + STATE(3468), 1, + aux_sym_primitive_type_repeat2, + [144819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, anon_sym_EQ, + ACTIONS(4428), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [139570] = 5, + ACTIONS(4430), 1, + anon_sym_COLON, + ACTIONS(4432), 1, + anon_sym_do, + STATE(3478), 1, + aux_sym_let_binding_repeat2, + [144838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_RBRACE, - ACTIONS(3915), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_RPAREN, + STATE(3812), 1, + aux_sym_primitive_type_repeat1, + STATE(3813), 1, + aux_sym_primitive_type_repeat2, + [144857] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_RPAREN, + STATE(4039), 1, + aux_sym_primitive_type_repeat2, + STATE(4040), 1, + aux_sym_primitive_type_repeat1, + [144876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, sym_type_implicit_var, - STATE(3543), 1, + STATE(3776), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139588] = 5, + [144891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_RBRACE, - ACTIONS(3919), 1, - sym_type_implicit_var, - STATE(3554), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_RPAREN, + STATE(4195), 1, + aux_sym_primitive_type_repeat2, + STATE(4196), 1, + aux_sym_primitive_type_repeat1, + [144910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 1, + sym_operator_id, + STATE(4653), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139606] = 5, + [144925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3921), 1, - anon_sym_RBRACE, - ACTIONS(3923), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4444), 1, + anon_sym_RPAREN, + STATE(3792), 1, + aux_sym_primitive_type_repeat1, + STATE(3793), 1, + aux_sym_primitive_type_repeat2, + [144944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, sym_type_implicit_var, - STATE(4115), 1, + STATE(4711), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139624] = 5, + [144959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(3927), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4448), 1, + anon_sym_RPAREN, + STATE(3491), 1, + aux_sym_primitive_type_repeat2, + STATE(3492), 1, + aux_sym_primitive_type_repeat1, + [144978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4450), 1, + anon_sym_RPAREN, + STATE(3932), 1, + aux_sym_primitive_type_repeat1, + STATE(3933), 1, + aux_sym_primitive_type_repeat2, + [144997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4452), 1, + anon_sym_RPAREN, + STATE(3508), 1, + aux_sym_primitive_type_repeat1, + STATE(3509), 1, + aux_sym_primitive_type_repeat2, + [145016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4454), 1, + anon_sym_RPAREN, + STATE(3772), 1, + aux_sym_primitive_type_repeat1, + STATE(3773), 1, + aux_sym_primitive_type_repeat2, + [145035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, sym_type_implicit_var, - STATE(3576), 1, + STATE(3876), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139642] = 5, + [145050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - anon_sym_RBRACE, - ACTIONS(3931), 1, + ACTIONS(4458), 1, sym_type_implicit_var, - STATE(3587), 1, + STATE(4022), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139660] = 5, + [145065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 1, - anon_sym_RBRACE, - ACTIONS(3935), 1, + ACTIONS(4460), 1, sym_type_implicit_var, - STATE(3848), 1, + STATE(3752), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139678] = 5, + [145080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, - anon_sym_RBRACE, - ACTIONS(3939), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4462), 1, + anon_sym_RPAREN, + STATE(4301), 1, + aux_sym_primitive_type_repeat2, + STATE(4302), 1, + aux_sym_primitive_type_repeat1, + [145099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4464), 1, + anon_sym_RPAREN, + STATE(3747), 1, + aux_sym_primitive_type_repeat1, + STATE(3748), 1, + aux_sym_primitive_type_repeat2, + [145118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, sym_type_implicit_var, - STATE(3598), 1, + STATE(3896), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139696] = 5, + [145133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_RBRACE, - ACTIONS(3943), 1, + ACTIONS(4468), 1, sym_type_implicit_var, - STATE(3585), 1, + STATE(4598), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139714] = 2, + [145148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 6, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [139726] = 4, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3947), 1, - sym_operator, - STATE(2990), 1, - aux_sym_fixity_repeat1, - ACTIONS(3945), 4, - anon_sym_SEMI_SEMI, - anon_sym_infix, - anon_sym_postfix, - anon_sym_prefix, - [139742] = 2, + ACTIONS(4470), 1, + anon_sym_RPAREN, + STATE(3950), 1, + aux_sym_primitive_type_repeat2, + STATE(3951), 1, + aux_sym_primitive_type_repeat1, + [145167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 6, + ACTIONS(4368), 1, anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4472), 1, anon_sym_RPAREN, - anon_sym_EQ, + STATE(4594), 1, + aux_sym_primitive_type_repeat2, + STATE(4595), 1, + aux_sym_primitive_type_repeat1, + [145186] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [139754] = 7, + ACTIONS(4474), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(3971), 1, + aux_sym_handler_repeat3, + [145205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - sym_module_annotation, - ACTIONS(3952), 1, + ACTIONS(4476), 1, sym_module_path, - ACTIONS(3954), 1, - anon_sym_DQUOTE, - STATE(3451), 1, - sym_module_attr, + ACTIONS(4478), 1, + anon_sym_RBRACE, STATE(4455), 1, - sym_string, - STATE(4831), 1, sym_use_piece, - [139776] = 5, + ACTIONS(4480), 2, + sym_operator_id, + sym_force_id, + [145222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4482), 1, anon_sym_RBRACE, - ACTIONS(3958), 1, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4056), 1, + aux_sym_handler_repeat3, + [145241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_RPAREN, + STATE(4317), 1, + aux_sym_primitive_type_repeat2, + STATE(4318), 1, + aux_sym_primitive_type_repeat1, + [145260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 1, sym_type_implicit_var, - STATE(3945), 1, + STATE(3717), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139794] = 5, + [145275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 1, + ACTIONS(4488), 1, + anon_sym_STAR, + ACTIONS(4492), 1, + anon_sym_LBRACE, + ACTIONS(4490), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, anon_sym_RBRACE, - ACTIONS(3962), 1, - sym_type_implicit_var, - STATE(3521), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [139812] = 5, + [145290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(4476), 1, + sym_module_path, + ACTIONS(4494), 1, anon_sym_RBRACE, - ACTIONS(3966), 1, + STATE(3525), 1, + sym_use_piece, + ACTIONS(4496), 2, + sym_operator_id, + sym_force_id, + [145307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, sym_type_implicit_var, - STATE(3510), 1, + STATE(3923), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139830] = 5, + [145322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 1, - anon_sym_RBRACE, - ACTIONS(3970), 1, + ACTIONS(4500), 1, sym_type_implicit_var, - STATE(3499), 1, + STATE(3443), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139848] = 5, + [145337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3972), 1, - anon_sym_RBRACE, - ACTIONS(3974), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4502), 1, + anon_sym_RPAREN, + STATE(3912), 1, + aux_sym_primitive_type_repeat1, + STATE(3913), 1, + aux_sym_primitive_type_repeat2, + [145356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, sym_type_implicit_var, - STATE(3682), 1, + STATE(4392), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139866] = 5, + [145371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4506), 1, anon_sym_RPAREN, - ACTIONS(3978), 1, - sym_operator_id, - STATE(3591), 1, + STATE(3729), 1, + aux_sym_primitive_type_repeat2, + STATE(3730), 1, + aux_sym_primitive_type_repeat1, + [145390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4064), 1, + aux_sym_handler_repeat3, + [145409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4510), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4068), 1, + aux_sym_handler_repeat3, + [145428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 1, + sym_type_implicit_var, + STATE(3916), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139884] = 2, + [145443] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4514), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4074), 1, + aux_sym_handler_repeat3, + [145462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4516), 1, + anon_sym_RBRACE, + STATE(3322), 1, + aux_sym_expression_repeat2, + STATE(4079), 1, + aux_sym_do_block_repeat1, + [145481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_SEMI_SEMI, + STATE(3220), 1, + aux_sym_fixity_repeat2, + ACTIONS(4520), 3, + anon_sym_infix, + anon_sym_postfix, + anon_sym_prefix, + [145496] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4523), 1, + anon_sym_RBRACE, + STATE(3261), 1, + aux_sym_expression_repeat2, + STATE(4479), 1, + aux_sym_do_block_repeat1, + [145515] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4525), 1, + anon_sym_RBRACE, + STATE(3219), 1, + aux_sym_expression_repeat2, + STATE(4081), 1, + aux_sym_do_block_repeat1, + [145534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 6, + ACTIONS(4368), 1, anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, anon_sym_RPAREN, + STATE(3712), 1, + aux_sym_primitive_type_repeat1, + STATE(3713), 1, + aux_sym_primitive_type_repeat2, + [145553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 5, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [139896] = 5, + sym_id, + [145564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - anon_sym_RBRACE, - ACTIONS(3982), 1, + ACTIONS(4531), 1, sym_type_implicit_var, - STATE(3532), 1, + STATE(3689), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139914] = 5, + [145579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4533), 1, anon_sym_RBRACE, - ACTIONS(3986), 1, + STATE(3232), 1, + aux_sym_expression_repeat2, + STATE(4165), 1, + aux_sym_do_block_repeat1, + [145598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_RPAREN, + STATE(4361), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [145613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_RPAREN, + STATE(3556), 1, + aux_sym_primitive_type_repeat1, + STATE(3557), 1, + aux_sym_primitive_type_repeat2, + [145632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, sym_type_implicit_var, - STATE(4001), 1, + STATE(3652), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139932] = 5, + [145647] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4541), 1, + anon_sym_RPAREN, + STATE(3684), 1, + aux_sym_primitive_type_repeat1, + STATE(3685), 1, + aux_sym_primitive_type_repeat2, + [145666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4430), 1, + aux_sym_handler_repeat3, + [145685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4545), 1, anon_sym_RBRACE, - ACTIONS(3990), 1, + STATE(3322), 1, + aux_sym_expression_repeat2, + STATE(4163), 1, + aux_sym_do_block_repeat1, + [145704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_module, + ACTIONS(4547), 1, + anon_sym_STAR, + ACTIONS(4549), 1, + sym_id, + ACTIONS(4551), 1, + sym_qualified_id, + STATE(4674), 1, + sym_module_export, + [145723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4553), 1, + anon_sym_RPAREN, + STATE(3575), 1, + aux_sym_primitive_type_repeat2, + STATE(3576), 1, + aux_sym_primitive_type_repeat1, + [145742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 1, sym_type_implicit_var, - STATE(4179), 1, + STATE(3936), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139950] = 2, + [145757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 6, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(4372), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [139962] = 5, + ACTIONS(4557), 1, + anon_sym_RPAREN, + STATE(3892), 1, + aux_sym_primitive_type_repeat1, + STATE(3893), 1, + aux_sym_primitive_type_repeat2, + [145776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4559), 1, anon_sym_RBRACE, - ACTIONS(3994), 1, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4434), 1, + aux_sym_handler_repeat3, + [145795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, sym_type_implicit_var, - STATE(3479), 1, + STATE(3474), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [139980] = 4, + [145810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4563), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(3980), 1, + aux_sym_handler_repeat3, + [145829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4565), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4448), 1, + aux_sym_handler_repeat3, + [145848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4567), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4157), 1, + aux_sym_handler_repeat3, + [145867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4569), 1, + anon_sym_RBRACE, + STATE(3322), 1, + aux_sym_expression_repeat2, + STATE(3989), 1, + aux_sym_do_block_repeat1, + [145886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - sym_id, - STATE(3005), 1, - aux_sym_data_repeat1, - ACTIONS(3996), 4, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, anon_sym_PIPE, - [139996] = 7, + ACTIONS(4571), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4440), 1, + aux_sym_handler_repeat3, + [145905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_module, - ACTIONS(4003), 1, + ACTIONS(4573), 1, anon_sym_STAR, - ACTIONS(4005), 1, - anon_sym_RPAREN, - ACTIONS(4007), 1, - sym_id, - ACTIONS(4009), 1, - sym_qualified_id, - STATE(3492), 1, - sym_module_export, - [140018] = 5, + ACTIONS(4577), 1, + anon_sym_LBRACE, + ACTIONS(4575), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [145920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, - anon_sym_RBRACE, - ACTIONS(4013), 1, + ACTIONS(4579), 1, sym_type_implicit_var, - STATE(3717), 1, + STATE(4305), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140036] = 2, + [145935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 6, + ACTIONS(4404), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [140048] = 5, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4581), 1, + anon_sym_RBRACE, + STATE(3242), 1, + aux_sym_expression_repeat2, + STATE(3992), 1, + aux_sym_do_block_repeat1, + [145954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4583), 1, anon_sym_RBRACE, - ACTIONS(4017), 1, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4149), 1, + aux_sym_handler_repeat3, + [145973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, sym_type_implicit_var, - STATE(3457), 1, + STATE(3604), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140066] = 5, + [145988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4476), 1, + sym_module_path, + ACTIONS(4587), 1, anon_sym_RBRACE, - ACTIONS(4021), 1, - sym_type_implicit_var, - STATE(4250), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, + STATE(3621), 1, + sym_use_piece, + ACTIONS(4589), 2, + sym_operator_id, sym_force_id, - [140084] = 7, + [146005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_module, - ACTIONS(4023), 1, - anon_sym_STAR, - ACTIONS(4025), 1, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4591), 1, anon_sym_RPAREN, - ACTIONS(4027), 1, - sym_id, - ACTIONS(4029), 1, - sym_qualified_id, - STATE(3525), 1, - sym_module_export, - [140106] = 2, + STATE(4402), 1, + aux_sym_primitive_type_repeat2, + STATE(4403), 1, + aux_sym_primitive_type_repeat1, + [146024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 6, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [140118] = 5, + ACTIONS(4593), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4146), 1, + aux_sym_handler_repeat3, + [146043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4595), 1, anon_sym_RBRACE, - ACTIONS(4033), 1, - sym_type_implicit_var, - STATE(3418), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [140136] = 2, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4346), 1, + aux_sym_handler_repeat3, + [146062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 6, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [140148] = 5, + ACTIONS(4597), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4142), 1, + aux_sym_handler_repeat3, + [146081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4599), 1, anon_sym_RBRACE, - ACTIONS(4037), 1, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4350), 1, + aux_sym_handler_repeat3, + [146100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, sym_type_implicit_var, - STATE(3894), 1, + STATE(3460), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140166] = 5, + [146115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(4603), 1, anon_sym_RPAREN, - ACTIONS(4041), 1, - sym_operator_id, - STATE(3845), 1, + STATE(4560), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140184] = 5, + [146130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4043), 1, - anon_sym_RBRACE, - ACTIONS(4045), 1, + ACTIONS(4605), 1, sym_type_implicit_var, - STATE(3752), 1, + STATE(3515), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2107), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [140214] = 2, + [146145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 6, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(4388), 1, anon_sym_PIPE, - anon_sym_or, - anon_sym_LT_DASH, - [140226] = 5, + ACTIONS(4607), 1, + anon_sym_RBRACE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4354), 1, + aux_sym_handler_repeat3, + [146164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_RBRACE, - ACTIONS(4049), 1, + ACTIONS(4609), 1, sym_type_implicit_var, - STATE(4056), 1, + STATE(3802), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140244] = 5, + [146179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4611), 1, anon_sym_RBRACE, - ACTIONS(4053), 1, - sym_type_implicit_var, - STATE(3939), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [140262] = 5, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(3985), 1, + aux_sym_handler_repeat3, + [146198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4613), 1, anon_sym_RBRACE, - ACTIONS(4057), 1, + STATE(3322), 1, + aux_sym_expression_repeat2, + STATE(4463), 1, + aux_sym_do_block_repeat1, + [146217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, sym_type_implicit_var, - STATE(3791), 1, + STATE(3541), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [140280] = 6, + [146232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4061), 1, - anon_sym_RPAREN, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - STATE(3715), 1, - aux_sym_primitive_type_repeat2, - STATE(3716), 1, + ACTIONS(4617), 1, + anon_sym_RPAREN, + STATE(3597), 1, aux_sym_primitive_type_repeat1, - [140299] = 2, + STATE(3598), 1, + aux_sym_primitive_type_repeat2, + [146251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [140310] = 6, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4619), 1, + anon_sym_RPAREN, + STATE(4118), 1, + aux_sym_primitive_type_repeat2, + STATE(4119), 1, + aux_sym_primitive_type_repeat1, + [146270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4071), 1, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(4621), 1, anon_sym_RBRACE, - STATE(3028), 1, - aux_sym_expression_repeat2, - STATE(3821), 1, - aux_sym_expression_repeat3, - [140329] = 6, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + STATE(4357), 1, + aux_sym_handler_repeat3, + [146289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3958), 1, - aux_sym_expression_repeat3, - [140348] = 6, + ACTIONS(4623), 1, + sym_type_implicit_var, + STATE(3816), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [146304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4075), 1, + ACTIONS(4625), 1, anon_sym_RBRACE, - STATE(3029), 1, + STATE(3322), 1, aux_sym_expression_repeat2, - STATE(3820), 1, - aux_sym_expression_repeat3, - [140367] = 6, + STATE(3866), 1, + aux_sym_do_block_repeat1, + [146323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4075), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3820), 1, - aux_sym_expression_repeat3, - [140386] = 6, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4627), 1, + anon_sym_RPAREN, + STATE(3632), 1, + aux_sym_primitive_type_repeat2, + STATE(3633), 1, + aux_sym_primitive_type_repeat1, + [146342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4077), 1, + ACTIONS(4629), 1, anon_sym_RBRACE, - STATE(3295), 1, + STATE(3322), 1, aux_sym_expression_repeat2, - STATE(3765), 1, - aux_sym_expression_repeat3, - [140405] = 6, + STATE(4360), 1, + aux_sym_do_block_repeat1, + [146361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(1001), 1, + anon_sym_LPAREN, + ACTIONS(4631), 4, anon_sym_SEMI_SEMI, - ACTIONS(4079), 1, - anon_sym_RBRACE, - STATE(3034), 1, - aux_sym_expression_repeat2, - STATE(3435), 1, - aux_sym_expression_repeat3, - [140424] = 6, + anon_sym_PIPE, + aux_sym_type_unit_token1, + sym_id, + [146374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(3033), 1, - aux_sym_expression_repeat2, - STATE(3765), 1, - aux_sym_expression_repeat3, - [140443] = 6, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(4633), 1, + anon_sym_RPAREN, + STATE(3645), 1, + aux_sym_primitive_type_repeat1, + STATE(3646), 1, + aux_sym_primitive_type_repeat2, + [146393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4635), 1, anon_sym_SEMI_SEMI, - ACTIONS(4081), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3412), 1, - aux_sym_expression_repeat3, - [140462] = 6, + STATE(3279), 1, + aux_sym_fixity_repeat2, + ACTIONS(4637), 3, + anon_sym_infix, + anon_sym_postfix, + anon_sym_prefix, + [146408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4083), 1, + ACTIONS(4639), 1, anon_sym_RBRACE, - STATE(3295), 1, + STATE(3269), 1, aux_sym_expression_repeat2, - STATE(3818), 1, - aux_sym_expression_repeat3, - [140481] = 6, + STATE(4362), 1, + aux_sym_do_block_repeat1, + [146427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4085), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3438), 1, - aux_sym_expression_repeat3, - [140500] = 6, + ACTIONS(4641), 1, + sym_type_implicit_var, + STATE(3563), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [146442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4087), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3861), 1, - aux_sym_expression_repeat3, - [140519] = 6, + ACTIONS(4643), 1, + sym_type_implicit_var, + STATE(3703), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [146457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4089), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4199), 1, - aux_sym_expression_repeat3, - [140538] = 6, + ACTIONS(4645), 1, + sym_type_implicit_var, + STATE(3625), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [146472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4091), 1, + ACTIONS(4647), 1, anon_sym_RBRACE, - STATE(3295), 1, + STATE(3267), 1, aux_sym_expression_repeat2, - STATE(3863), 1, - aux_sym_expression_repeat3, - [140557] = 6, + STATE(3868), 1, + aux_sym_do_block_repeat1, + [146491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4093), 1, + ACTIONS(4649), 1, anon_sym_RPAREN, - STATE(3943), 1, + STATE(3872), 1, aux_sym_primitive_type_repeat1, - STATE(3947), 1, + STATE(3873), 1, aux_sym_primitive_type_repeat2, - [140576] = 6, + [146510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4651), 1, anon_sym_SEMI_SEMI, - ACTIONS(4091), 1, - anon_sym_RBRACE, - STATE(3035), 1, - aux_sym_expression_repeat2, - STATE(3863), 1, - aux_sym_expression_repeat3, - [140595] = 6, + STATE(3220), 1, + aux_sym_fixity_repeat2, + ACTIONS(4653), 3, + anon_sym_infix, + anon_sym_postfix, + anon_sym_prefix, + [146525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4655), 1, + anon_sym_exclude, + ACTIONS(4657), 3, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4095), 1, anon_sym_RBRACE, - STATE(3032), 1, - aux_sym_expression_repeat2, - STATE(3411), 1, - aux_sym_expression_repeat3, - [140614] = 6, + [146537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4097), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3860), 1, - aux_sym_expression_repeat3, - [140633] = 6, - ACTIONS(3), 1, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4661), 1, + anon_sym_DOT, + ACTIONS(4663), 1, + sym_id, + STATE(3352), 1, + aux_sym_type_repeat1, + [146553] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4099), 1, - anon_sym_RBRACE, - STATE(3037), 1, - aux_sym_expression_repeat2, - STATE(3864), 1, - aux_sym_expression_repeat3, - [140652] = 6, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + STATE(3358), 1, + aux_sym_string_repeat1, + [146569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4095), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3411), 1, - aux_sym_expression_repeat3, - [140671] = 6, + ACTIONS(4671), 1, + anon_sym_RPAREN, + ACTIONS(4673), 3, + sym_operator_id, + sym_id, + sym_force_id, + [146581] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4675), 1, + anon_sym_DQUOTE, + ACTIONS(4677), 1, + aux_sym_string_token1, + ACTIONS(4679), 1, + sym__escape_sequence, + STATE(3288), 1, + aux_sym_string_repeat1, + [146597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4101), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3410), 1, - aux_sym_expression_repeat3, - [140690] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4681), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [140701] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4683), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4105), 1, - anon_sym_RPAREN, - STATE(3789), 1, - aux_sym_primitive_type_repeat2, - STATE(3790), 1, - aux_sym_primitive_type_repeat1, - [140720] = 6, + ACTIONS(4246), 1, + anon_sym_DQUOTE, + ACTIONS(4685), 1, + sym_module_path, + STATE(4655), 1, + sym_string, + STATE(5118), 1, + sym_module_attr, + [146645] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4687), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [146661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4101), 1, - anon_sym_RBRACE, - STATE(3043), 1, - aux_sym_expression_repeat2, - STATE(3410), 1, - aux_sym_expression_repeat3, - [140739] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4689), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4107), 1, - anon_sym_RBRACE, - STATE(3065), 1, - aux_sym_expression_repeat2, - STATE(3432), 1, - aux_sym_expression_repeat3, - [140758] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4691), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4109), 1, + ACTIONS(4693), 1, anon_sym_RPAREN, - STATE(4102), 1, - aux_sym_primitive_type_repeat2, - STATE(4103), 1, - aux_sym_primitive_type_repeat1, - [140777] = 6, + ACTIONS(4695), 3, + sym_operator_id, + sym_id, + sym_force_id, + [146705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + STATE(3305), 1, + aux_sym_expression_repeat2, + ACTIONS(4697), 2, anon_sym_SEMI_SEMI, - ACTIONS(4089), 1, anon_sym_RBRACE, - STATE(3056), 1, - aux_sym_expression_repeat2, - STATE(4199), 1, - aux_sym_expression_repeat3, - [140796] = 6, + [146719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4099), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3864), 1, - aux_sym_expression_repeat3, - [140815] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4699), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4111), 1, - anon_sym_RBRACE, - STATE(3051), 1, - aux_sym_expression_repeat2, - STATE(3867), 1, - aux_sym_expression_repeat3, - [140834] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4701), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4703), 4, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4113), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3959), 1, - aux_sym_expression_repeat3, - [140853] = 6, + anon_sym_in, + [146761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4115), 1, - anon_sym_RBRACE, - STATE(3044), 1, - aux_sym_expression_repeat2, - STATE(3409), 1, - aux_sym_expression_repeat3, - [140872] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4705), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4117), 1, - anon_sym_RBRACE, - STATE(3057), 1, - aux_sym_expression_repeat2, - STATE(4198), 1, - aux_sym_expression_repeat3, - [140891] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4707), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4117), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4198), 1, - aux_sym_expression_repeat3, - [140910] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4709), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4119), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4197), 1, - aux_sym_expression_repeat3, - [140929] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4711), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4119), 1, - anon_sym_RBRACE, - STATE(3063), 1, - aux_sym_expression_repeat2, - STATE(4197), 1, - aux_sym_expression_repeat3, - [140948] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4713), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(4428), 1, anon_sym_PIPE, - ACTIONS(4121), 1, - anon_sym_RPAREN, - STATE(4110), 1, - aux_sym_primitive_type_repeat2, - STATE(4111), 1, - aux_sym_primitive_type_repeat1, - [140967] = 6, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_do, + STATE(3697), 1, + aux_sym_let_binding_repeat2, + [146857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4123), 1, - anon_sym_RPAREN, - STATE(3419), 1, - aux_sym_primitive_type_repeat1, - STATE(3420), 1, - aux_sym_primitive_type_repeat2, - [140986] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4719), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [140997] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4721), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4723), 1, + anon_sym_exclude, + ACTIONS(4725), 3, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4127), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3871), 1, - aux_sym_expression_repeat3, - [141016] = 6, + [146901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + STATE(3322), 1, + aux_sym_expression_repeat2, + ACTIONS(4727), 2, anon_sym_SEMI_SEMI, - ACTIONS(4129), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4196), 1, - aux_sym_expression_repeat3, - [141035] = 6, + [146915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4115), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3409), 1, - aux_sym_expression_repeat3, - [141054] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4729), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4131), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3433), 1, - aux_sym_expression_repeat3, - [141073] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4731), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4733), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [146963] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4735), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [146979] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_DQUOTE, + ACTIONS(4739), 1, + aux_sym_string_token1, + ACTIONS(4741), 1, + sym__escape_sequence, + STATE(3309), 1, + aux_sym_string_repeat1, + [146995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4302), 1, + anon_sym_RPAREN, + ACTIONS(4743), 1, + anon_sym_exclude, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4133), 1, - anon_sym_RBRACE, - STATE(3064), 1, - aux_sym_expression_repeat2, - STATE(3407), 1, - aux_sym_expression_repeat3, - [141092] = 2, + STATE(3608), 1, + aux_sym_module_repeat2, + [147011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141103] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4747), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(3072), 1, - aux_sym_expression_repeat2, - STATE(3768), 1, - aux_sym_expression_repeat3, - [141122] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4749), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4085), 1, - anon_sym_RBRACE, - STATE(3086), 1, - aux_sym_expression_repeat2, - STATE(3438), 1, - aux_sym_expression_repeat3, - [141141] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4751), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4753), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4139), 1, - anon_sym_RBRACE, - STATE(3062), 1, - aux_sym_expression_repeat2, - STATE(3873), 1, - aux_sym_expression_repeat3, - [141160] = 6, + STATE(3315), 1, + aux_sym_handler_repeat1, + ACTIONS(4756), 2, + anon_sym_COLON, + sym_id, + [147073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4758), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4141), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3439), 1, - aux_sym_expression_repeat3, - [141179] = 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_LT_DASH, + [147083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4760), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4143), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3767), 1, - aux_sym_expression_repeat3, - [141198] = 2, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI, + [147093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141209] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4762), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4764), 1, + anon_sym_LPAREN, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(4768), 2, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4147), 1, - anon_sym_RBRACE, - STATE(3076), 1, - aux_sym_expression_repeat2, - STATE(3706), 1, - aux_sym_expression_repeat3, - [141228] = 6, + anon_sym_RPAREN, + [147123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4770), 4, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4149), 1, anon_sym_RBRACE, - STATE(3177), 1, - aux_sym_expression_repeat2, - STATE(4209), 1, - aux_sym_expression_repeat3, - [141247] = 6, + anon_sym_PIPE, + [147133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 1, + sym_id, + STATE(3321), 1, + aux_sym_expression_repeat1, + ACTIONS(4772), 2, + anon_sym_LBRACE, + anon_sym_DOT, + [147147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + STATE(3322), 1, + aux_sym_expression_repeat2, + ACTIONS(4780), 2, anon_sym_SEMI_SEMI, - ACTIONS(4151), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3763), 1, - aux_sym_expression_repeat3, - [141266] = 6, + [147161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_RPAREN, - STATE(4053), 1, - aux_sym_primitive_type_repeat2, - STATE(4054), 1, - aux_sym_primitive_type_repeat1, - [141285] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4388), 1, + anon_sym_PIPE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + ACTIONS(4784), 2, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4151), 1, anon_sym_RBRACE, - STATE(3081), 1, - aux_sym_expression_repeat2, - STATE(3763), 1, - aux_sym_expression_repeat3, - [141304] = 6, + [147191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(3089), 1, - aux_sym_expression_repeat2, - STATE(3442), 1, - aux_sym_expression_repeat3, - [141323] = 6, + ACTIONS(2651), 1, + aux_sym_integer_token1, + STATE(4829), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + [147205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4157), 1, - anon_sym_RBRACE, - STATE(3082), 1, - aux_sym_expression_repeat2, - STATE(3762), 1, - aux_sym_expression_repeat3, - [141342] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4786), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4157), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3762), 1, - aux_sym_expression_repeat3, - [141361] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4788), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4159), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3761), 1, - aux_sym_expression_repeat3, - [141380] = 2, + ACTIONS(4790), 1, + anon_sym_RPAREN, + ACTIONS(4792), 3, + sym_operator_id, + sym_id, + sym_force_id, + [147249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4794), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4796), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147281] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(4800), 1, + aux_sym_string_token1, + ACTIONS(4802), 1, + sym__escape_sequence, + STATE(3332), 1, + aux_sym_string_repeat1, + [147297] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4804), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [147313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141391] = 6, + ACTIONS(4806), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [147327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4810), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4159), 1, - anon_sym_RBRACE, - STATE(3085), 1, - aux_sym_expression_repeat2, - STATE(3761), 1, - aux_sym_expression_repeat3, - [141410] = 6, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI, + [147337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4812), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4163), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3760), 1, - aux_sym_expression_repeat3, - [141429] = 6, + anon_sym_EQ, + [147347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3442), 1, - aux_sym_expression_repeat3, - [141448] = 6, + ACTIONS(2651), 1, + aux_sym_integer_token1, + STATE(4786), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + [147361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4814), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4165), 1, - anon_sym_RBRACE, - STATE(3071), 1, - aux_sym_expression_repeat2, - STATE(3440), 1, - aux_sym_expression_repeat3, - [141467] = 2, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI, + [147371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141478] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4816), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4169), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3444), 1, - aux_sym_expression_repeat3, - [141497] = 3, + ACTIONS(2651), 1, + aux_sym_integer_token1, + STATE(4879), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + [147401] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(969), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4171), 4, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - aux_sym_type_unit_token1, + ACTIONS(4663), 1, sym_id, - [141510] = 2, + ACTIONS(4818), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141521] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4820), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141532] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4822), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + anon_sym_RPAREN, + ACTIONS(4826), 3, + sym_operator_id, + sym_id, + sym_force_id, + [147461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4828), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4830), 1, + anon_sym_exclude, + ACTIONS(4832), 3, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4177), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4130), 1, - aux_sym_expression_repeat3, - [141551] = 4, + [147489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, - sym_operator_id, - STATE(4503), 1, + ACTIONS(4834), 1, + anon_sym_PIPE, + STATE(3333), 1, + aux_sym_handler_repeat2, + ACTIONS(4836), 2, + sym_id, + sym_force_id, + [147503] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_DQUOTE, + ACTIONS(4840), 1, + aux_sym_string_token1, + ACTIONS(4842), 1, + sym__escape_sequence, + STATE(3282), 1, + aux_sym_string_repeat1, + [147519] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(4680), 1, sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4306), 3, sym_id, sym_qualified_id, sym_force_id, - [141566] = 6, - ACTIONS(3), 1, + [147531] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4181), 1, - anon_sym_RBRACE, - STATE(3093), 1, - aux_sym_expression_repeat2, - STATE(4131), 1, - aux_sym_expression_repeat3, - [141585] = 6, + ACTIONS(4844), 1, + anon_sym_DQUOTE, + ACTIONS(4846), 1, + aux_sym_string_token1, + ACTIONS(4848), 1, + sym__escape_sequence, + STATE(3351), 1, + aux_sym_string_repeat1, + [147547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4169), 1, - anon_sym_RBRACE, - STATE(3110), 1, - aux_sym_expression_repeat2, - STATE(3444), 1, - aux_sym_expression_repeat3, - [141604] = 6, + ACTIONS(4476), 1, + sym_module_path, + STATE(4742), 1, + sym_use_piece, + ACTIONS(4850), 2, + sym_operator_id, + sym_force_id, + [147561] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4852), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [147577] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4181), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4131), 1, - aux_sym_expression_repeat3, - [141623] = 6, + ACTIONS(4854), 1, + anon_sym_LPAREN, + ACTIONS(4857), 1, + anon_sym_DOT, + ACTIONS(4859), 1, + sym_id, + STATE(3352), 1, + aux_sym_type_repeat1, + [147593] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4862), 1, + anon_sym_DQUOTE, + ACTIONS(4864), 1, + aux_sym_string_token1, + ACTIONS(4866), 1, + sym__escape_sequence, + STATE(3355), 1, + aux_sym_string_repeat1, + [147609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4183), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4134), 1, - aux_sym_expression_repeat3, - [141642] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4868), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147625] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4870), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [147641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4183), 1, - anon_sym_RBRACE, - STATE(3097), 1, - aux_sym_expression_repeat2, - STATE(4134), 1, - aux_sym_expression_repeat3, - [141661] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4872), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - STATE(3161), 1, - aux_sym_expression_repeat2, - STATE(3949), 1, - aux_sym_expression_repeat3, - [141680] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4874), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147673] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_DQUOTE, + ACTIONS(4878), 1, + aux_sym_string_token1, + ACTIONS(4881), 1, + sym__escape_sequence, + STATE(3358), 1, + aux_sym_string_repeat1, + [147689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4886), 1, + anon_sym_PIPE, + STATE(3359), 1, + aux_sym_let_binding_repeat2, + ACTIONS(4884), 2, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4187), 1, anon_sym_RBRACE, - STATE(3098), 1, - aux_sym_expression_repeat2, - STATE(4135), 1, - aux_sym_expression_repeat3, - [141699] = 6, + [147703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4889), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4189), 1, - anon_sym_RBRACE, - STATE(3173), 1, - aux_sym_expression_repeat2, - STATE(4319), 1, - aux_sym_expression_repeat3, - [141718] = 6, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI, + [147713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4135), 1, - aux_sym_expression_repeat3, - [141737] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4891), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4191), 1, + ACTIONS(4893), 1, anon_sym_RPAREN, - STATE(4234), 1, - aux_sym_primitive_type_repeat2, - STATE(4236), 1, - aux_sym_primitive_type_repeat1, - [141756] = 6, + ACTIONS(4895), 3, + sym_operator_id, + sym_id, + sym_force_id, + [147741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4193), 1, - anon_sym_RBRACE, - STATE(3103), 1, - aux_sym_expression_repeat2, - STATE(4139), 1, - aux_sym_expression_repeat3, - [141775] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4897), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4195), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4141), 1, - aux_sym_expression_repeat3, - [141794] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4899), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4197), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4066), 1, - aux_sym_expression_repeat3, - [141813] = 3, + ACTIONS(4901), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4903), 2, + sym_id, + sym_force_id, + [147787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4199), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4201), 4, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - aux_sym_type_unit_token1, + ACTIONS(4663), 1, sym_id, - [141826] = 5, + ACTIONS(4906), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - ACTIONS(4205), 1, - anon_sym_RBRACE, - STATE(3862), 1, - sym_use_piece, - ACTIONS(4207), 2, + ACTIONS(4908), 1, + anon_sym_RPAREN, + ACTIONS(4910), 3, sym_operator_id, + sym_id, sym_force_id, - [141843] = 6, + [147815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4209), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3446), 1, - aux_sym_expression_repeat3, - [141862] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4912), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141873] = 6, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4745), 1, + anon_sym_COMMA, + ACTIONS(4914), 1, + anon_sym_exclude, + STATE(3499), 1, + aux_sym_module_repeat2, + [147847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4916), 4, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4213), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3960), 1, - aux_sym_expression_repeat3, - [141892] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_RPAREN, - STATE(3750), 1, - aux_sym_primitive_type_repeat2, - STATE(3751), 1, - aux_sym_primitive_type_repeat1, - [141911] = 2, + [147857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141922] = 6, + STATE(4830), 1, + sym_identifier, + ACTIONS(4306), 3, + sym_id, + sym_qualified_id, + sym_force_id, + [147869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4219), 1, - anon_sym_RPAREN, - STATE(3458), 1, - aux_sym_primitive_type_repeat1, - STATE(3459), 1, - aux_sym_primitive_type_repeat2, - [141941] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4918), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [141952] = 6, + ACTIONS(4920), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_DOT, + ACTIONS(4924), 1, + sym_id, + STATE(3321), 1, + aux_sym_expression_repeat1, + [147901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4223), 1, - anon_sym_RBRACE, - STATE(3107), 1, - aux_sym_expression_repeat2, - STATE(4067), 1, - aux_sym_expression_repeat3, - [141971] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4926), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4213), 1, - anon_sym_RBRACE, - STATE(3053), 1, - aux_sym_expression_repeat2, - STATE(3960), 1, - aux_sym_expression_repeat3, - [141990] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4928), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_RPAREN, - STATE(3892), 1, - aux_sym_primitive_type_repeat2, - STATE(3893), 1, - aux_sym_primitive_type_repeat1, - [142009] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4930), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142020] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4932), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3821), 1, - aux_sym_expression_repeat3, - [142039] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4934), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142050] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4936), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [147997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4231), 1, - anon_sym_RBRACE, - STATE(3125), 1, - aux_sym_expression_repeat2, - STATE(3474), 1, - aux_sym_expression_repeat3, - [142069] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4938), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RPAREN, - STATE(3801), 1, - sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4940), 1, + anon_sym_PIPE, + STATE(3383), 1, + aux_sym_handler_repeat2, + ACTIONS(4942), 2, sym_id, - sym_qualified_id, sym_force_id, - [142084] = 6, + [148027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4235), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3476), 1, - aux_sym_expression_repeat3, - [142103] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4237), 1, - anon_sym_RBRACE, - STATE(3127), 1, - aux_sym_expression_repeat2, - STATE(3480), 1, - aux_sym_expression_repeat3, - [142122] = 6, + ACTIONS(4946), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [148057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4239), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3483), 1, - aux_sym_expression_repeat3, - [142141] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4948), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4239), 1, - anon_sym_RBRACE, - STATE(3135), 1, - aux_sym_expression_repeat2, - STATE(3483), 1, - aux_sym_expression_repeat3, - [142160] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4950), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148089] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4952), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [148105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4241), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142171] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4954), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4956), 4, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4243), 1, anon_sym_RPAREN, - STATE(3475), 1, - aux_sym_primitive_type_repeat2, - STATE(3477), 1, - aux_sym_primitive_type_repeat1, - [142190] = 6, + anon_sym_PIPE, + anon_sym_SEMI, + [148131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4223), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4067), 1, - aux_sym_expression_repeat3, - [142209] = 6, + ACTIONS(4958), 1, + anon_sym_PIPE, + STATE(3396), 1, + aux_sym_handler_repeat2, + ACTIONS(4960), 2, + sym_id, + sym_force_id, + [148145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4245), 1, - anon_sym_RBRACE, - STATE(3143), 1, - aux_sym_expression_repeat2, - STATE(3487), 1, - aux_sym_expression_repeat3, - [142228] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4962), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4247), 1, - anon_sym_RBRACE, - STATE(3137), 1, - aux_sym_expression_repeat2, - STATE(4023), 1, - aux_sym_expression_repeat3, - [142247] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4964), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4249), 1, - anon_sym_RBRACE, - STATE(3106), 1, - aux_sym_expression_repeat2, - STATE(4142), 1, - aux_sym_expression_repeat3, - [142266] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4966), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4245), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3487), 1, - aux_sym_expression_repeat3, - [142285] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4968), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4251), 1, - anon_sym_RBRACE, - STATE(3112), 1, - aux_sym_expression_repeat2, - STATE(3962), 1, - aux_sym_expression_repeat3, - [142304] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4970), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4253), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4022), 1, - aux_sym_expression_repeat3, - [142323] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4972), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4255), 1, - anon_sym_RBRACE, - STATE(3142), 1, - aux_sym_expression_repeat2, - STATE(3733), 1, - aux_sym_expression_repeat3, - [142342] = 6, + ACTIONS(4974), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [148255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4257), 1, - anon_sym_RBRACE, - STATE(3140), 1, - aux_sym_expression_repeat2, - STATE(4020), 1, - aux_sym_expression_repeat3, - [142361] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4976), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3949), 1, - aux_sym_expression_repeat3, - [142380] = 6, + ACTIONS(4978), 1, + anon_sym_PIPE, + STATE(3400), 1, + aux_sym_handler_repeat2, + ACTIONS(4980), 2, + sym_id, + sym_force_id, + [148285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(3121), 1, - aux_sym_expression_repeat2, - STATE(3823), 1, - aux_sym_expression_repeat3, - [142399] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4982), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4261), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3732), 1, - aux_sym_expression_repeat3, - [142418] = 6, - ACTIONS(3), 1, + ACTIONS(4984), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [148315] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4263), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3489), 1, - aux_sym_expression_repeat3, - [142437] = 6, - ACTIONS(3), 1, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(4986), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [148331] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4265), 1, - anon_sym_RBRACE, - STATE(3146), 1, - aux_sym_expression_repeat2, - STATE(3730), 1, - aux_sym_expression_repeat3, - [142456] = 2, + ACTIONS(4988), 1, + anon_sym_DQUOTE, + ACTIONS(4990), 1, + aux_sym_string_token1, + ACTIONS(4992), 1, + sym__escape_sequence, + STATE(3401), 1, + aux_sym_string_repeat1, + [148347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142467] = 6, + ACTIONS(2651), 1, + aux_sym_integer_token1, + STATE(4864), 1, + sym_integer, + ACTIONS(2649), 2, + sym_hex_integer, + sym_octet_integer, + [148361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4269), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3728), 1, - aux_sym_expression_repeat3, - [142486] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(4994), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, - sym_type_implicit_var, - STATE(4561), 1, - sym_identifier, - ACTIONS(3911), 3, + ACTIONS(4996), 1, + anon_sym_PIPE, + STATE(3406), 1, + aux_sym_handler_repeat2, + ACTIONS(4998), 2, sym_id, - sym_qualified_id, sym_force_id, - [142501] = 6, + [148391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5000), 1, anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_RPAREN, - STATE(4245), 1, - aux_sym_primitive_type_repeat2, - STATE(4246), 1, - aux_sym_primitive_type_repeat1, - [142520] = 6, - ACTIONS(3), 1, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [148405] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4269), 1, - anon_sym_RBRACE, - STATE(3152), 1, - aux_sym_expression_repeat2, - STATE(3728), 1, - aux_sym_expression_repeat3, - [142539] = 6, - ACTIONS(3), 1, + ACTIONS(5002), 1, + anon_sym_DQUOTE, + ACTIONS(5004), 1, + aux_sym_string_token1, + ACTIONS(5006), 1, + sym__escape_sequence, + STATE(3386), 1, + aux_sym_string_repeat1, + [148421] = 5, + ACTIONS(9), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(3026), 1, - aux_sym_expression_repeat2, - STATE(3959), 1, - aux_sym_expression_repeat3, - [142558] = 6, + ACTIONS(4667), 1, + aux_sym_string_token1, + ACTIONS(4669), 1, + sym__escape_sequence, + ACTIONS(5008), 1, + anon_sym_DQUOTE, + STATE(3358), 1, + aux_sym_string_repeat1, + [148437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4275), 1, - anon_sym_RBRACE, - STATE(3153), 1, - aux_sym_expression_repeat2, - STATE(3727), 1, - aux_sym_expression_repeat3, - [142577] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(5010), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4275), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3727), 1, - aux_sym_expression_repeat3, - [142596] = 6, + ACTIONS(5012), 1, + anon_sym_PIPE, + STATE(3414), 1, + aux_sym_handler_repeat2, + ACTIONS(5014), 2, + sym_id, + sym_force_id, + [148467] = 5, + ACTIONS(9), 1, + sym_comment, + ACTIONS(5016), 1, + anon_sym_DQUOTE, + ACTIONS(5018), 1, + aux_sym_string_token1, + ACTIONS(5020), 1, + sym__escape_sequence, + STATE(3408), 1, + aux_sym_string_repeat1, + [148483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4277), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3726), 1, - aux_sym_expression_repeat3, - [142615] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(5022), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4279), 1, - anon_sym_RBRACE, - STATE(3036), 1, - aux_sym_expression_repeat2, - STATE(4202), 1, - aux_sym_expression_repeat3, - [142634] = 6, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + ACTIONS(5024), 1, + anon_sym_DOT, + STATE(3352), 1, + aux_sym_type_repeat1, + [148515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4277), 1, - anon_sym_RBRACE, - STATE(3157), 1, - aux_sym_expression_repeat2, - STATE(3726), 1, - aux_sym_expression_repeat3, - [142653] = 6, + ACTIONS(5026), 1, + anon_sym_PIPE, + STATE(3365), 1, + aux_sym_handler_repeat2, + ACTIONS(4808), 2, + sym_id, + sym_force_id, + [148529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5028), 4, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4263), 1, - anon_sym_RBRACE, - STATE(3162), 1, - aux_sym_expression_repeat2, - STATE(3489), 1, - aux_sym_expression_repeat3, - [142672] = 6, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI, + [148539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4281), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3725), 1, - aux_sym_expression_repeat3, - [142691] = 6, + ACTIONS(5032), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [148552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4283), 1, - anon_sym_RBRACE, - STATE(3163), 1, - aux_sym_expression_repeat2, - STATE(4017), 1, + ACTIONS(5036), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [142710] = 6, + [148565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4285), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5040), 1, + anon_sym_in, + STATE(3424), 1, aux_sym_expression_repeat2, - STATE(3490), 1, - aux_sym_expression_repeat3, - [142729] = 3, + [148578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4287), 4, + ACTIONS(5044), 1, + anon_sym_STAR, + ACTIONS(5046), 1, anon_sym_SEMI_SEMI, - anon_sym_PIPE, - aux_sym_type_unit_token1, - sym_id, - [142742] = 6, + [148591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4283), 1, + ACTIONS(5050), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4017), 1, - aux_sym_expression_repeat3, - [142761] = 6, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [148604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4289), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3491), 1, - aux_sym_expression_repeat3, - [142780] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [148617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4016), 1, - aux_sym_expression_repeat3, - [142799] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5058), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [148630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5058), 1, + anon_sym_RBRACK, + STATE(3426), 1, + aux_sym_expression_repeat4, + [148643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4293), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5060), 1, + anon_sym_in, + STATE(4485), 1, aux_sym_expression_repeat2, - STATE(3902), 1, - aux_sym_expression_repeat3, - [142818] = 2, + [148656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142829] = 6, + ACTIONS(5062), 3, + sym_operator_id, + sym_id, + sym_force_id, + [148665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(3164), 1, - aux_sym_expression_repeat2, - STATE(3903), 1, - aux_sym_expression_repeat3, - [142848] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5064), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [148678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3903), 1, - aux_sym_expression_repeat3, - [142867] = 6, + ACTIONS(5066), 1, + anon_sym_DOT, + ACTIONS(5068), 1, + sym_id, + STATE(3373), 1, + aux_sym_expression_repeat1, + [148691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(5072), 1, + anon_sym_RPAREN, + STATE(3637), 1, + aux_sym_type_tuple_repeat1, + [148704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, + anon_sym_STAR, + ACTIONS(5078), 1, anon_sym_SEMI_SEMI, - ACTIONS(4299), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3904), 1, - aux_sym_expression_repeat3, - [142886] = 6, + [148717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4299), 1, - anon_sym_RBRACE, - STATE(3167), 1, - aux_sym_expression_repeat2, - STATE(3904), 1, + ACTIONS(5082), 1, + anon_sym_RPAREN, + STATE(3438), 1, aux_sym_expression_repeat3, - [142905] = 2, + [148730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142916] = 2, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_PIPE, + STATE(3439), 1, + aux_sym_let_binding_repeat1, + [148743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [142927] = 6, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5084), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [148756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - STATE(3159), 1, - aux_sym_expression_repeat2, - STATE(3494), 1, + ACTIONS(5086), 1, + anon_sym_do, + STATE(3440), 1, aux_sym_expression_repeat3, - [142946] = 6, + [148769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4304), 1, - aux_sym_expression_repeat3, - [142965] = 6, + ACTIONS(5088), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [148782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4309), 1, + ACTIONS(5090), 1, anon_sym_RBRACE, - STATE(3269), 1, - aux_sym_expression_repeat2, - STATE(4284), 1, - aux_sym_expression_repeat3, - [142984] = 6, + STATE(3444), 1, + aux_sym_type_effect_suffix_repeat1, + [148795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5092), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [148808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4311), 1, - anon_sym_RBRACE, - STATE(3168), 1, - aux_sym_expression_repeat2, - STATE(3905), 1, - aux_sym_expression_repeat3, - [143003] = 6, + ACTIONS(5092), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [148821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - STATE(3186), 1, - aux_sym_expression_repeat2, - STATE(4016), 1, + ACTIONS(5094), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [143022] = 6, + [148834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4313), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4206), 1, - aux_sym_expression_repeat3, - [143041] = 6, + ACTIONS(5096), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [148847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4305), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3494), 1, + ACTIONS(5098), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [143060] = 4, + [148860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - anon_sym_SEMI_SEMI, - STATE(3220), 1, - aux_sym_fixity_repeat2, - ACTIONS(4317), 3, - anon_sym_infix, - anon_sym_postfix, - anon_sym_prefix, - [143075] = 6, + ACTIONS(4244), 1, + sym_module_path, + ACTIONS(5100), 1, + sym_module_annotation, + STATE(5098), 1, + sym_use_piece, + [148873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4319), 1, + ACTIONS(5102), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3825), 1, - aux_sym_expression_repeat3, - [143094] = 6, + STATE(3448), 1, + aux_sym_record_type_repeat1, + [148886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4311), 1, + ACTIONS(5104), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3905), 1, - aux_sym_expression_repeat3, - [143113] = 6, + STATE(3449), 1, + aux_sym_type_effect_suffix_repeat1, + [148899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4321), 1, + ACTIONS(5104), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3496), 1, - aux_sym_expression_repeat3, - [143132] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [148912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(3178), 1, - aux_sym_expression_repeat2, - STATE(3496), 1, - aux_sym_expression_repeat3, - [143151] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5106), 1, + anon_sym_RBRACK, + STATE(3450), 1, + aux_sym_expression_repeat4, + [148925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4323), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5108), 1, + anon_sym_in, + STATE(3452), 1, aux_sym_expression_repeat2, - STATE(4069), 1, - aux_sym_expression_repeat3, - [143170] = 2, - ACTIONS(3), 1, + [148938] = 4, + ACTIONS(9), 1, sym_comment, - ACTIONS(4325), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [143181] = 6, + ACTIONS(5110), 1, + anon_sym__, + ACTIONS(5112), 1, + sym_operator, + STATE(3472), 1, + aux_sym_fixity_repeat1, + [148951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4327), 1, + ACTIONS(5114), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4014), 1, - aux_sym_expression_repeat3, - [143200] = 6, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [148964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4329), 1, + ACTIONS(5116), 1, anon_sym_RBRACE, - STATE(3181), 1, - aux_sym_expression_repeat2, - STATE(3907), 1, - aux_sym_expression_repeat3, - [143219] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [148977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4331), 1, - anon_sym_RBRACE, - STATE(3182), 1, - aux_sym_expression_repeat2, - STATE(3497), 1, - aux_sym_expression_repeat3, - [143238] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5118), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [148990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4333), 1, - anon_sym_RPAREN, - STATE(4078), 1, - aux_sym_primitive_type_repeat1, - STATE(4092), 1, - aux_sym_primitive_type_repeat2, - [143257] = 6, + ACTIONS(5118), 1, + anon_sym_RBRACK, + STATE(3454), 1, + aux_sym_expression_repeat4, + [149003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4335), 1, - anon_sym_RPAREN, - STATE(3500), 1, - aux_sym_primitive_type_repeat1, - STATE(3501), 1, - aux_sym_primitive_type_repeat2, - [143276] = 2, + ACTIONS(5120), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [149016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4337), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [143287] = 6, + ACTIONS(5122), 1, + anon_sym_LPAREN, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + sym_module_id, + [149029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4339), 1, - anon_sym_RBRACE, - STATE(3180), 1, - aux_sym_expression_repeat2, - STATE(3826), 1, - aux_sym_expression_repeat3, - [143306] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5128), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [149042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4331), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3497), 1, - aux_sym_expression_repeat3, - [143325] = 6, + STATE(3499), 1, + aux_sym_module_repeat2, + [149055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4341), 1, + ACTIONS(5130), 1, anon_sym_RPAREN, - STATE(4165), 1, - aux_sym_primitive_type_repeat2, - STATE(4166), 1, - aux_sym_primitive_type_repeat1, - [143344] = 2, + STATE(4327), 1, + aux_sym_type_tuple_repeat1, + [149068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4343), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [143355] = 2, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5132), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [143366] = 6, + ACTIONS(4216), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4222), 1, + anon_sym_PIPE, + STATE(3531), 1, + aux_sym_data_repeat3, + [149094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4323), 1, + ACTIONS(5134), 1, anon_sym_RBRACE, - STATE(3131), 1, - aux_sym_expression_repeat2, - STATE(4069), 1, - aux_sym_expression_repeat3, - [143385] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4347), 1, + ACTIONS(5134), 1, anon_sym_RBRACE, - STATE(3193), 1, - aux_sym_expression_repeat2, - STATE(3507), 1, - aux_sym_expression_repeat3, - [143404] = 6, + STATE(3421), 1, + aux_sym_type_effect_suffix_repeat1, + [149120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4349), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3909), 1, + ACTIONS(5136), 1, + anon_sym_RPAREN, + STATE(3469), 1, aux_sym_expression_repeat3, - [143423] = 6, + [149133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5138), 1, anon_sym_PIPE, - ACTIONS(4351), 1, - anon_sym_RPAREN, - STATE(4176), 1, - aux_sym_primitive_type_repeat2, - STATE(4177), 1, - aux_sym_primitive_type_repeat1, - [143442] = 6, + STATE(3470), 1, + aux_sym_let_binding_repeat1, + [149146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4353), 1, - anon_sym_RPAREN, - STATE(3511), 1, - aux_sym_primitive_type_repeat1, - STATE(3512), 1, - aux_sym_primitive_type_repeat2, - [143461] = 6, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5138), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [149159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4355), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3516), 1, + ACTIONS(5140), 1, + anon_sym_do, + STATE(3471), 1, aux_sym_expression_repeat3, - [143480] = 6, + [149172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4357), 1, - anon_sym_RBRACE, - STATE(3184), 1, - aux_sym_expression_repeat2, - STATE(4070), 1, - aux_sym_expression_repeat3, - [143499] = 6, + ACTIONS(5142), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [149185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5144), 1, + anon_sym_RBRACE, + STATE(3475), 1, + aux_sym_type_effect_suffix_repeat1, + [149198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4359), 1, + ACTIONS(5146), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [149211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5146), 1, anon_sym_RPAREN, - STATE(3522), 1, - aux_sym_primitive_type_repeat1, - STATE(3523), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [143518] = 6, + [149224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4361), 1, - anon_sym_RBRACE, - STATE(3202), 1, - aux_sym_expression_repeat2, - STATE(3518), 1, + ACTIONS(5148), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [143537] = 6, + [149237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4357), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4070), 1, - aux_sym_expression_repeat3, - [143556] = 6, + ACTIONS(5150), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [149250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4363), 1, - anon_sym_RBRACE, - STATE(3236), 1, - aux_sym_expression_repeat2, - STATE(4292), 1, + ACTIONS(5152), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [143575] = 6, - ACTIONS(3), 1, + [149263] = 4, + ACTIONS(9), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4365), 1, - anon_sym_RPAREN, - STATE(3533), 1, - aux_sym_primitive_type_repeat1, - STATE(3534), 1, - aux_sym_primitive_type_repeat2, - [143594] = 6, + ACTIONS(5154), 1, + anon_sym__, + ACTIONS(5156), 1, + sym_operator, + STATE(3537), 1, + aux_sym_fixity_repeat1, + [149276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4367), 1, + ACTIONS(5158), 1, anon_sym_RBRACE, - STATE(3206), 1, - aux_sym_expression_repeat2, - STATE(4074), 1, - aux_sym_expression_repeat3, - [143613] = 6, + STATE(3479), 1, + aux_sym_record_type_repeat1, + [149289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4369), 1, + ACTIONS(5160), 1, anon_sym_RBRACE, - STATE(3214), 1, - aux_sym_expression_repeat2, - STATE(3698), 1, - aux_sym_expression_repeat3, - [143632] = 6, + STATE(3480), 1, + aux_sym_type_effect_suffix_repeat1, + [149302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4371), 1, + ACTIONS(5160), 1, anon_sym_RBRACE, - STATE(3199), 1, - aux_sym_expression_repeat2, - STATE(3910), 1, - aux_sym_expression_repeat3, - [143651] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4373), 1, - anon_sym_RPAREN, - STATE(3544), 1, - aux_sym_primitive_type_repeat1, - STATE(3545), 1, - aux_sym_primitive_type_repeat2, - [143670] = 4, + ACTIONS(5162), 1, + anon_sym_RBRACK, + STATE(3481), 1, + aux_sym_expression_repeat4, + [149328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4375), 1, - anon_sym_SEMI_SEMI, - STATE(3213), 1, - aux_sym_fixity_repeat2, - ACTIONS(4377), 3, - anon_sym_infix, - anon_sym_postfix, - anon_sym_prefix, - [143685] = 6, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5164), 1, + anon_sym_in, + STATE(3483), 1, + aux_sym_expression_repeat2, + [149341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4428), 1, + anon_sym_PIPE, + ACTIONS(5166), 1, anon_sym_SEMI_SEMI, - ACTIONS(4380), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3697), 1, - aux_sym_expression_repeat3, - [143704] = 6, + STATE(3547), 1, + aux_sym_let_binding_repeat2, + [149354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4382), 1, + ACTIONS(5168), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4077), 1, - aux_sym_expression_repeat3, - [143723] = 6, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [149367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4384), 1, + ACTIONS(5170), 1, anon_sym_RBRACE, - STATE(3218), 1, - aux_sym_expression_repeat2, - STATE(3695), 1, - aux_sym_expression_repeat3, - [143742] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4386), 1, - anon_sym_RPAREN, - STATE(3555), 1, - aux_sym_primitive_type_repeat1, - STATE(3556), 1, - aux_sym_primitive_type_repeat2, - [143761] = 6, + ACTIONS(5172), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [149393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5172), 1, + anon_sym_RBRACK, + STATE(3485), 1, + aux_sym_expression_repeat4, + [149406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4388), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5174), 1, + anon_sym_in, + STATE(4485), 1, aux_sym_expression_repeat2, - STATE(3693), 1, - aux_sym_expression_repeat3, - [143780] = 6, + [149419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4390), 1, - anon_sym_RPAREN, - STATE(3566), 1, - aux_sym_primitive_type_repeat1, - STATE(3567), 1, - aux_sym_primitive_type_repeat2, - [143799] = 4, + ACTIONS(5176), 1, + anon_sym_COLON, + STATE(3561), 1, + aux_sym_handler_repeat1, + [149432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_SEMI_SEMI, - STATE(3213), 1, - aux_sym_fixity_repeat2, - ACTIONS(4394), 3, - anon_sym_infix, - anon_sym_postfix, - anon_sym_prefix, - [143814] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5178), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [149445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4388), 1, + ACTIONS(5180), 1, anon_sym_RBRACE, - STATE(3224), 1, - aux_sym_expression_repeat2, - STATE(3693), 1, - aux_sym_expression_repeat3, - [143833] = 2, + STATE(3420), 1, + aux_sym_record_type_repeat1, + [149458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [143844] = 6, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_COLON, + STATE(3315), 1, + aux_sym_handler_repeat1, + [149471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4398), 1, - anon_sym_RBRACE, - STATE(3225), 1, - aux_sym_expression_repeat2, - STATE(3692), 1, + ACTIONS(5184), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [143863] = 6, + [149484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4398), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3692), 1, - aux_sym_expression_repeat3, - [143882] = 6, + ACTIONS(5186), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [149497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4400), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3563), 1, + ACTIONS(5188), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [143901] = 6, + [149510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5190), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [149523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4402), 1, + ACTIONS(5190), 1, anon_sym_RPAREN, - STATE(3577), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - STATE(3578), 1, - aux_sym_primitive_type_repeat2, - [143920] = 6, + [149536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4400), 1, + ACTIONS(5192), 1, anon_sym_RBRACE, - STATE(3229), 1, - aux_sym_expression_repeat2, - STATE(3563), 1, - aux_sym_expression_repeat3, - [143939] = 6, + STATE(3459), 1, + aux_sym_type_effect_suffix_repeat1, + [149549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5194), 1, + anon_sym_exclude, + ACTIONS(4768), 2, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, anon_sym_RPAREN, - STATE(3844), 1, - aux_sym_primitive_type_repeat2, - STATE(3847), 1, - aux_sym_primitive_type_repeat1, - [143958] = 6, + [149560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4406), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3690), 1, + ACTIONS(5196), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [149573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5198), 1, + anon_sym_do, + STATE(3488), 1, aux_sym_expression_repeat3, - [143977] = 6, + [149586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4408), 1, + ACTIONS(5200), 1, anon_sym_RPAREN, - STATE(3999), 1, - aux_sym_primitive_type_repeat2, - STATE(4000), 1, - aux_sym_primitive_type_repeat1, - [143996] = 5, + STATE(4043), 1, + aux_sym_type_tuple_repeat1, + [149599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - ACTIONS(4410), 1, - anon_sym_RBRACE, - STATE(3605), 1, - sym_use_piece, - ACTIONS(4412), 2, - sym_operator_id, - sym_force_id, - [144013] = 6, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5202), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [149612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, + ACTIONS(4302), 1, anon_sym_RPAREN, - STATE(3588), 1, - aux_sym_primitive_type_repeat1, - STATE(3589), 1, - aux_sym_primitive_type_repeat2, - [144032] = 4, + ACTIONS(4745), 1, + anon_sym_COMMA, + STATE(3590), 1, + aux_sym_module_repeat2, + [149625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_STAR, - ACTIONS(4420), 1, - anon_sym_LBRACE, - ACTIONS(4418), 3, + ACTIONS(5030), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [144047] = 2, + ACTIONS(5202), 1, + anon_sym_PIPE, + STATE(3489), 1, + aux_sym_let_binding_repeat1, + [149638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144058] = 2, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_RPAREN, + STATE(3490), 1, + aux_sym_expression_repeat3, + [149651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144069] = 6, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5206), 1, + anon_sym_RPAREN, + STATE(3510), 1, + aux_sym_expression_repeat3, + [149664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4426), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4286), 1, - aux_sym_expression_repeat3, - [144088] = 2, + ACTIONS(5208), 1, + anon_sym_PIPE, + STATE(3511), 1, + aux_sym_let_binding_repeat1, + [149677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144099] = 2, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5208), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [149690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144110] = 2, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + anon_sym_do, + STATE(3512), 1, + aux_sym_expression_repeat3, + [149703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144121] = 6, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5212), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [149716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5214), 1, + anon_sym_RBRACE, + STATE(3516), 1, + aux_sym_type_effect_suffix_repeat1, + [149729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4434), 1, + ACTIONS(5216), 1, anon_sym_RPAREN, - STATE(3599), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - STATE(3600), 1, - aux_sym_primitive_type_repeat2, - [144140] = 6, + [149742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4436), 1, + ACTIONS(5216), 1, anon_sym_RPAREN, - STATE(3582), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - STATE(3584), 1, - aux_sym_primitive_type_repeat1, - [144159] = 6, + [149755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4251), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3962), 1, + ACTIONS(5218), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [144178] = 6, + [149768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5220), 1, anon_sym_PIPE, - ACTIONS(4438), 1, - anon_sym_RPAREN, - STATE(3679), 1, - aux_sym_primitive_type_repeat2, - STATE(3680), 1, - aux_sym_primitive_type_repeat1, - [144197] = 6, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [149781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4440), 1, - anon_sym_RBRACE, - STATE(3242), 1, - aux_sym_expression_repeat2, - STATE(3966), 1, + ACTIONS(5222), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [144216] = 6, + [149794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_module, - ACTIONS(4442), 1, - anon_sym_STAR, - ACTIONS(4444), 1, - sym_id, - ACTIONS(4446), 1, - sym_qualified_id, - STATE(4474), 1, - sym_module_export, - [144235] = 6, + ACTIONS(4302), 1, + anon_sym_RPAREN, + ACTIONS(4745), 1, + anon_sym_COMMA, + STATE(3608), 1, + aux_sym_module_repeat2, + [149807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4448), 1, + ACTIONS(5224), 1, anon_sym_RBRACE, - STATE(3215), 1, - aux_sym_expression_repeat2, - STATE(4079), 1, - aux_sym_expression_repeat3, - [144254] = 6, + STATE(3520), 1, + aux_sym_record_type_repeat1, + [149820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4450), 1, + ACTIONS(5226), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3969), 1, - aux_sym_expression_repeat3, - [144273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4452), 1, - anon_sym_EQ, - ACTIONS(4454), 1, - anon_sym_PIPE, - ACTIONS(4456), 1, - anon_sym_COLON, - ACTIONS(4458), 1, - anon_sym_do, - STATE(3506), 1, - aux_sym_let_binding_repeat2, - [144292] = 6, + STATE(3521), 1, + aux_sym_type_effect_suffix_repeat1, + [149833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4426), 1, + ACTIONS(5226), 1, anon_sym_RBRACE, - STATE(3262), 1, - aux_sym_expression_repeat2, - STATE(4286), 1, - aux_sym_expression_repeat3, - [144311] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4460), 1, - anon_sym_RBRACE, - STATE(3247), 1, - aux_sym_expression_repeat2, - STATE(3970), 1, - aux_sym_expression_repeat3, - [144330] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5228), 1, + anon_sym_RBRACK, + STATE(3522), 1, + aux_sym_expression_repeat4, + [149859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4462), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5230), 1, + anon_sym_in, + STATE(3524), 1, aux_sym_expression_repeat2, - STATE(3643), 1, - aux_sym_expression_repeat3, - [144349] = 6, + [149872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4575), 3, anon_sym_COMMA, - ACTIONS(4069), 1, anon_sym_SEMI_SEMI, - ACTIONS(4464), 1, anon_sym_RBRACE, - STATE(3251), 1, - aux_sym_expression_repeat2, - STATE(3644), 1, - aux_sym_expression_repeat3, - [144368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 1, - anon_sym_RPAREN, - STATE(4138), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [144383] = 2, + [149881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144394] = 6, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5232), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [149894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4464), 1, + ACTIONS(5234), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3644), 1, - aux_sym_expression_repeat3, - [144413] = 6, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [149907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5236), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [149920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5236), 1, + anon_sym_RBRACK, + STATE(3526), 1, + aux_sym_expression_repeat4, + [149933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4470), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5238), 1, + anon_sym_in, + STATE(4485), 1, aux_sym_expression_repeat2, - STATE(3645), 1, - aux_sym_expression_repeat3, - [144432] = 6, + [149946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4470), 1, + ACTIONS(4587), 1, anon_sym_RBRACE, - STATE(3255), 1, - aux_sym_expression_repeat2, - STATE(3645), 1, - aux_sym_expression_repeat3, - [144451] = 2, + ACTIONS(5240), 1, + anon_sym_COMMA, + STATE(3627), 1, + aux_sym_use_piece_repeat1, + [149959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 5, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5056), 1, anon_sym_PIPE, + ACTIONS(5242), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [149972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, sym_id, - [144462] = 6, + STATE(3368), 1, + aux_sym_type_repeat1, + [149985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(5244), 1, + anon_sym_RPAREN, + STATE(4121), 1, + aux_sym_type_tuple_repeat1, + [149998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(5246), 1, anon_sym_SEMI_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - STATE(3256), 1, - aux_sym_expression_repeat2, - STATE(3646), 1, - aux_sym_expression_repeat3, - [144481] = 2, + STATE(3531), 1, + aux_sym_data_repeat3, + [150011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144492] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5248), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [150024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(5250), 1, anon_sym_SEMI_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3646), 1, - aux_sym_expression_repeat3, - [144511] = 6, + ACTIONS(5252), 1, + anon_sym_PIPE, + STATE(3531), 1, + aux_sym_data_repeat3, + [150037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4309), 1, - anon_sym_RBRACE, - STATE(3295), 1, + ACTIONS(5255), 1, + anon_sym_in, + STATE(4485), 1, aux_sym_expression_repeat2, - STATE(4284), 1, - aux_sym_expression_repeat3, - [144530] = 2, + [150050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144541] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5257), 1, + anon_sym_RBRACK, + STATE(3530), 1, + aux_sym_expression_repeat4, + [150063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4480), 1, - anon_sym_RPAREN, - STATE(3942), 1, - aux_sym_primitive_type_repeat2, - STATE(3944), 1, - aux_sym_primitive_type_repeat1, - [144560] = 2, + ACTIONS(5257), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [150076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144571] = 2, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5259), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [150089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144582] = 6, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5261), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [150102] = 4, + ACTIONS(9), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym__, + ACTIONS(5263), 1, + sym_operator, + STATE(3537), 1, + aux_sym_fixity_repeat1, + [150115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4486), 1, - anon_sym_RBRACE, - STATE(3261), 1, + ACTIONS(5266), 1, + anon_sym_in, + STATE(3532), 1, aux_sym_expression_repeat2, - STATE(3649), 1, - aux_sym_expression_repeat3, - [144601] = 2, + [150128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 5, - ts_builtin_sym_end, - anon_sym_use, - anon_sym_data, - anon_sym_fixity, - anon_sym_let, - [144612] = 6, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5268), 1, + anon_sym_RBRACK, + STATE(3534), 1, + aux_sym_expression_repeat4, + [150141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_PIPE, + ACTIONS(5272), 1, + anon_sym_forall, + ACTIONS(5274), 1, + sym_id, + [150154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4490), 1, + ACTIONS(5132), 1, anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4282), 1, - aux_sym_expression_repeat3, - [144631] = 6, + STATE(3535), 1, + aux_sym_type_effect_suffix_repeat1, + [150167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4490), 1, - anon_sym_RBRACE, - STATE(3276), 1, - aux_sym_expression_repeat2, - STATE(4282), 1, - aux_sym_expression_repeat3, - [144650] = 5, + ACTIONS(5278), 1, + anon_sym_EQ, + STATE(3687), 1, + aux_sym_let_binding_repeat1, + [150180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - ACTIONS(4492), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5280), 1, anon_sym_RBRACE, STATE(3536), 1, - sym_use_piece, - ACTIONS(4494), 2, - sym_operator_id, - sym_force_id, - [144667] = 4, + aux_sym_record_type_repeat1, + [150193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4500), 1, - anon_sym_LBRACE, - ACTIONS(4498), 3, + ACTIONS(5284), 1, + anon_sym_or, + ACTIONS(5282), 2, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [144682] = 6, + anon_sym_EQ, + [150204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4087), 1, - anon_sym_RBRACE, - STATE(3041), 1, - aux_sym_expression_repeat2, - STATE(3861), 1, - aux_sym_expression_repeat3, - [144701] = 6, + ACTIONS(5286), 1, + anon_sym_RPAREN, + STATE(3578), 1, + aux_sym_type_tuple_repeat1, + [150217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4502), 1, - anon_sym_RBRACE, - STATE(3275), 1, - aux_sym_expression_repeat2, - STATE(3655), 1, + ACTIONS(5288), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [144720] = 6, + [150230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, + ACTIONS(4884), 1, anon_sym_SEMI_SEMI, - ACTIONS(4504), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(3654), 1, - aux_sym_expression_repeat3, - [144739] = 6, + ACTIONS(5290), 1, + anon_sym_PIPE, + STATE(3547), 1, + aux_sym_let_binding_repeat2, + [150243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4506), 1, - anon_sym_RBRACE, - STATE(3295), 1, - aux_sym_expression_repeat2, - STATE(4280), 1, - aux_sym_expression_repeat3, - [144758] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_DQUOTE, - ACTIONS(4510), 1, - aux_sym_string_token1, - ACTIONS(4512), 1, - sym__escape_sequence, - STATE(3333), 1, - aux_sym_string_repeat1, - [144774] = 3, + ACTIONS(5293), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [150256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5295), 1, anon_sym_RPAREN, - ACTIONS(4516), 3, - sym_operator_id, - sym_id, - sym_force_id, - [144786] = 5, + STATE(4584), 1, + aux_sym_expression_repeat3, + [150269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_DOT, - ACTIONS(4522), 1, - sym_id, - STATE(3355), 1, - aux_sym_type_repeat1, - [144802] = 5, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5297), 1, + anon_sym_RPAREN, + STATE(3558), 1, + aux_sym_expression_repeat3, + [150282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4524), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [144818] = 5, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5299), 1, + anon_sym_PIPE, + STATE(3559), 1, + aux_sym_let_binding_repeat1, + [150295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(4526), 1, + ACTIONS(5299), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [144834] = 3, + STATE(3321), 1, + aux_sym_expression_repeat1, + [150308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - anon_sym_exclude, - ACTIONS(4530), 3, + ACTIONS(5034), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [144846] = 5, + ACTIONS(5301), 1, + anon_sym_do, + STATE(3560), 1, + aux_sym_expression_repeat3, + [150321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4532), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [144862] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5303), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [150334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3295), 1, - aux_sym_expression_repeat2, - ACTIONS(4534), 2, - anon_sym_SEMI_SEMI, + ACTIONS(5305), 1, anon_sym_RBRACE, - [144876] = 5, - ACTIONS(9), 1, + STATE(3564), 1, + aux_sym_type_effect_suffix_repeat1, + [150347] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_DQUOTE, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - STATE(3288), 1, - aux_sym_string_repeat1, - [144892] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5307), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [150360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, - aux_sym_integer_token1, - STATE(4606), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - [144906] = 5, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5307), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [150373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 1, - anon_sym_DQUOTE, - ACTIONS(4542), 1, - sym_module_path, - STATE(4455), 1, - sym_string, - STATE(4841), 1, - sym_module_attr, - [144922] = 5, - ACTIONS(9), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5309), 1, + anon_sym_RPAREN, + STATE(4584), 1, + aux_sym_expression_repeat3, + [150386] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, - anon_sym_DQUOTE, - ACTIONS(4546), 1, - aux_sym_string_token1, - ACTIONS(4549), 1, - sym__escape_sequence, - STATE(3288), 1, - aux_sym_string_repeat1, - [144938] = 4, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5311), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [150399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - STATE(3284), 1, - aux_sym_expression_repeat2, - ACTIONS(4552), 2, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [144952] = 5, - ACTIONS(9), 1, + ACTIONS(5313), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [150412] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_DQUOTE, - ACTIONS(4556), 1, - aux_sym_string_token1, - ACTIONS(4558), 1, - sym__escape_sequence, - STATE(3285), 1, - aux_sym_string_repeat1, - [144968] = 4, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(5315), 1, + anon_sym_COLON, + STATE(3315), 1, + aux_sym_handler_repeat1, + [150425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, - aux_sym_integer_token1, - STATE(4672), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - [144982] = 3, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5317), 1, + anon_sym_RBRACE, + STATE(3568), 1, + aux_sym_record_type_repeat1, + [150438] = 4, ACTIONS(3), 1, sym_comment, - STATE(4311), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [144994] = 3, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5319), 1, + anon_sym_RBRACE, + STATE(3569), 1, + aux_sym_type_effect_suffix_repeat1, + [150451] = 4, ACTIONS(3), 1, sym_comment, - STATE(4440), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145006] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5319), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [150464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4560), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145022] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5321), 1, + anon_sym_RBRACK, + STATE(3570), 1, + aux_sym_expression_repeat4, + [150477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - STATE(3295), 1, + ACTIONS(5323), 1, + anon_sym_in, + STATE(3572), 1, aux_sym_expression_repeat2, - ACTIONS(4565), 2, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [145036] = 3, + [150490] = 2, ACTIONS(3), 1, sym_comment, - STATE(4214), 1, - sym_identifier, - ACTIONS(3911), 3, + ACTIONS(5325), 3, + anon_sym_COMMA, + anon_sym_COLON, sym_id, - sym_qualified_id, - sym_force_id, - [145048] = 5, + [150499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4567), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145064] = 2, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5327), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [150512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 4, + ACTIONS(5052), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [150525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - [145074] = 5, + ACTIONS(5331), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [150538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4571), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145090] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5331), 1, + anon_sym_RBRACK, + STATE(3574), 1, + aux_sym_expression_repeat4, + [150551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4573), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145106] = 5, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5333), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [150564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_RPAREN, - ACTIONS(4575), 1, - anon_sym_exclude, - ACTIONS(4577), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - STATE(3517), 1, - aux_sym_module_repeat2, - [145122] = 3, + ACTIONS(5335), 1, + anon_sym_COLON, + STATE(3706), 1, + aux_sym_handler_repeat1, + [150577] = 4, ACTIONS(3), 1, sym_comment, - STATE(4288), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145134] = 2, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5337), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [150590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 4, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - anon_sym_in, - [145144] = 5, + ACTIONS(5339), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [150603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4581), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145160] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5339), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [150616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3295), 1, - aux_sym_expression_repeat2, - ACTIONS(4583), 2, - anon_sym_SEMI_SEMI, + ACTIONS(5341), 1, anon_sym_RBRACE, - [145174] = 4, + STATE(3457), 1, + aux_sym_type_effect_suffix_repeat1, + [150629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, - anon_sym_LPAREN, - ACTIONS(4587), 1, - anon_sym_STAR, - ACTIONS(4589), 2, + ACTIONS(5070), 1, anon_sym_COMMA, + ACTIONS(5343), 1, anon_sym_RPAREN, - [145188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4591), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145204] = 5, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [150642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4593), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145220] = 5, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5345), 1, + anon_sym_do, + STATE(3546), 1, + aux_sym_expression_repeat3, + [150655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(4595), 1, + ACTIONS(5347), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145236] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(4356), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145248] = 5, + STATE(3321), 1, + aux_sym_expression_repeat1, + [150668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4597), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145264] = 3, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5347), 1, + anon_sym_PIPE, + STATE(3548), 1, + aux_sym_let_binding_repeat1, + [150681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5349), 1, anon_sym_RPAREN, - ACTIONS(4601), 3, - sym_operator_id, - sym_id, - sym_force_id, - [145276] = 5, + STATE(3549), 1, + aux_sym_expression_repeat3, + [150694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4603), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145292] = 5, + ACTIONS(4535), 1, + anon_sym_RPAREN, + ACTIONS(5351), 1, + anon_sym_COMMA, + STATE(3707), 1, + aux_sym_module_export_repeat2, + [150707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4605), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145308] = 5, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5353), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [150720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4607), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145324] = 5, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5355), 1, + anon_sym_RPAREN, + STATE(3732), 1, + aux_sym_type_tuple_repeat1, + [150733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4609), 1, - anon_sym_exclude, - STATE(3594), 1, - aux_sym_module_repeat2, - [145340] = 3, + ACTIONS(5357), 1, + anon_sym_RPAREN, + STATE(3495), 1, + aux_sym_type_tuple_repeat1, + [150746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, + ACTIONS(5359), 1, anon_sym_exclude, - ACTIONS(4613), 3, + ACTIONS(5361), 2, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [145352] = 5, + anon_sym_RPAREN, + [150757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4615), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145368] = 3, + ACTIONS(5363), 1, + anon_sym_exclude, + ACTIONS(5365), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [150768] = 4, ACTIONS(3), 1, sym_comment, - STATE(4307), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145380] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5367), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [150781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4617), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145396] = 5, + ACTIONS(5365), 1, + anon_sym_RPAREN, + ACTIONS(5369), 1, + anon_sym_COMMA, + STATE(3590), 1, + aux_sym_module_repeat2, + [150794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4619), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145412] = 5, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5372), 1, + anon_sym_RPAREN, + STATE(3599), 1, + aux_sym_expression_repeat3, + [150807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4621), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145428] = 5, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5374), 1, + anon_sym_PIPE, + STATE(3600), 1, + aux_sym_let_binding_repeat1, + [150820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(4623), 1, + ACTIONS(5374), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145444] = 5, + STATE(3321), 1, + aux_sym_expression_repeat1, + [150833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4625), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145460] = 2, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5376), 1, + anon_sym_do, + STATE(3601), 1, + aux_sym_expression_repeat3, + [150846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 4, + ACTIONS(5070), 1, anon_sym_COMMA, + ACTIONS(5378), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI, - [145470] = 4, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [150859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3305), 1, - aux_sym_expression_repeat2, - ACTIONS(4629), 2, - anon_sym_SEMI_SEMI, + ACTIONS(5380), 1, anon_sym_RBRACE, - [145484] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4631), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145500] = 5, + STATE(3605), 1, + aux_sym_type_effect_suffix_repeat1, + [150872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4633), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145516] = 5, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5382), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [150885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4635), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145532] = 3, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5382), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [150898] = 4, ACTIONS(3), 1, sym_comment, - STATE(4370), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145544] = 5, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5384), 1, + anon_sym_RPAREN, + STATE(4584), 1, + aux_sym_expression_repeat3, + [150911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4637), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145560] = 5, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5386), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [150924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4639), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145576] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4641), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [145592] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4643), 1, - anon_sym_DQUOTE, - ACTIONS(4645), 1, - aux_sym_string_token1, - ACTIONS(4647), 1, - sym__escape_sequence, - STATE(3336), 1, - aux_sym_string_repeat1, - [145608] = 5, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5388), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [150937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4649), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145624] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4651), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [145640] = 5, + ACTIONS(4354), 1, + anon_sym_RPAREN, + ACTIONS(5390), 1, + anon_sym_COMMA, + STATE(4420), 1, + aux_sym_module_repeat3, + [150950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4653), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145656] = 3, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5392), 1, + anon_sym_RBRACE, + STATE(3609), 1, + aux_sym_record_type_repeat1, + [150963] = 4, ACTIONS(3), 1, sym_comment, - STATE(4447), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145668] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5394), 1, + anon_sym_RBRACE, + STATE(3610), 1, + aux_sym_type_effect_suffix_repeat1, + [150976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4655), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145684] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4657), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [145700] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5394), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [150989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4659), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145716] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4661), 1, - anon_sym_DQUOTE, - ACTIONS(4663), 1, - aux_sym_string_token1, - ACTIONS(4665), 1, - sym__escape_sequence, - STATE(3340), 1, - aux_sym_string_repeat1, - [145732] = 2, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_RBRACK, + STATE(3611), 1, + aux_sym_expression_repeat4, + [151002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 4, + ACTIONS(5038), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, + ACTIONS(5398), 1, anon_sym_in, - [145742] = 3, + STATE(3613), 1, + aux_sym_expression_repeat2, + [151015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 1, + ACTIONS(4354), 1, anon_sym_RPAREN, - ACTIONS(4671), 3, - sym_operator_id, - sym_id, - sym_force_id, - [145754] = 5, + ACTIONS(4745), 1, + anon_sym_COMMA, + STATE(3590), 1, + aux_sym_module_repeat2, + [151028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4673), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145770] = 5, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5400), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [151041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4675), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145786] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5402), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4677), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145802] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4679), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145818] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5404), 1, + anon_sym_RBRACK, + STATE(3615), 1, + aux_sym_expression_repeat4, + [151080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4681), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145834] = 5, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5406), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [151093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4683), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145850] = 5, + ACTIONS(5408), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [151102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4685), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145866] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5410), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4687), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145882] = 5, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5412), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [151128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5414), 1, + anon_sym_RBRACK, + STATE(3589), 1, + aux_sym_expression_repeat4, + [151141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4689), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145898] = 3, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5414), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151154] = 4, ACTIONS(3), 1, sym_comment, - STATE(4414), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145910] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5416), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_DOT, - ACTIONS(4696), 1, - sym_id, - STATE(3355), 1, - aux_sym_type_repeat1, - [145926] = 3, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5418), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [151180] = 4, ACTIONS(3), 1, sym_comment, - STATE(3659), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145938] = 5, + ACTIONS(4478), 1, + anon_sym_RBRACE, + ACTIONS(5240), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_use_piece_repeat1, + [151193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4699), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145954] = 3, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5420), 1, + anon_sym_in, + STATE(3616), 1, + aux_sym_expression_repeat2, + [151206] = 4, ACTIONS(3), 1, sym_comment, - STATE(4326), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [145966] = 2, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5422), 1, + anon_sym_RBRACK, + STATE(3618), 1, + aux_sym_expression_repeat4, + [151219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 4, + ACTIONS(5052), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI, - [145976] = 5, + ACTIONS(5424), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4703), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [145992] = 2, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5424), 1, + anon_sym_RBRACE, + STATE(3619), 1, + aux_sym_type_effect_suffix_repeat1, + [151245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 4, + ACTIONS(5048), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI, - [146002] = 4, + ACTIONS(5426), 1, + anon_sym_RBRACE, + STATE(3620), 1, + aux_sym_record_type_repeat1, + [151258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, - aux_sym_integer_token1, - STATE(4749), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - [146016] = 2, + ACTIONS(4478), 1, + anon_sym_RBRACE, + ACTIONS(5240), 1, + anon_sym_COMMA, + STATE(4460), 1, + aux_sym_use_piece_repeat1, + [151271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 4, + ACTIONS(5034), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5428), 1, anon_sym_do, - [146026] = 5, + STATE(4387), 1, + aux_sym_expression_repeat3, + [151284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5430), 1, anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_EQ, - ACTIONS(4711), 1, - anon_sym_do, - STATE(3724), 1, - aux_sym_let_binding_repeat2, - [146042] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4713), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [146058] = 3, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [151297] = 4, ACTIONS(3), 1, sym_comment, - STATE(4432), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146070] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4715), 1, - anon_sym_DQUOTE, - ACTIONS(4717), 1, - aux_sym_string_token1, - ACTIONS(4719), 1, - sym__escape_sequence, - STATE(3369), 1, - aux_sym_string_repeat1, - [146086] = 5, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5432), 1, + anon_sym_RPAREN, + STATE(4584), 1, + aux_sym_expression_repeat3, + [151310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4721), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146102] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4723), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [146118] = 5, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(4608), 1, + aux_sym_type_tuple_repeat1, + [151323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4725), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146134] = 3, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [151336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5436), 1, anon_sym_RPAREN, - ACTIONS(4729), 3, - sym_operator_id, - sym_id, - sym_force_id, - [146146] = 3, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [151349] = 4, ACTIONS(3), 1, sym_comment, - STATE(4340), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146158] = 2, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(3434), 1, + aux_sym_type_tuple_repeat1, + [151362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 4, + ACTIONS(5052), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI, - [146168] = 5, + ACTIONS(5440), 1, + anon_sym_RBRACE, + STATE(3624), 1, + aux_sym_type_effect_suffix_repeat1, + [151375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4733), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146184] = 3, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5444), 1, + anon_sym_SEMI_SEMI, + STATE(4476), 1, + aux_sym_handler_type_repeat1, + [151388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4735), 1, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5446), 1, anon_sym_RPAREN, - ACTIONS(4737), 3, - sym_operator_id, - sym_id, - sym_force_id, - [146196] = 5, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [151401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4739), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146212] = 5, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5448), 1, + anon_sym_do, + STATE(3628), 1, + aux_sym_expression_repeat3, + [151414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4741), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146228] = 3, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5450), 1, + anon_sym_RPAREN, + STATE(3647), 1, + aux_sym_expression_repeat3, + [151427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_exclude, - ACTIONS(4745), 3, + ACTIONS(5030), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [146240] = 5, + ACTIONS(5452), 1, + anon_sym_PIPE, + STATE(3648), 1, + aux_sym_let_binding_repeat1, + [151440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(4747), 1, + ACTIONS(5452), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146256] = 4, + STATE(3321), 1, + aux_sym_expression_repeat1, + [151453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - STATE(4486), 1, - sym_use_piece, - ACTIONS(4749), 2, - sym_operator_id, - sym_force_id, - [146270] = 3, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5454), 1, + anon_sym_do, + STATE(3649), 1, + aux_sym_expression_repeat3, + [151466] = 4, ACTIONS(3), 1, sym_comment, - STATE(4399), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146282] = 3, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5456), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [151479] = 4, ACTIONS(3), 1, sym_comment, - STATE(4413), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146294] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5458), 1, + anon_sym_RBRACE, + STATE(3653), 1, + aux_sym_type_effect_suffix_repeat1, + [151492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4751), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146310] = 2, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [151505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 4, + ACTIONS(4368), 1, anon_sym_COMMA, + ACTIONS(5460), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI, - [146320] = 3, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [151518] = 4, ACTIONS(3), 1, sym_comment, - STATE(4118), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146332] = 3, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5462), 1, + anon_sym_RPAREN, + STATE(4584), 1, + aux_sym_expression_repeat3, + [151531] = 4, ACTIONS(3), 1, sym_comment, - STATE(4378), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146344] = 5, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5464), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [151544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5466), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [151557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 3, anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4755), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146360] = 5, - ACTIONS(9), 1, + sym_id, + [151566] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 1, - anon_sym_DQUOTE, - ACTIONS(4759), 1, - aux_sym_string_token1, - ACTIONS(4761), 1, - sym__escape_sequence, - STATE(3389), 1, - aux_sym_string_repeat1, - [146376] = 5, - ACTIONS(9), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5470), 1, + anon_sym_RBRACE, + STATE(3657), 1, + aux_sym_record_type_repeat1, + [151579] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4763), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [146392] = 5, - ACTIONS(9), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5472), 1, + anon_sym_RBRACE, + STATE(3658), 1, + aux_sym_type_effect_suffix_repeat1, + [151592] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - aux_sym_string_token1, - ACTIONS(4540), 1, - sym__escape_sequence, - ACTIONS(4765), 1, - anon_sym_DQUOTE, - STATE(3288), 1, - aux_sym_string_repeat1, - [146408] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5472), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4767), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146424] = 5, - ACTIONS(9), 1, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_RBRACK, + STATE(3659), 1, + aux_sym_expression_repeat4, + [151618] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_DQUOTE, - ACTIONS(4771), 1, - aux_sym_string_token1, - ACTIONS(4773), 1, - sym__escape_sequence, - STATE(3390), 1, - aux_sym_string_repeat1, - [146440] = 5, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5476), 1, + anon_sym_in, + STATE(3661), 1, + aux_sym_expression_repeat2, + [151631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4775), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146456] = 5, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5478), 1, + anon_sym_RPAREN, + STATE(4514), 1, + aux_sym_expression_repeat3, + [151644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4777), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146472] = 4, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5480), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [151657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, - aux_sym_integer_token1, - STATE(4636), 1, - sym_integer, - ACTIONS(2341), 2, - sym_hex_integer, - sym_octet_integer, - [146486] = 5, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5482), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4779), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146502] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5484), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4781), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146518] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5484), 1, + anon_sym_RBRACK, + STATE(3663), 1, + aux_sym_expression_repeat4, + [151696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - STATE(3398), 1, - aux_sym_module_export_repeat1, - ACTIONS(4786), 2, - anon_sym_RPAREN, - anon_sym_do, - [146532] = 2, + ACTIONS(5486), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [151709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 4, + ACTIONS(5030), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5488), 1, anon_sym_PIPE, - anon_sym_SEMI, - [146542] = 3, + STATE(4528), 1, + aux_sym_let_binding_repeat1, + [151722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_RPAREN, - ACTIONS(4792), 3, - sym_operator_id, - sym_id, - sym_force_id, - [146554] = 5, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4794), 1, - anon_sym_DQUOTE, - ACTIONS(4796), 1, - aux_sym_string_token1, - ACTIONS(4798), 1, - sym__escape_sequence, - STATE(3365), 1, - aux_sym_string_repeat1, - [146570] = 5, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5490), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(4800), 1, + ACTIONS(5492), 1, anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146586] = 5, + STATE(3321), 1, + aux_sym_expression_repeat1, + [151748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - ACTIONS(4802), 1, - anon_sym_DOT, - STATE(3355), 1, - aux_sym_type_repeat1, - [146602] = 3, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5492), 1, + anon_sym_PIPE, + STATE(3629), 1, + aux_sym_let_binding_repeat1, + [151761] = 4, ACTIONS(3), 1, sym_comment, - STATE(4426), 1, - sym_identifier, - ACTIONS(3911), 3, - sym_id, - sym_qualified_id, - sym_force_id, - [146614] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RPAREN, + STATE(3630), 1, + aux_sym_expression_repeat3, + [151774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(4804), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym_pattern_unit, - [146627] = 4, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5488), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [151787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4808), 1, + ACTIONS(5496), 1, anon_sym_RPAREN, - STATE(4252), 1, + STATE(3829), 1, aux_sym_type_tuple_repeat1, - [146640] = 4, + [151800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4115), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146653] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(5498), 1, + anon_sym_EQ, + STATE(4529), 1, + aux_sym_let_binding_repeat1, + [151813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4115), 1, - anon_sym_RBRACE, - STATE(3409), 1, - aux_sym_expression_repeat3, - [146666] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5500), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4101), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5502), 1, + anon_sym_do, + STATE(3417), 1, aux_sym_expression_repeat3, - [146679] = 4, + [151839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4095), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146692] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5504), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [151852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4081), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146705] = 4, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(5506), 1, + sym_id, + STATE(4553), 1, + aux_sym_handler_repeat1, + [151865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4810), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146718] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5508), 1, + anon_sym_RBRACK, + STATE(3670), 1, + aux_sym_expression_repeat4, + [151878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_LPAREN, - ACTIONS(4814), 1, - anon_sym_STAR, - ACTIONS(4816), 1, - anon_sym_SEMI_SEMI, - [146731] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5508), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [151891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4818), 1, + ACTIONS(5510), 1, anon_sym_RPAREN, - STATE(3936), 1, + STATE(3955), 1, aux_sym_type_tuple_repeat1, - [146744] = 2, + [151904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 3, - sym_operator_id, - sym_id, - sym_force_id, - [146753] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5512), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [151917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(4824), 1, + ACTIONS(5516), 1, anon_sym_RPAREN, - STATE(3421), 1, - aux_sym_expression_repeat5, - [146766] = 4, + STATE(4559), 1, + aux_sym_pattern_repeat1, + [151930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4826), 1, + ACTIONS(5518), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [151943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(5520), 1, + anon_sym_LPAREN, + STATE(1548), 1, + sym_pattern_unit, + [151956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5522), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(3686), 1, + aux_sym_expression_repeat3, + [151969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5524), 1, + anon_sym_RPAREN, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [146779] = 4, + [151982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4830), 1, + ACTIONS(5526), 1, anon_sym_RBRACE, - STATE(3423), 1, + STATE(3690), 1, aux_sym_type_effect_suffix_repeat1, - [146792] = 4, + [151995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4832), 1, + ACTIONS(5528), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [146805] = 4, + [152008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4832), 1, + ACTIONS(5528), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [146818] = 4, + [152021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4834), 1, + ACTIONS(5530), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [146831] = 4, + STATE(4584), 1, + aux_sym_expression_repeat3, + [152034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4834), 1, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(5532), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [152047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5534), 1, anon_sym_RBRACE, - STATE(3425), 1, - aux_sym_expression_repeat3, - [146844] = 4, + STATE(3693), 1, + aux_sym_record_type_repeat1, + [152060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4836), 1, + ACTIONS(5536), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(3694), 1, aux_sym_type_effect_suffix_repeat1, - [146857] = 4, + [152073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5536), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4840), 1, + ACTIONS(5538), 1, anon_sym_RBRACK, - STATE(3426), 1, + STATE(3695), 1, aux_sym_expression_repeat4, - [146870] = 4, + [152099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4840), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(5540), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_pattern_unit, + [152112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5542), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146883] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [152125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5544), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4842), 1, + ACTIONS(5546), 1, anon_sym_RBRACK, - STATE(4358), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [146896] = 4, + [152151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4842), 1, + ACTIONS(5546), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3698), 1, aux_sym_expression_repeat4, - [146909] = 4, + [152164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4428), 1, + anon_sym_PIPE, + ACTIONS(5548), 1, anon_sym_SEMI_SEMI, - ACTIONS(4842), 1, - anon_sym_RBRACE, - STATE(3431), 1, - aux_sym_expression_repeat3, - [146922] = 4, + STATE(3547), 1, + aux_sym_let_binding_repeat2, + [152177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5550), 1, anon_sym_RBRACK, - ACTIONS(4838), 1, + STATE(4488), 1, + aux_sym_expression_repeat4, + [152190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5552), 1, + anon_sym_in, + STATE(3672), 1, + aux_sym_expression_repeat2, + [152203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(4358), 1, + ACTIONS(5554), 1, + anon_sym_RBRACK, + STATE(3675), 1, aux_sym_expression_repeat4, - [146935] = 4, + [152216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4107), 1, + ACTIONS(5556), 1, anon_sym_RBRACE, - STATE(3432), 1, - aux_sym_expression_repeat3, - [146948] = 4, + STATE(4592), 1, + aux_sym_do_block_repeat1, + [152229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4107), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5558), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146961] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4131), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5558), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146974] = 4, + STATE(3677), 1, + aux_sym_type_effect_suffix_repeat1, + [152255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4079), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [146987] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5560), 1, + anon_sym_RPAREN, + STATE(3465), 1, + aux_sym_type_tuple_repeat1, + [152268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4079), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5562), 1, anon_sym_RBRACE, - STATE(3435), 1, - aux_sym_expression_repeat3, - [147000] = 4, + STATE(3679), 1, + aux_sym_record_type_repeat1, + [152281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4085), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147013] = 4, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(5564), 1, + anon_sym_COLON, + STATE(3315), 1, + aux_sym_handler_repeat1, + [152294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4085), 1, - anon_sym_RBRACE, - STATE(3438), 1, - aux_sym_expression_repeat3, - [147026] = 4, + ACTIONS(5351), 1, + anon_sym_COMMA, + ACTIONS(5566), 1, + anon_sym_RPAREN, + STATE(4650), 1, + aux_sym_module_export_repeat2, + [152307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4844), 1, - anon_sym_RBRACE, - STATE(3527), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5568), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [147039] = 4, + [152320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5570), 1, + anon_sym_RPAREN, + STATE(3714), 1, aux_sym_expression_repeat3, - [147052] = 4, + [152333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4133), 1, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5572), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [152346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5574), 1, anon_sym_RBRACE, - STATE(4400), 1, + STATE(3718), 1, + aux_sym_type_effect_suffix_repeat1, + [152359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5576), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [152372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5576), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [152385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5578), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [147065] = 4, + [152398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5580), 1, anon_sym_SEMI_SEMI, - ACTIONS(4141), 1, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5582), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147078] = 4, + STATE(3721), 1, + aux_sym_record_type_repeat1, + [152424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4165), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5584), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147091] = 4, + STATE(3722), 1, + aux_sym_type_effect_suffix_repeat1, + [152437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4169), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5584), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147104] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5586), 1, + anon_sym_RBRACK, + STATE(3723), 1, + aux_sym_expression_repeat4, + [152463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, anon_sym_SEMI_SEMI, - ACTIONS(4165), 1, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5590), 1, anon_sym_RBRACE, - STATE(3440), 1, - aux_sym_expression_repeat3, - [147117] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [152489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4209), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5592), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147130] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4165), 1, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5594), 1, anon_sym_RBRACK, - ACTIONS(4838), 1, + STATE(4488), 1, + aux_sym_expression_repeat4, + [152515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(4358), 1, + ACTIONS(5594), 1, + anon_sym_RBRACK, + STATE(3726), 1, aux_sym_expression_repeat4, - [147143] = 4, + [152528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, anon_sym_SEMI_SEMI, - ACTIONS(4846), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147156] = 4, + STATE(3715), 1, + aux_sym_handler_type_repeat1, + [152541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_LPAREN, - ACTIONS(4850), 1, - anon_sym_STAR, - ACTIONS(4852), 1, - anon_sym_SEMI_SEMI, - [147169] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5596), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [152554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5598), 1, anon_sym_SEMI_SEMI, - ACTIONS(4854), 1, - anon_sym_RBRACE, - STATE(3441), 1, + STATE(3720), 1, + aux_sym_handler_type_repeat1, + [152567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5600), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [147182] = 4, + [152580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4856), 1, + ACTIONS(5602), 1, anon_sym_RPAREN, - STATE(3718), 1, - aux_sym_type_tuple_repeat1, - [147195] = 4, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [152593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4854), 1, - anon_sym_RBRACK, - STATE(3445), 1, - aux_sym_expression_repeat4, - [147208] = 4, + ACTIONS(5602), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [152606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - sym_module_path, - ACTIONS(4858), 1, - sym_module_annotation, - STATE(4823), 1, - sym_use_piece, - [147221] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5604), 1, + anon_sym_RBRACE, + STATE(3702), 1, + aux_sym_type_effect_suffix_repeat1, + [152619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5606), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [152632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5608), 1, + anon_sym_do, + STATE(3708), 1, + aux_sym_expression_repeat3, + [152645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5610), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [152658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(4854), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [147234] = 4, + STATE(3584), 1, + aux_sym_let_binding_repeat1, + [152671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5612), 1, anon_sym_SEMI_SEMI, - ACTIONS(4860), 1, - anon_sym_RBRACE, - STATE(4400), 1, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5614), 1, + anon_sym_RPAREN, + STATE(3728), 1, aux_sym_expression_repeat3, - [147247] = 4, + [152697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4862), 1, + ACTIONS(5616), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5618), 1, anon_sym_RPAREN, - STATE(3460), 1, - aux_sym_expression_repeat5, - [147260] = 4, + STATE(3829), 1, + aux_sym_type_tuple_repeat1, + [152723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5620), 1, + anon_sym_RPAREN, + STATE(3955), 1, + aux_sym_type_tuple_repeat1, + [152736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5616), 1, + anon_sym_SEMI_SEMI, + STATE(3736), 1, + aux_sym_handler_type_repeat1, + [152749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5622), 1, + anon_sym_do, + STATE(3808), 1, + aux_sym_expression_repeat3, + [152762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4860), 1, + ACTIONS(5624), 1, anon_sym_RBRACK, - STATE(3452), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [147273] = 4, + [152775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5626), 1, + anon_sym_RPAREN, + STATE(3749), 1, + aux_sym_expression_repeat3, + [152788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4864), 1, + ACTIONS(5628), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [147286] = 4, + [152801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4866), 1, + ACTIONS(5630), 1, anon_sym_RBRACE, - STATE(3462), 1, + STATE(3753), 1, aux_sym_type_effect_suffix_repeat1, - [147299] = 4, + [152814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4868), 1, + ACTIONS(5632), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [147312] = 4, + [152827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4868), 1, + ACTIONS(5632), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [147325] = 4, + [152840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4870), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [147338] = 4, + STATE(4584), 1, + aux_sym_expression_repeat3, + [152853] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5636), 1, anon_sym_SEMI_SEMI, - ACTIONS(4870), 1, + STATE(3738), 1, + aux_sym_handler_type_repeat1, + [152866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5638), 1, anon_sym_RBRACE, - STATE(3464), 1, - aux_sym_expression_repeat3, - [147351] = 4, + STATE(3756), 1, + aux_sym_record_type_repeat1, + [152879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4872), 1, + ACTIONS(5640), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(3757), 1, aux_sym_type_effect_suffix_repeat1, - [147364] = 4, + [152892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5640), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [152905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4874), 1, + ACTIONS(5642), 1, anon_sym_RBRACK, - STATE(3466), 1, + STATE(3758), 1, aux_sym_expression_repeat4, - [147377] = 4, + [152918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, anon_sym_SEMI_SEMI, - ACTIONS(4874), 1, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5646), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147390] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [152944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4876), 1, + ACTIONS(5648), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [147403] = 4, + [152957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4878), 1, + ACTIONS(5650), 1, anon_sym_RBRACK, - STATE(4358), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [147416] = 4, + [152970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4878), 1, + ACTIONS(5650), 1, anon_sym_RBRACK, - STATE(3470), 1, + STATE(3761), 1, aux_sym_expression_repeat4, - [147429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4878), 1, - anon_sym_RBRACE, - STATE(3473), 1, - aux_sym_expression_repeat3, - [147442] = 4, + [152983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5652), 1, anon_sym_SEMI_SEMI, - ACTIONS(4880), 1, - anon_sym_RBRACE, - STATE(3453), 1, - aux_sym_expression_repeat3, - [147455] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [152996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(4358), 1, + ACTIONS(5654), 1, + anon_sym_RBRACK, + STATE(4488), 1, aux_sym_expression_repeat4, - [147468] = 4, + [153009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5652), 1, anon_sym_SEMI_SEMI, - ACTIONS(4231), 1, - anon_sym_RBRACE, - STATE(3474), 1, - aux_sym_expression_repeat3, - [147481] = 4, + STATE(3755), 1, + aux_sym_handler_type_repeat1, + [153022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(4880), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [147494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4231), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147507] = 4, + ACTIONS(5656), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [153035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5658), 1, anon_sym_SEMI_SEMI, - ACTIONS(4235), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147520] = 4, + STATE(3760), 1, + aux_sym_handler_type_repeat1, + [153048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4882), 1, + ACTIONS(5660), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [147533] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4237), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147546] = 4, + STATE(3732), 1, + aux_sym_type_tuple_repeat1, + [153061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(4882), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [147559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4237), 1, - anon_sym_RBRACE, - STATE(3480), 1, - aux_sym_expression_repeat3, - [147572] = 4, + ACTIONS(5662), 1, + anon_sym_RBRACK, + STATE(3743), 1, + aux_sym_expression_repeat4, + [153074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4884), 1, - anon_sym_RBRACE, - STATE(3465), 1, - aux_sym_type_effect_suffix_repeat1, - [147585] = 4, + ACTIONS(5664), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4239), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147598] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5662), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [153100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4239), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5666), 1, anon_sym_RBRACE, - STATE(3483), 1, - aux_sym_expression_repeat3, - [147611] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4886), 1, + ACTIONS(5668), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [147624] = 4, + [153126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4245), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5670), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147637] = 4, + STATE(3777), 1, + aux_sym_type_effect_suffix_repeat1, + [153139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4888), 1, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_RPAREN, - STATE(3472), 1, - aux_sym_expression_repeat5, - [147650] = 4, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4890), 1, - anon_sym__, - ACTIONS(4892), 1, - sym_operator, - STATE(3503), 1, - aux_sym_fixity_repeat1, - [147663] = 4, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [153152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4894), 1, + ACTIONS(5672), 1, anon_sym_RPAREN, - STATE(3753), 1, - aux_sym_type_tuple_repeat1, - [147676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4263), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_STAR, - ACTIONS(4900), 1, - sym_module_id, - [147702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4289), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147715] = 4, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [153165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, anon_sym_SEMI_SEMI, - ACTIONS(4902), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147728] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4904), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5676), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147741] = 4, + STATE(3779), 1, + aux_sym_record_type_repeat1, + [153191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3517), 1, - aux_sym_module_repeat2, - [147754] = 4, + ACTIONS(5678), 1, + anon_sym_RBRACE, + STATE(3780), 1, + aux_sym_type_effect_suffix_repeat1, + [153204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4906), 1, - anon_sym_RPAREN, - STATE(3895), 1, - aux_sym_type_tuple_repeat1, - [147767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4285), 1, + ACTIONS(5678), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147780] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, anon_sym_SEMI_SEMI, - ACTIONS(3897), 1, - anon_sym_PIPE, - STATE(3550), 1, - aux_sym_data_repeat3, - [147793] = 4, + STATE(3767), 1, + aux_sym_handler_type_repeat1, + [153230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4305), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5680), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147806] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [153243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4321), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5682), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147819] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4908), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [147832] = 4, + ACTIONS(5684), 1, + anon_sym_SEMI_SEMI, + STATE(3774), 1, + aux_sym_handler_type_repeat1, + [153269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4910), 1, + ACTIONS(5686), 1, anon_sym_RBRACE, - STATE(3502), 1, - aux_sym_type_effect_suffix_repeat1, - [147845] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [153282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4912), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [147858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [147871] = 4, + ACTIONS(5688), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4914), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [147884] = 4, - ACTIONS(9), 1, - sym_comment, - ACTIONS(4916), 1, - anon_sym__, - ACTIONS(4918), 1, - sym_operator, - STATE(3558), 1, - aux_sym_fixity_repeat1, - [147897] = 4, + ACTIONS(5690), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4920), 1, + ACTIONS(5692), 1, anon_sym_RPAREN, - STATE(3683), 1, + STATE(3637), 1, aux_sym_type_tuple_repeat1, - [147910] = 4, + [153321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4331), 1, - anon_sym_RBRACE, - STATE(3497), 1, - aux_sym_expression_repeat3, - [147923] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5694), 1, + anon_sym_in, + STATE(3763), 1, + aux_sym_expression_repeat2, + [153334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_PIPE, - ACTIONS(4922), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5690), 1, anon_sym_SEMI_SEMI, - STATE(3569), 1, - aux_sym_let_binding_repeat2, - [147936] = 4, + STATE(3783), 1, + aux_sym_handler_type_repeat1, + [153347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4331), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [147949] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_RBRACK, + STATE(3768), 1, + aux_sym_expression_repeat4, + [153360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4347), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5698), 1, anon_sym_RBRACE, - STATE(3507), 1, - aux_sym_expression_repeat3, - [147962] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4924), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [147975] = 4, + [153386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4926), 1, + ACTIONS(5702), 1, anon_sym_RBRACE, - STATE(3513), 1, + STATE(3797), 1, aux_sym_type_effect_suffix_repeat1, - [147988] = 4, + [153399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4928), 1, + ACTIONS(5704), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [148001] = 4, + [153412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4928), 1, + ACTIONS(5704), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [148014] = 4, + [153425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4930), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148027] = 3, + ACTIONS(5706), 1, + anon_sym_SEMI_SEMI, + STATE(3784), 1, + aux_sym_handler_type_repeat1, + [153438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, - anon_sym_exclude, - ACTIONS(4589), 2, + ACTIONS(5048), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [148038] = 4, + ACTIONS(5708), 1, + anon_sym_RBRACE, + STATE(3799), 1, + aux_sym_record_type_repeat1, + [153451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4934), 1, - anon_sym_RPAREN, - STATE(3798), 1, - aux_sym_type_tuple_repeat1, - [148051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4347), 1, + ACTIONS(5710), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [148064] = 4, + STATE(3800), 1, + aux_sym_type_effect_suffix_repeat1, + [153464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3583), 1, - aux_sym_module_repeat2, - [148077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4355), 1, + ACTIONS(5710), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [148090] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4938), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [148103] = 4, + ACTIONS(5712), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4940), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [148116] = 4, + ACTIONS(5714), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [153503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4942), 1, + ACTIONS(5716), 1, anon_sym_RBRACE, - STATE(3524), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [148129] = 4, + [153516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4944), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [148142] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5718), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4944), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [148155] = 4, + ACTIONS(5698), 1, + anon_sym_RBRACE, + STATE(3769), 1, + aux_sym_type_effect_suffix_repeat1, + [153542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4946), 1, + ACTIONS(5720), 1, anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148168] = 4, + STATE(3782), 1, + aux_sym_record_type_repeat1, + [153555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(3594), 1, - aux_sym_module_repeat2, - [148181] = 4, + ACTIONS(5718), 1, + anon_sym_SEMI_SEMI, + STATE(3798), 1, + aux_sym_handler_type_repeat1, + [153568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4948), 1, + ACTIONS(5722), 1, anon_sym_RPAREN, - STATE(3849), 1, + STATE(3506), 1, aux_sym_type_tuple_repeat1, - [148194] = 4, + [153581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5724), 1, anon_sym_SEMI_SEMI, - ACTIONS(4361), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [148207] = 2, + STATE(3801), 1, + aux_sym_handler_type_repeat1, + [153594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 3, + ACTIONS(5442), 1, anon_sym_COMMA, + ACTIONS(5726), 1, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [148216] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4361), 1, - anon_sym_RBRACE, - STATE(3518), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5728), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [148229] = 4, + [153620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(4950), 1, - anon_sym_in, - STATE(3519), 1, - aux_sym_expression_repeat2, - [148242] = 4, + ACTIONS(5730), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [153633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4952), 1, + ACTIONS(5732), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [148255] = 4, + [153646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4954), 1, + ACTIONS(5734), 1, anon_sym_RBRACE, - STATE(3535), 1, + STATE(3817), 1, aux_sym_type_effect_suffix_repeat1, - [148268] = 4, + [153659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4956), 1, + ACTIONS(5736), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [148281] = 4, + [153672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4956), 1, + ACTIONS(5736), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [148294] = 4, + [153685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4958), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148307] = 4, + ACTIONS(5738), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_RBRACE, - ACTIONS(4960), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - STATE(3607), 1, - aux_sym_use_piece_repeat1, - [148320] = 4, + ACTIONS(5740), 1, + anon_sym_RBRACE, + STATE(3819), 1, + aux_sym_record_type_repeat1, + [153711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4962), 1, - anon_sym_RPAREN, - STATE(3593), 1, - aux_sym_type_tuple_repeat1, - [148333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4361), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [148346] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3383), 1, - aux_sym_type_repeat1, - [148359] = 4, + ACTIONS(5742), 1, + anon_sym_RBRACE, + STATE(3820), 1, + aux_sym_type_effect_suffix_repeat1, + [153724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4964), 1, + ACTIONS(5742), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [148372] = 4, + [153737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4966), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [148385] = 4, + ACTIONS(5738), 1, + anon_sym_SEMI_SEMI, + STATE(3807), 1, + aux_sym_handler_type_repeat1, + [153750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4968), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [148398] = 4, + ACTIONS(5744), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [153763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4970), 1, + ACTIONS(5746), 1, anon_sym_RBRACE, - STATE(3546), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [148411] = 4, + [153776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4972), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [148424] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5748), 1, + anon_sym_SEMI_SEMI, + STATE(3814), 1, + aux_sym_handler_type_repeat1, + [153789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(4972), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [148437] = 4, + STATE(4584), 1, + aux_sym_expression_repeat3, + [153802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4974), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148450] = 4, + ACTIONS(5752), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [153815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_PIPE, - ACTIONS(4976), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5754), 1, anon_sym_SEMI_SEMI, - STATE(3550), 1, - aux_sym_data_repeat3, - [148463] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4978), 1, + ACTIONS(5756), 1, anon_sym_RPAREN, - STATE(3798), 1, + STATE(3495), 1, aux_sym_type_tuple_repeat1, - [148476] = 4, + [153841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4844), 1, - anon_sym_RBRACK, - STATE(3538), 1, - aux_sym_expression_repeat4, - [148489] = 4, + ACTIONS(5752), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [153854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5758), 1, anon_sym_SEMI_SEMI, - ACTIONS(4982), 1, - anon_sym_PIPE, - STATE(3550), 1, - aux_sym_data_repeat3, - [148502] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [153867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(4844), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [148515] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5760), 1, + anon_sym_RBRACE, + STATE(3789), 1, + aux_sym_type_effect_suffix_repeat1, + [153880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4985), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [148528] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5762), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [153893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(4987), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [148541] = 4, + [153906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(4989), 1, + ACTIONS(5766), 1, anon_sym_RBRACE, - STATE(3557), 1, + STATE(3837), 1, aux_sym_type_effect_suffix_repeat1, - [148554] = 4, + [153919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(4991), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [148567] = 4, + [153932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(4991), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [148580] = 4, + [153945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(4993), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148593] = 4, - ACTIONS(9), 1, - sym_comment, - ACTIONS(3945), 1, - anon_sym__, - ACTIONS(4995), 1, - sym_operator, - STATE(3558), 1, - aux_sym_fixity_repeat1, - [148606] = 4, + ACTIONS(5758), 1, + anon_sym_SEMI_SEMI, + STATE(3824), 1, + aux_sym_handler_type_repeat1, + [153958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4998), 1, - anon_sym_RPAREN, - STATE(3753), 1, - aux_sym_type_tuple_repeat1, - [148619] = 4, + ACTIONS(5770), 1, + anon_sym_RBRACE, + STATE(3839), 1, + aux_sym_record_type_repeat1, + [153971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5000), 1, - anon_sym_in, - STATE(3541), 1, - aux_sym_expression_repeat2, - [148632] = 4, + ACTIONS(5772), 1, + anon_sym_RBRACE, + STATE(3840), 1, + aux_sym_type_effect_suffix_repeat1, + [153984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5004), 1, - anon_sym_EQ, - STATE(3689), 1, - aux_sym_let_binding_repeat1, - [148645] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(4985), 1, - anon_sym_RBRACK, - STATE(3551), 1, - aux_sym_expression_repeat4, - [148658] = 4, + ACTIONS(5772), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [153997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5774), 1, anon_sym_SEMI_SEMI, - ACTIONS(4406), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [148671] = 4, + STATE(3827), 1, + aux_sym_handler_type_repeat1, + [154010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5006), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [148684] = 4, + ACTIONS(5776), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [154023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5008), 1, + ACTIONS(5778), 1, anon_sym_RBRACE, - STATE(3568), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [148697] = 4, + [154036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [148710] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5780), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5010), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [148723] = 4, + ACTIONS(5782), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(5012), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148736] = 4, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5784), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [154075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5782), 1, anon_sym_SEMI_SEMI, - ACTIONS(5016), 1, - anon_sym_PIPE, - STATE(3569), 1, - aux_sym_let_binding_repeat2, - [148749] = 4, + STATE(3841), 1, + aux_sym_handler_type_repeat1, + [154088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5019), 1, + ACTIONS(5786), 1, anon_sym_RPAREN, - STATE(3482), 1, + STATE(3434), 1, aux_sym_type_tuple_repeat1, - [148762] = 4, + [154101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5021), 1, - anon_sym_RBRACE, - STATE(3552), 1, - aux_sym_expression_repeat3, - [148775] = 3, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5784), 1, + anon_sym_PIPE, + STATE(3809), 1, + aux_sym_let_binding_repeat1, + [154114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, - anon_sym_exclude, - ACTIONS(5025), 2, + ACTIONS(5442), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [148786] = 4, + ACTIONS(5788), 1, + anon_sym_SEMI_SEMI, + STATE(3842), 1, + aux_sym_handler_type_repeat1, + [154127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [148799] = 4, + ACTIONS(5790), 1, + anon_sym_RPAREN, + STATE(3822), 1, + aux_sym_expression_repeat3, + [154140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5021), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [148812] = 4, + ACTIONS(5792), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5031), 1, + ACTIONS(5794), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [148825] = 4, + [154166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5033), 1, + ACTIONS(5796), 1, anon_sym_RBRACE, - STATE(3579), 1, + STATE(3857), 1, aux_sym_type_effect_suffix_repeat1, - [148838] = 4, + [154179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5035), 1, + ACTIONS(5798), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [148851] = 4, + [154192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5035), 1, + ACTIONS(5798), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [148864] = 4, + [154205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5037), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [148877] = 3, + ACTIONS(5800), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [154218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, - anon_sym_exclude, - ACTIONS(5041), 2, + ACTIONS(5048), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [148888] = 4, + ACTIONS(5802), 1, + anon_sym_RBRACE, + STATE(3859), 1, + aux_sym_record_type_repeat1, + [154231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_RPAREN, - STATE(3718), 1, - aux_sym_type_tuple_repeat1, - [148901] = 4, + ACTIONS(5804), 1, + anon_sym_RBRACE, + STATE(3860), 1, + aux_sym_type_effect_suffix_repeat1, + [154244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5045), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [148914] = 4, + ACTIONS(5804), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - anon_sym_RPAREN, - ACTIONS(5047), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(3583), 1, - aux_sym_module_repeat2, - [148927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5045), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [148940] = 4, + ACTIONS(5806), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5050), 1, + ACTIONS(5808), 1, anon_sym_RBRACE, - STATE(3540), 1, - aux_sym_type_effect_suffix_repeat1, - [148953] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [154283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, ACTIONS(5052), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [148966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, anon_sym_COMMA, - ACTIONS(5054), 1, + ACTIONS(5810), 1, anon_sym_RBRACE, - STATE(3590), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [148979] = 4, + [154296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5056), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [148992] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5806), 1, + anon_sym_SEMI_SEMI, + STATE(3849), 1, + aux_sym_handler_type_repeat1, + [154309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5056), 1, + ACTIONS(5812), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [149005] = 4, + STATE(4043), 1, + aux_sym_type_tuple_repeat1, + [154322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5058), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [149018] = 4, + ACTIONS(5814), 1, + anon_sym_EQ, + STATE(3854), 1, + aux_sym_let_binding_repeat1, + [154335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(5060), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(3819), 1, - aux_sym_module_repeat3, - [149031] = 4, + ACTIONS(5816), 1, + anon_sym_SEMI_SEMI, + STATE(3858), 1, + aux_sym_handler_type_repeat1, + [154348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5818), 1, anon_sym_RPAREN, - STATE(3417), 1, + STATE(3578), 1, aux_sym_type_tuple_repeat1, - [149044] = 4, + [154361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5064), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [149057] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(5820), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [154374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(3583), 1, - aux_sym_module_repeat2, - [149070] = 4, + ACTIONS(5822), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_DOT, - ACTIONS(5068), 1, - sym_id, - STATE(3968), 1, - aux_sym_expression_repeat1, - [149083] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4625), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [154400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5066), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(3573), 1, - aux_sym_let_binding_repeat1, - [149096] = 4, + ACTIONS(5824), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [154413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [149109] = 4, + [154426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5072), 1, + ACTIONS(5828), 1, anon_sym_RBRACE, - STATE(3601), 1, + STATE(3877), 1, aux_sym_type_effect_suffix_repeat1, - [149122] = 4, + [154439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5074), 1, + ACTIONS(5830), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [149135] = 4, + [154452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5074), 1, + ACTIONS(5830), 1, anon_sym_RPAREN, - STATE(4094), 1, + STATE(4590), 1, aux_sym_primitive_type_repeat2, - [149148] = 4, + [154465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [149161] = 2, + ACTIONS(5832), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [154478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 3, + ACTIONS(5048), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(5834), 1, anon_sym_RBRACE, - [149170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5080), 1, - anon_sym_RPAREN, - STATE(3456), 1, - aux_sym_type_tuple_repeat1, - [149183] = 4, + STATE(3879), 1, + aux_sym_record_type_repeat1, + [154491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [149196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, + ACTIONS(5836), 1, anon_sym_RBRACE, - ACTIONS(4960), 1, - anon_sym_COMMA, - STATE(3869), 1, - aux_sym_use_piece_repeat1, - [149209] = 4, + STATE(3880), 1, + aux_sym_type_effect_suffix_repeat1, + [154504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5084), 1, - anon_sym_RPAREN, - STATE(3683), 1, - aux_sym_type_tuple_repeat1, - [149222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, + ACTIONS(5836), 1, anon_sym_RBRACE, - ACTIONS(4960), 1, - anon_sym_COMMA, - STATE(3899), 1, - aux_sym_use_piece_repeat1, - [149235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5086), 1, - anon_sym_RPAREN, - STATE(3498), 1, - aux_sym_type_tuple_repeat1, - [149248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5088), 1, - anon_sym_RPAREN, - STATE(3931), 1, - aux_sym_type_tuple_repeat1, - [149261] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5090), 1, - anon_sym_RPAREN, - STATE(3593), 1, - aux_sym_type_tuple_repeat1, - [149274] = 4, + ACTIONS(5838), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_RPAREN, - STATE(3509), 1, - aux_sym_type_tuple_repeat1, - [149287] = 4, + ACTIONS(5840), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [154543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5094), 1, - anon_sym_RPAREN, - STATE(3520), 1, - aux_sym_type_tuple_repeat1, - [149300] = 4, + ACTIONS(5842), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_RPAREN, - STATE(3482), 1, - aux_sym_type_tuple_repeat1, - [149313] = 4, + ACTIONS(5838), 1, + anon_sym_SEMI_SEMI, + STATE(3867), 1, + aux_sym_handler_type_repeat1, + [154569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5098), 1, - anon_sym_RPAREN, - STATE(3531), 1, - aux_sym_type_tuple_repeat1, - [149326] = 4, + ACTIONS(5844), 1, + anon_sym_EQ, + STATE(3874), 1, + aux_sym_let_binding_repeat1, + [154582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_RPAREN, - STATE(3417), 1, - aux_sym_type_tuple_repeat1, - [149339] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4647), 1, + anon_sym_RBRACE, + STATE(3868), 1, + aux_sym_do_block_repeat1, + [154595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5102), 1, - anon_sym_RPAREN, - STATE(3542), 1, - aux_sym_type_tuple_repeat1, - [149352] = 4, + ACTIONS(5846), 1, + anon_sym_SEMI_SEMI, + STATE(3878), 1, + aux_sym_handler_type_repeat1, + [154608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5104), 1, + ACTIONS(5848), 1, anon_sym_RPAREN, - STATE(3553), 1, + STATE(3554), 1, aux_sym_type_tuple_repeat1, - [149365] = 4, + [154621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5106), 1, - anon_sym_RPAREN, - STATE(3456), 1, - aux_sym_type_tuple_repeat1, - [149378] = 4, + ACTIONS(5850), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [154634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5108), 1, - anon_sym_RPAREN, - STATE(3564), 1, - aux_sym_type_tuple_repeat1, - [149391] = 4, + ACTIONS(5852), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5854), 1, + anon_sym_RBRACK, + STATE(3869), 1, + aux_sym_expression_repeat4, + [154660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5854), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [154673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5110), 1, + ACTIONS(5856), 1, anon_sym_RPAREN, - STATE(3575), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [149404] = 4, + [154686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5112), 1, + ACTIONS(5858), 1, + anon_sym_RBRACE, + STATE(3897), 1, + aux_sym_type_effect_suffix_repeat1, + [154699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, anon_sym_RPAREN, - STATE(3509), 1, - aux_sym_type_tuple_repeat1, - [149417] = 4, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [154712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5114), 1, + ACTIONS(5860), 1, anon_sym_RPAREN, - STATE(3498), 1, - aux_sym_type_tuple_repeat1, - [149430] = 4, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [154725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5116), 1, - anon_sym_RPAREN, - STATE(3509), 1, - aux_sym_type_tuple_repeat1, - [149443] = 4, + ACTIONS(5862), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [154738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5118), 1, - anon_sym_RPAREN, - STATE(3520), 1, - aux_sym_type_tuple_repeat1, - [149456] = 4, + ACTIONS(5864), 1, + anon_sym_RBRACE, + STATE(3899), 1, + aux_sym_record_type_repeat1, + [154751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5120), 1, - anon_sym_RPAREN, - STATE(3531), 1, - aux_sym_type_tuple_repeat1, - [149469] = 4, + ACTIONS(5866), 1, + anon_sym_RBRACE, + STATE(3900), 1, + aux_sym_type_effect_suffix_repeat1, + [154764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5122), 1, - anon_sym_RPAREN, - STATE(3542), 1, - aux_sym_type_tuple_repeat1, - [149482] = 4, + ACTIONS(5866), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5124), 1, - anon_sym_RPAREN, - STATE(3553), 1, - aux_sym_type_tuple_repeat1, - [149495] = 4, + ACTIONS(5868), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5126), 1, - anon_sym_RPAREN, - STATE(3564), 1, - aux_sym_type_tuple_repeat1, - [149508] = 4, + ACTIONS(5870), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [154803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5128), 1, - anon_sym_RPAREN, - STATE(3575), 1, - aux_sym_type_tuple_repeat1, - [149521] = 4, + ACTIONS(5872), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5130), 1, - anon_sym_RPAREN, - STATE(3586), 1, - aux_sym_type_tuple_repeat1, - [149534] = 4, + ACTIONS(5868), 1, + anon_sym_SEMI_SEMI, + STATE(3887), 1, + aux_sym_handler_type_repeat1, + [154829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5132), 1, - anon_sym_RPAREN, - STATE(3597), 1, - aux_sym_type_tuple_repeat1, - [149547] = 4, + ACTIONS(5874), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [154842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_RPAREN, - STATE(3604), 1, - aux_sym_type_tuple_repeat1, - [149560] = 4, + ACTIONS(5876), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [154855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5136), 1, - anon_sym_RPAREN, - STATE(3586), 1, - aux_sym_type_tuple_repeat1, - [149573] = 4, + ACTIONS(5878), 1, + anon_sym_EQ, + STATE(3894), 1, + aux_sym_let_binding_repeat1, + [154868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5880), 1, anon_sym_RPAREN, - STATE(3597), 1, + STATE(3595), 1, aux_sym_type_tuple_repeat1, - [149586] = 4, + [154881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5140), 1, - anon_sym_RPAREN, - STATE(3604), 1, - aux_sym_type_tuple_repeat1, - [149599] = 4, + ACTIONS(5882), 1, + anon_sym_SEMI_SEMI, + STATE(3898), 1, + aux_sym_handler_type_repeat1, + [154894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_RPAREN, - STATE(3574), 1, - aux_sym_expression_repeat5, - [149612] = 4, + ACTIONS(5884), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [154907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3347), 1, - aux_sym_type_repeat1, - [149625] = 2, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(5886), 1, + anon_sym_in, + STATE(3886), 1, + aux_sym_expression_repeat2, + [154920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 3, - anon_sym_LPAREN, - anon_sym_DOT, - sym_id, - [149634] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(5888), 1, + anon_sym_RBRACK, + STATE(3889), 1, + aux_sym_expression_repeat4, + [154933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5146), 1, + ACTIONS(5890), 1, anon_sym_RPAREN, - STATE(4002), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [149647] = 4, + [154946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5148), 1, - anon_sym_RPAREN, - STATE(3964), 1, - aux_sym_expression_repeat5, - [149660] = 4, + ACTIONS(5892), 1, + anon_sym_RBRACE, + STATE(3917), 1, + aux_sym_type_effect_suffix_repeat1, + [154959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5150), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - STATE(3965), 1, - aux_sym_let_binding_repeat1, - [149673] = 4, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [154972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5150), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [149686] = 4, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [154985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5152), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149699] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(5896), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [154998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4462), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5898), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149712] = 4, + STATE(3919), 1, + aux_sym_record_type_repeat1, + [155011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4464), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5900), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149725] = 4, + STATE(3920), 1, + aux_sym_type_effect_suffix_repeat1, + [155024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4470), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5900), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149738] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [155037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5902), 1, anon_sym_SEMI_SEMI, - ACTIONS(4474), 1, - anon_sym_RBRACE, - STATE(3646), 1, - aux_sym_expression_repeat3, - [149751] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [155050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5154), 1, - anon_sym_RPAREN, - STATE(3931), 1, - aux_sym_type_tuple_repeat1, - [149764] = 4, + ACTIONS(5904), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [155063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4474), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5906), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149777] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [155076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5902), 1, anon_sym_SEMI_SEMI, - ACTIONS(4486), 1, - anon_sym_RBRACE, - STATE(3649), 1, - aux_sym_expression_repeat3, - [149790] = 4, + STATE(3907), 1, + aux_sym_handler_type_repeat1, + [155089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_PIPE, - STATE(3656), 1, - aux_sym_let_binding_repeat1, - [149803] = 4, + ACTIONS(5908), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [155102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5156), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [149816] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RBRACE, + STATE(3902), 1, + aux_sym_type_effect_suffix_repeat1, + [155115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5158), 1, + ACTIONS(5910), 1, anon_sym_EQ, - STATE(4132), 1, + STATE(3914), 1, aux_sym_let_binding_repeat1, - [149829] = 4, + [155128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4486), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4504), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5027), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5160), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [149868] = 4, + ACTIONS(5912), 1, + anon_sym_RPAREN, + STATE(3643), 1, + aux_sym_type_tuple_repeat1, + [155141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5162), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [149881] = 4, + ACTIONS(5914), 1, + anon_sym_RBRACE, + STATE(3903), 1, + aux_sym_record_type_repeat1, + [155154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5916), 1, anon_sym_SEMI_SEMI, - ACTIONS(4502), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [149894] = 4, + STATE(3918), 1, + aux_sym_handler_type_repeat1, + [155167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5166), 1, - anon_sym_do, - STATE(3973), 1, - aux_sym_module_export_repeat1, - [149907] = 4, + ACTIONS(5918), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [155180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4502), 1, + ACTIONS(5920), 1, anon_sym_RBRACE, - STATE(3655), 1, - aux_sym_expression_repeat3, - [149920] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [155193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5168), 1, - anon_sym_in, - STATE(3657), 1, - aux_sym_expression_repeat2, - [149933] = 4, + ACTIONS(5922), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [155206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_PIPE, - ACTIONS(5170), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [149946] = 4, + ACTIONS(5924), 1, + anon_sym_RBRACE, + STATE(3937), 1, + aux_sym_type_effect_suffix_repeat1, + [155219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [149959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5173), 1, - anon_sym_RBRACE, - STATE(3658), 1, - aux_sym_expression_repeat3, - [149972] = 4, + ACTIONS(5926), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [155232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5175), 1, - anon_sym_in, - STATE(3670), 1, - aux_sym_expression_repeat2, - [149985] = 4, + ACTIONS(5926), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [155245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(3987), 1, + ACTIONS(5928), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [149998] = 4, + [155258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5181), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5173), 1, - anon_sym_RBRACK, - STATE(3663), 1, - aux_sym_expression_repeat4, - [150024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5173), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [150037] = 4, + ACTIONS(5930), 1, + anon_sym_RBRACE, + STATE(3939), 1, + aux_sym_record_type_repeat1, + [155271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5183), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150050] = 4, + ACTIONS(5932), 1, + anon_sym_RBRACE, + STATE(3940), 1, + aux_sym_type_effect_suffix_repeat1, + [155284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5185), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5932), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150063] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [155297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5187), 1, - anon_sym_in, - STATE(3667), 1, - aux_sym_expression_repeat2, - [150076] = 4, + ACTIONS(5934), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [155310] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5185), 1, - anon_sym_RBRACK, - STATE(3669), 1, - aux_sym_expression_repeat4, - [150089] = 4, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(5936), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [155323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5189), 1, + ACTIONS(5938), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [150102] = 4, + [155336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5934), 1, anon_sym_SEMI_SEMI, - ACTIONS(5191), 1, - anon_sym_RBRACE, - STATE(3671), 1, + STATE(3928), 1, + aux_sym_handler_type_repeat1, + [155349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5940), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [150115] = 4, + [155362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5193), 1, - anon_sym_PIPE, - STATE(3662), 1, + ACTIONS(5942), 1, + anon_sym_EQ, + STATE(3934), 1, aux_sym_let_binding_repeat1, - [150128] = 4, + [155375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5195), 1, - anon_sym_in, - STATE(3681), 1, - aux_sym_expression_repeat2, - [150141] = 4, + ACTIONS(5944), 1, + anon_sym_RPAREN, + STATE(3495), 1, + aux_sym_type_tuple_repeat1, + [155388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5191), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [150154] = 4, + ACTIONS(5946), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [155401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5197), 1, + ACTIONS(5948), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [150167] = 4, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [155414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5197), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5950), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [150180] = 4, + STATE(4584), 1, + aux_sym_expression_repeat3, + [155427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5199), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150193] = 4, + ACTIONS(5952), 1, + anon_sym_SEMI_SEMI, + STATE(3938), 1, + aux_sym_handler_type_repeat1, + [155440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_RBRACE, - STATE(3674), 1, - aux_sym_type_effect_suffix_repeat1, - [150206] = 4, + ACTIONS(5954), 1, + anon_sym_RPAREN, + STATE(3434), 1, + aux_sym_type_tuple_repeat1, + [155453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5203), 1, + ACTIONS(5956), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [150219] = 4, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [155466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5205), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [150232] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [155479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5205), 1, - anon_sym_PIPE, - STATE(3676), 1, - aux_sym_let_binding_repeat1, - [150245] = 4, + ACTIONS(5958), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [155492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5207), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - STATE(3678), 1, - aux_sym_expression_repeat5, - [150258] = 4, + STATE(3465), 1, + aux_sym_type_tuple_repeat1, + [155505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5209), 1, - anon_sym_LPAREN, - STATE(1497), 1, - sym_pattern_unit, - [150271] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_RBRACE, + STATE(3922), 1, + aux_sym_type_effect_suffix_repeat1, + [155518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5211), 1, + ACTIONS(5964), 1, anon_sym_RPAREN, - STATE(3798), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [150284] = 4, + [155531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5213), 1, + ACTIONS(5966), 1, anon_sym_EQ, - STATE(3988), 1, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [150297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5215), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5217), 1, - anon_sym_RBRACK, - STATE(3703), 1, - aux_sym_expression_repeat4, - [150323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4400), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150336] = 4, + [155544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4398), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150349] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(3682), 1, + aux_sym_type_tuple_repeat1, + [155557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4388), 1, + ACTIONS(5970), 1, anon_sym_RBRACE, - STATE(3693), 1, - aux_sym_expression_repeat3, - [150362] = 4, + STATE(3929), 1, + aux_sym_do_block_repeat1, + [155570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4388), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5972), 1, + anon_sym_do, + STATE(3942), 1, aux_sym_expression_repeat3, - [150375] = 4, + [155583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4384), 1, - anon_sym_RBRACE, - STATE(3695), 1, - aux_sym_expression_repeat3, - [150388] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(3506), 1, + aux_sym_type_tuple_repeat1, + [155596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4384), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150401] = 4, + ACTIONS(4924), 1, + sym_id, + ACTIONS(5976), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [155609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4380), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150414] = 4, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5976), 1, + anon_sym_PIPE, + STATE(3945), 1, + aux_sym_let_binding_repeat1, + [155622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5219), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150427] = 4, + ACTIONS(5978), 1, + anon_sym_RPAREN, + STATE(3710), 1, + aux_sym_type_tuple_repeat1, + [155635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4369), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5980), 1, + anon_sym_RPAREN, + STATE(3947), 1, aux_sym_expression_repeat3, - [150440] = 4, + [155648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(5982), 1, anon_sym_SEMI_SEMI, - ACTIONS(4369), 1, - anon_sym_RBRACE, - STATE(3698), 1, - aux_sym_expression_repeat3, - [150453] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [155661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5221), 1, - anon_sym_in, - STATE(3699), 1, - aux_sym_expression_repeat2, - [150466] = 4, + ACTIONS(5984), 1, + anon_sym_RPAREN, + STATE(3554), 1, + aux_sym_type_tuple_repeat1, + [155674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4369), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [150479] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(5986), 1, + anon_sym_RPAREN, + STATE(4121), 1, + aux_sym_type_tuple_repeat1, + [155687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5217), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(5988), 1, anon_sym_RBRACE, - STATE(3700), 1, - aux_sym_expression_repeat3, - [150492] = 4, + STATE(3974), 1, + aux_sym_handler_repeat3, + [155700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5223), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150505] = 4, + ACTIONS(5990), 1, + anon_sym_RPAREN, + STATE(3745), 1, + aux_sym_type_tuple_repeat1, + [155713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4151), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(5992), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5217), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [150531] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5225), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(5994), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150544] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5227), 1, - anon_sym_in, - STATE(3705), 1, - aux_sym_expression_repeat2, - [150557] = 4, + ACTIONS(5996), 1, + anon_sym_RPAREN, + STATE(3595), 1, + aux_sym_type_tuple_repeat1, + [155752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5225), 1, - anon_sym_RBRACK, - STATE(3707), 1, - aux_sym_expression_repeat4, - [150570] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(5994), 1, + anon_sym_RBRACE, + STATE(3970), 1, + aux_sym_handler_repeat3, + [155765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5229), 1, + ACTIONS(5998), 1, anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [150583] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5231), 1, - anon_sym_RBRACE, - STATE(3708), 1, - aux_sym_expression_repeat3, - [150596] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6000), 1, + anon_sym_RPAREN, + STATE(3770), 1, + aux_sym_type_tuple_repeat1, + [155791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5233), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [150609] = 4, + ACTIONS(5988), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5231), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [150622] = 4, + ACTIONS(5982), 1, + anon_sym_SEMI_SEMI, + STATE(3952), 1, + aux_sym_handler_type_repeat1, + [155817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5235), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [150635] = 4, + STATE(3643), 1, + aux_sym_type_tuple_repeat1, + [155830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5235), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [150648] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6004), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5237), 1, + ACTIONS(6006), 1, anon_sym_RBRACE, - STATE(3711), 1, - aux_sym_type_effect_suffix_repeat1, - [150661] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5239), 1, + ACTIONS(6008), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(3790), 1, aux_sym_type_tuple_repeat1, - [150674] = 4, + [155869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5241), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [150687] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6006), 1, + anon_sym_RBRACE, + STATE(3979), 1, + aux_sym_handler_repeat3, + [155882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5241), 1, - anon_sym_PIPE, - STATE(3713), 1, - aux_sym_let_binding_repeat1, - [150700] = 4, + ACTIONS(6010), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5243), 1, + ACTIONS(6012), 1, anon_sym_RPAREN, - STATE(3714), 1, - aux_sym_expression_repeat5, - [150713] = 4, + STATE(3810), 1, + aux_sym_type_tuple_repeat1, + [155908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5245), 1, - anon_sym_LPAREN, - STATE(1482), 1, - sym_pattern_unit, - [150726] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6014), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [155921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5247), 1, - anon_sym_RPAREN, - STATE(3849), 1, - aux_sym_type_tuple_repeat1, - [150739] = 4, + ACTIONS(6014), 1, + anon_sym_RBRACE, + STATE(3983), 1, + aux_sym_handler_repeat3, + [155934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_PIPE, - ACTIONS(5249), 1, - anon_sym_SEMI_SEMI, - STATE(3569), 1, - aux_sym_let_binding_repeat2, - [150752] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6016), 1, + anon_sym_RPAREN, + STATE(3830), 1, + aux_sym_type_tuple_repeat1, + [155947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5251), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150765] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6018), 1, + anon_sym_EQ, + STATE(3956), 1, + aux_sym_let_binding_repeat1, + [155960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4281), 1, + ACTIONS(6020), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150778] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [155973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4277), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150791] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(3682), 1, + aux_sym_type_tuple_repeat1, + [155986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6024), 1, anon_sym_SEMI_SEMI, - ACTIONS(4275), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150804] = 4, + STATE(3965), 1, + aux_sym_handler_type_repeat1, + [155999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4269), 1, + ACTIONS(4569), 1, anon_sym_RBRACE, - STATE(3728), 1, - aux_sym_expression_repeat3, - [150817] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [156012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4269), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150830] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6026), 1, + anon_sym_RPAREN, + STATE(3850), 1, + aux_sym_type_tuple_repeat1, + [156025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6028), 1, anon_sym_SEMI_SEMI, - ACTIONS(4265), 1, - anon_sym_RBRACE, - STATE(3730), 1, - aux_sym_expression_repeat3, - [150843] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [156038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4265), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150856] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6030), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [156051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4261), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150869] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6032), 1, + anon_sym_RPAREN, + STATE(3870), 1, + aux_sym_type_tuple_repeat1, + [156064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5253), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [150882] = 4, + ACTIONS(6034), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [156077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4255), 1, + ACTIONS(4581), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150895] = 4, + STATE(3992), 1, + aux_sym_do_block_repeat1, + [156090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4255), 1, - anon_sym_RBRACE, - STATE(3733), 1, - aux_sym_expression_repeat3, - [150908] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6036), 1, + anon_sym_RPAREN, + STATE(3710), 1, + aux_sym_type_tuple_repeat1, + [156103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5255), 1, - anon_sym_in, - STATE(3734), 1, - aux_sym_expression_repeat2, - [150921] = 4, + ACTIONS(6038), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [156116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [150934] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6040), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [156129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6042), 1, + anon_sym_RPAREN, + STATE(3745), 1, + aux_sym_type_tuple_repeat1, + [156142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6044), 1, anon_sym_SEMI_SEMI, - ACTIONS(5257), 1, - anon_sym_RBRACE, - STATE(3735), 1, - aux_sym_expression_repeat3, - [150947] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [156155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5259), 1, + ACTIONS(6046), 1, anon_sym_in, - STATE(4355), 1, + STATE(4485), 1, aux_sym_expression_repeat2, - [150960] = 4, + [156168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6048), 1, + anon_sym_RPAREN, + STATE(3770), 1, + aux_sym_type_tuple_repeat1, + [156181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5257), 1, + ACTIONS(6050), 1, anon_sym_RBRACK, - STATE(3738), 1, + STATE(3995), 1, aux_sym_expression_repeat4, - [150973] = 4, + [156194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5257), 1, + ACTIONS(6050), 1, anon_sym_RBRACK, - STATE(4358), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [150986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5261), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [150999] = 4, + [156207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5263), 1, - anon_sym_in, - STATE(3740), 1, - aux_sym_expression_repeat2, - [151012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5261), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_expression_repeat4, - [151025] = 4, + ACTIONS(6052), 1, + anon_sym_RPAREN, + STATE(3790), 1, + aux_sym_type_tuple_repeat1, + [156220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5265), 1, + ACTIONS(6054), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [151038] = 4, + [156233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5267), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6056), 1, anon_sym_RBRACE, - STATE(3743), 1, - aux_sym_expression_repeat3, - [151051] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [156246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5269), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [151064] = 4, + ACTIONS(6058), 1, + anon_sym_RPAREN, + STATE(3890), 1, + aux_sym_type_tuple_repeat1, + [156259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6044), 1, + anon_sym_SEMI_SEMI, + STATE(3994), 1, + aux_sym_handler_type_repeat1, + [156272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5267), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [151077] = 4, + STATE(4000), 1, + aux_sym_pattern_repeat1, + [156285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5271), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [151090] = 4, + STATE(3810), 1, + aux_sym_type_tuple_repeat1, + [156298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5271), 1, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [151103] = 4, + STATE(4001), 1, + aux_sym_pattern_repeat1, + [156311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5273), 1, - anon_sym_RBRACE, - STATE(3746), 1, - aux_sym_type_effect_suffix_repeat1, - [151116] = 4, + ACTIONS(6066), 1, + anon_sym_EQ, + STATE(3997), 1, + aux_sym_let_binding_repeat1, + [156324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5275), 1, + ACTIONS(6068), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(3830), 1, aux_sym_type_tuple_repeat1, - [151129] = 4, + [156337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5277), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [151142] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(6070), 1, + anon_sym_in, + STATE(4004), 1, + aux_sym_expression_repeat2, + [156350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5277), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(3748), 1, - aux_sym_let_binding_repeat1, - [151155] = 4, + ACTIONS(6072), 1, + anon_sym_RBRACK, + STATE(4007), 1, + aux_sym_expression_repeat4, + [156363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5279), 1, + ACTIONS(6074), 1, anon_sym_RPAREN, - STATE(3749), 1, - aux_sym_expression_repeat5, - [151168] = 4, + STATE(3850), 1, + aux_sym_type_tuple_repeat1, + [156376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5283), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6076), 1, anon_sym_RBRACE, - STATE(3992), 1, - aux_sym_let_binding_repeat3, - [151181] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [156389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5285), 1, - anon_sym_RPAREN, - STATE(4058), 1, - aux_sym_type_tuple_repeat1, - [151194] = 4, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(4009), 1, + aux_sym_type_effect_suffix_repeat1, + [156402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5289), 1, + ACTIONS(6078), 1, anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_module_export_repeat2, - [151207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5291), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151220] = 4, + STATE(3870), 1, + aux_sym_type_tuple_repeat1, + [156415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4163), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6080), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151233] = 4, + STATE(4010), 1, + aux_sym_record_type_repeat1, + [156428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6082), 1, anon_sym_SEMI_SEMI, - ACTIONS(4159), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151246] = 4, + STATE(4003), 1, + aux_sym_handler_type_repeat1, + [156441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4157), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151259] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6084), 1, + anon_sym_RPAREN, + STATE(3910), 1, + aux_sym_type_tuple_repeat1, + [156454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4151), 1, + ACTIONS(6086), 1, anon_sym_RBRACE, - STATE(3763), 1, - aux_sym_expression_repeat3, - [151272] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [156467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4083), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151285] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, + anon_sym_RPAREN, + STATE(3930), 1, + aux_sym_type_tuple_repeat1, + [156480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4147), 1, - anon_sym_RBRACE, - STATE(3706), 1, - aux_sym_expression_repeat3, - [151298] = 4, + ACTIONS(3641), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [156493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4147), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151311] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6090), 1, + anon_sym_RPAREN, + STATE(3890), 1, + aux_sym_type_tuple_repeat1, + [156506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6092), 1, anon_sym_SEMI_SEMI, - ACTIONS(4143), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151324] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [156519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5293), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [151337] = 4, + ACTIONS(6094), 1, + anon_sym_RPAREN, + STATE(3946), 1, + aux_sym_type_tuple_repeat1, + [156532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6096), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [151350] = 4, + [156545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4137), 1, - anon_sym_RBRACE, - STATE(3768), 1, - aux_sym_expression_repeat3, - [151363] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6098), 1, + anon_sym_RPAREN, + STATE(3910), 1, + aux_sym_type_tuple_repeat1, + [156558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5295), 1, - anon_sym_in, - STATE(3769), 1, - aux_sym_expression_repeat2, - [151376] = 4, + ACTIONS(6100), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [156571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [151389] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6102), 1, + anon_sym_RPAREN, + STATE(3930), 1, + aux_sym_type_tuple_repeat1, + [156584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5297), 1, - anon_sym_RBRACE, - STATE(3770), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(6104), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [151402] = 4, + [156597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [151415] = 4, + ACTIONS(6106), 1, + anon_sym_RPAREN, + STATE(3946), 1, + aux_sym_type_tuple_repeat1, + [156610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5297), 1, - anon_sym_RBRACK, - STATE(3773), 1, - aux_sym_expression_repeat4, - [151428] = 4, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(6108), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [156623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5297), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [151441] = 4, + ACTIONS(6108), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [156636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5301), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151454] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3303), 1, + aux_sym_type_repeat1, + [156649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5303), 1, - anon_sym_in, - STATE(3775), 1, - aux_sym_expression_repeat2, - [151467] = 4, + ACTIONS(6110), 1, + anon_sym_RBRACE, + STATE(4021), 1, + aux_sym_type_effect_suffix_repeat1, + [156662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5301), 1, - anon_sym_RBRACK, - STATE(3777), 1, - aux_sym_expression_repeat4, - [151480] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6112), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [156675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5305), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [151493] = 4, + ACTIONS(6114), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [156688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5307), 1, + ACTIONS(6116), 1, anon_sym_RBRACE, - STATE(3778), 1, + STATE(4027), 1, + aux_sym_do_block_repeat1, + [156701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6118), 1, + anon_sym_RPAREN, + STATE(4029), 1, + aux_sym_pattern_repeat1, + [156714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6120), 1, + anon_sym_do, + STATE(4033), 1, aux_sym_expression_repeat3, - [151506] = 4, + [156727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6122), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [156740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(5282), 2, anon_sym_COMMA, - ACTIONS(5309), 1, anon_sym_PIPE, - STATE(3662), 1, + [156751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(6122), 1, + anon_sym_PIPE, + STATE(4035), 1, aux_sym_let_binding_repeat1, - [151519] = 4, + [156764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5307), 1, + ACTIONS(6126), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [151532] = 4, + STATE(4037), 1, + aux_sym_expression_repeat3, + [156777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5311), 1, - anon_sym_RPAREN, - STATE(3788), 1, - aux_sym_let_binding_repeat1, - [151545] = 4, + ACTIONS(6128), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [156790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5313), 1, - anon_sym_LPAREN, - STATE(1282), 1, - sym_pattern_unit, - [151558] = 4, + ACTIONS(5070), 1, + anon_sym_COMMA, + ACTIONS(6130), 1, + anon_sym_RPAREN, + STATE(4327), 1, + aux_sym_type_tuple_repeat1, + [156803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5315), 1, - anon_sym_LPAREN, - STATE(1286), 1, - sym_pattern_unit, - [151571] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6128), 1, + anon_sym_SEMI_SEMI, + STATE(4031), 1, + aux_sym_handler_type_repeat1, + [156816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151584] = 4, + ACTIONS(6132), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5317), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [151597] = 4, + ACTIONS(6134), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(6136), 1, anon_sym_PIPE, - ACTIONS(5317), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [151610] = 4, + STATE(4066), 1, + aux_sym_let_binding_repeat1, + [156855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6136), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [156868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5319), 1, - anon_sym_RBRACE, - STATE(3781), 1, - aux_sym_type_effect_suffix_repeat1, - [151623] = 4, + ACTIONS(6138), 1, + anon_sym_do, + STATE(4069), 1, + aux_sym_expression_repeat3, + [156881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_RPAREN, - STATE(3794), 1, - aux_sym_let_binding_repeat1, - [151636] = 4, + ACTIONS(6140), 1, + sym_id, + STATE(4070), 1, + aux_sym_handler_repeat1, + [156894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5323), 1, - anon_sym_RPAREN, - STATE(3795), 1, + ACTIONS(6142), 1, + anon_sym_EQ, + STATE(4044), 1, aux_sym_let_binding_repeat1, - [151649] = 4, + [156907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5325), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151662] = 4, + ACTIONS(6134), 1, + anon_sym_RBRACE, + STATE(4055), 1, + aux_sym_handler_repeat3, + [156920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5327), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151675] = 4, + ACTIONS(6144), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5329), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_pattern_unit, - [151688] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6146), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5331), 1, - anon_sym_LPAREN, - STATE(1054), 1, - sym_pattern_unit, - [151701] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6146), 1, + anon_sym_RBRACE, + STATE(4063), 1, + aux_sym_handler_repeat3, + [156959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5333), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [151714] = 4, + ACTIONS(6148), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [156972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5335), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [151727] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5337), 1, - anon_sym_RPAREN, - STATE(3802), 1, - aux_sym_let_binding_repeat1, - [151740] = 4, + ACTIONS(6152), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [156998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5289), 1, - anon_sym_RPAREN, - STATE(4009), 1, - aux_sym_module_export_repeat1, - [151753] = 4, + ACTIONS(6154), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [157011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151766] = 4, + ACTIONS(6156), 1, + sym_id, + STATE(3315), 1, + aux_sym_handler_repeat1, + [157024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5335), 1, - anon_sym_PIPE, - STATE(3783), 1, - aux_sym_let_binding_repeat1, - [151779] = 4, + ACTIONS(6152), 1, + anon_sym_RBRACE, + STATE(4067), 1, + aux_sym_handler_repeat3, + [157037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5339), 1, - anon_sym_RPAREN, - STATE(3784), 1, - aux_sym_expression_repeat5, - [151792] = 4, + ACTIONS(6158), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [157050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6160), 1, anon_sym_COMMA, - ACTIONS(5341), 1, - anon_sym_RPAREN, - STATE(3807), 1, + ACTIONS(6163), 1, + anon_sym_PIPE, + STATE(4073), 1, aux_sym_let_binding_repeat1, - [151805] = 4, + [157063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(3808), 1, - aux_sym_let_binding_repeat1, - [151818] = 4, + ACTIONS(6165), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [157076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5345), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151831] = 4, + ACTIONS(6165), 1, + anon_sym_RBRACE, + STATE(4072), 1, + aux_sym_handler_repeat3, + [157089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5347), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151844] = 4, + ACTIONS(6167), 1, + anon_sym_SEMI_SEMI, + STATE(4052), 1, + aux_sym_handler_type_repeat1, + [157102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5349), 1, - anon_sym_RPAREN, - STATE(4010), 1, - aux_sym_module_repeat2, - [151857] = 4, + ACTIONS(6169), 1, + anon_sym_in, + STATE(4085), 1, + aux_sym_expression_repeat2, + [157115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5351), 1, - anon_sym_RPAREN, - STATE(3811), 1, - aux_sym_let_binding_repeat1, - [151870] = 4, + ACTIONS(6171), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [157128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6173), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [157141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 1, anon_sym_COMMA, - STATE(3865), 1, + ACTIONS(6175), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [151883] = 4, + [157154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5353), 1, - anon_sym_RPAREN, - STATE(4180), 1, - aux_sym_type_tuple_repeat1, - [151896] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4516), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [157167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_RPAREN, - ACTIONS(5355), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(4015), 1, - aux_sym_module_repeat1, - [151909] = 4, + ACTIONS(6177), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [157180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5357), 1, - anon_sym_RPAREN, - STATE(3816), 1, - aux_sym_let_binding_repeat1, - [151922] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6179), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [157193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5359), 1, - anon_sym_RPAREN, - STATE(3817), 1, - aux_sym_let_binding_repeat1, - [151935] = 4, + ACTIONS(6177), 1, + anon_sym_SEMI_SEMI, + STATE(4078), 1, + aux_sym_handler_type_repeat1, + [157206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5361), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [151948] = 4, + ACTIONS(6181), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [157219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5363), 1, - anon_sym_RPAREN, - STATE(3865), 1, + ACTIONS(6183), 1, + anon_sym_EQ, + STATE(4080), 1, aux_sym_let_binding_repeat1, - [151961] = 4, + [157232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5365), 1, + ACTIONS(4525), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [151974] = 4, + STATE(4081), 1, + aux_sym_do_block_repeat1, + [157245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5349), 1, + ACTIONS(6185), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_module_repeat3, - [151987] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152000] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6187), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6189), 1, anon_sym_SEMI_SEMI, - ACTIONS(4075), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152013] = 4, + STATE(4082), 1, + aux_sym_handler_type_repeat1, + [157284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(3821), 1, - aux_sym_expression_repeat3, - [152026] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [157297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152039] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(6193), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [157310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(3823), 1, - aux_sym_expression_repeat3, - [152052] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6195), 1, + anon_sym_EQ, + STATE(3265), 1, + aux_sym_let_binding_repeat2, + [157323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, anon_sym_SEMI_SEMI, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152065] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [157336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4319), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152078] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6191), 1, + anon_sym_RBRACK, + STATE(4083), 1, + aux_sym_expression_repeat4, + [157349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(5367), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152091] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6199), 1, + anon_sym_EQ, + STATE(3258), 1, + aux_sym_let_binding_repeat2, + [157362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4339), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152104] = 4, + ACTIONS(3619), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4339), 1, - anon_sym_RBRACE, - STATE(3826), 1, - aux_sym_expression_repeat3, - [152117] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6201), 1, + anon_sym_EQ, + STATE(3254), 1, + aux_sym_let_binding_repeat2, + [157388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5369), 1, - anon_sym_in, - STATE(3827), 1, - aux_sym_expression_repeat2, - [152130] = 4, + ACTIONS(6203), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [157401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4339), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [152143] = 4, + ACTIONS(6205), 1, + anon_sym_EQ, + STATE(3252), 1, + aux_sym_let_binding_repeat2, + [157414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5371), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(3828), 1, - aux_sym_expression_repeat3, - [152156] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [157427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5373), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152169] = 4, + ACTIONS(6209), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [157440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5371), 1, - anon_sym_RBRACK, - STATE(3831), 1, - aux_sym_expression_repeat4, - [152182] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6211), 1, + anon_sym_RPAREN, + STATE(4088), 1, + aux_sym_pattern_repeat1, + [157453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5371), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [152195] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6213), 1, + anon_sym_RPAREN, + STATE(4089), 1, + aux_sym_pattern_repeat1, + [157466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6215), 1, anon_sym_SEMI_SEMI, - ACTIONS(5375), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152208] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [157479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5377), 1, + ACTIONS(6217), 1, anon_sym_in, - STATE(3833), 1, + STATE(4092), 1, aux_sym_expression_repeat2, - [152221] = 4, + [157492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5375), 1, + ACTIONS(6219), 1, anon_sym_RBRACK, - STATE(3835), 1, + STATE(4091), 1, aux_sym_expression_repeat4, - [152234] = 4, + [157505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5379), 1, + ACTIONS(6221), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4530), 1, aux_sym_type_effect_suffix_repeat1, - [152247] = 4, + [157518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6221), 1, + anon_sym_RBRACE, + STATE(4099), 1, + aux_sym_type_effect_suffix_repeat1, + [157531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6223), 1, + anon_sym_RBRACE, + STATE(4101), 1, + aux_sym_record_type_repeat1, + [157544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6215), 1, anon_sym_SEMI_SEMI, - ACTIONS(5381), 1, + STATE(4094), 1, + aux_sym_handler_type_repeat1, + [157557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6225), 1, anon_sym_RBRACE, - STATE(3836), 1, - aux_sym_expression_repeat3, - [152260] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [157570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(3635), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5383), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [152273] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3337), 1, - aux_sym_type_repeat1, - [152286] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6227), 1, + anon_sym_EQ, + STATE(4102), 1, + aux_sym_let_binding_repeat1, + [157596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5381), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [152299] = 4, + ACTIONS(6229), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [157609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5385), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [152312] = 4, + ACTIONS(6231), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [157622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5349), 1, + ACTIONS(6233), 1, anon_sym_RPAREN, - STATE(4034), 1, - aux_sym_module_repeat3, - [152325] = 2, + STATE(4584), 1, + aux_sym_expression_repeat3, + [157635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 3, + ACTIONS(4368), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [152334] = 4, + ACTIONS(6235), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [157648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5385), 1, + ACTIONS(6235), 1, anon_sym_RPAREN, - STATE(4093), 1, + STATE(4591), 1, aux_sym_primitive_type_repeat1, - [152347] = 4, + [157661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5389), 1, + ACTIONS(6237), 1, anon_sym_RBRACE, - STATE(3839), 1, + STATE(4108), 1, aux_sym_type_effect_suffix_repeat1, - [152360] = 4, + [157674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5391), 1, + ACTIONS(6239), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [152373] = 4, + [157687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6241), 1, + anon_sym_RBRACE, + STATE(4112), 1, + aux_sym_do_block_repeat1, + [157700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6243), 1, + anon_sym_RPAREN, + STATE(4113), 1, + aux_sym_pattern_repeat1, + [157713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6245), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_pattern_unit, + [157726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6247), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_pattern_unit, + [157739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6249), 1, + anon_sym_do, + STATE(4115), 1, + aux_sym_expression_repeat3, + [157752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6251), 1, + anon_sym_RPAREN, + STATE(4128), 1, + aux_sym_pattern_repeat1, + [157765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3629), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, sym_id, - ACTIONS(5393), 1, + ACTIONS(6253), 1, anon_sym_DOT, - STATE(3968), 1, + STATE(3321), 1, aux_sym_expression_repeat1, - [152386] = 4, + [157791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5393), 1, + ACTIONS(6253), 1, anon_sym_PIPE, - STATE(3841), 1, + STATE(4116), 1, aux_sym_let_binding_repeat1, - [152399] = 4, + [157804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5395), 1, + ACTIONS(6255), 1, anon_sym_RPAREN, - STATE(3843), 1, - aux_sym_expression_repeat5, - [152412] = 4, + STATE(4133), 1, + aux_sym_pattern_repeat1, + [157817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5399), 1, + ACTIONS(6257), 1, anon_sym_RPAREN, - STATE(4051), 1, - aux_sym_use_piece_repeat2, - [152425] = 4, + STATE(4134), 1, + aux_sym_pattern_repeat1, + [157830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5401), 1, + ACTIONS(6259), 1, anon_sym_RPAREN, - STATE(3895), 1, - aux_sym_type_tuple_repeat1, - [152438] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5403), 1, - anon_sym_PIPE, - STATE(3859), 1, - aux_sym_let_binding_repeat1, - [152451] = 4, + ACTIONS(6261), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [157856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(6263), 1, + anon_sym_RPAREN, + STATE(4117), 1, + aux_sym_expression_repeat3, + [157869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, sym_id, - ACTIONS(5403), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [152464] = 2, + STATE(3342), 1, + aux_sym_type_repeat1, + [157882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 3, + ACTIONS(5442), 1, anon_sym_COMMA, + ACTIONS(6265), 1, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [152473] = 4, + STATE(4105), 1, + aux_sym_handler_type_repeat1, + [157895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5407), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [152486] = 4, + ACTIONS(6267), 1, + anon_sym_RPAREN, + STATE(4407), 1, + aux_sym_type_tuple_repeat1, + [157908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6269), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [157921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5409), 1, - anon_sym_PIPE, - STATE(3662), 1, + ACTIONS(6271), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [152499] = 4, + [157934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5411), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6273), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152512] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [157947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4097), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6275), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152525] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [157960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5413), 1, + ACTIONS(6275), 1, anon_sym_RBRACE, - STATE(4057), 1, - aux_sym_use_piece_repeat1, - [152538] = 4, + STATE(4141), 1, + aux_sym_handler_repeat3, + [157973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4087), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152551] = 4, + ACTIONS(6277), 1, + anon_sym_or, + ACTIONS(5282), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [157984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4091), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6279), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152564] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [157997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_RPAREN, - ACTIONS(5415), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [152577] = 4, + ACTIONS(6281), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [158010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4099), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6281), 1, anon_sym_RBRACE, - STATE(3864), 1, - aux_sym_expression_repeat3, - [152590] = 4, + STATE(4145), 1, + aux_sym_handler_repeat3, + [158023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4099), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6283), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152603] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [158036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5418), 1, - anon_sym_in, - STATE(3872), 1, - aux_sym_expression_repeat2, - [152616] = 4, + ACTIONS(6285), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [158049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5413), 1, - anon_sym_RBRACE, - STATE(3899), 1, - aux_sym_use_piece_repeat1, - [152629] = 4, + ACTIONS(6287), 1, + anon_sym_PIPE, + STATE(4158), 1, + aux_sym_let_binding_repeat1, + [158062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4111), 1, - anon_sym_RBRACE, - STATE(3867), 1, - aux_sym_expression_repeat3, - [152642] = 4, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6287), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [158075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4111), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6289), 1, + anon_sym_do, + STATE(4161), 1, aux_sym_expression_repeat3, - [152655] = 4, + [158088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5420), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152668] = 4, + ACTIONS(6291), 1, + sym_id, + STATE(4162), 1, + aux_sym_handler_repeat1, + [158101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6293), 1, anon_sym_SEMI_SEMI, - ACTIONS(4127), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152681] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5422), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4139), 1, + ACTIONS(6285), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152707] = 4, + STATE(4148), 1, + aux_sym_handler_repeat3, + [158127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4139), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6295), 1, anon_sym_RBRACE, - STATE(3873), 1, - aux_sym_expression_repeat3, - [152720] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [158140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5424), 1, - anon_sym_in, - STATE(3874), 1, - aux_sym_expression_repeat2, - [152733] = 4, + ACTIONS(6297), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [158153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5426), 1, - anon_sym_in, - STATE(3881), 1, - aux_sym_expression_repeat2, - [152746] = 4, + ACTIONS(6299), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [158166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [152759] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6297), 1, + anon_sym_RBRACE, + STATE(4156), 1, + aux_sym_handler_repeat3, + [158179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6293), 1, anon_sym_SEMI_SEMI, - ACTIONS(5428), 1, - anon_sym_RBRACE, - STATE(3875), 1, - aux_sym_expression_repeat3, - [152772] = 4, + STATE(4139), 1, + aux_sym_handler_type_repeat1, + [158192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5430), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152785] = 4, + ACTIONS(6301), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [158205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5432), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [152798] = 4, + ACTIONS(6303), 1, + sym_id, + STATE(3315), 1, + aux_sym_handler_repeat1, + [158218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5428), 1, - anon_sym_RBRACK, - STATE(3879), 1, - aux_sym_expression_repeat4, - [152811] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6305), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [158231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5428), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [152824] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6307), 1, + anon_sym_EQ, + STATE(4140), 1, + aux_sym_let_binding_repeat1, + [158244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5434), 1, + ACTIONS(4545), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [152837] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [158257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5436), 1, - anon_sym_in, - STATE(3882), 1, - aux_sym_expression_repeat2, - [152850] = 4, + ACTIONS(6309), 1, + anon_sym_SEMI_SEMI, + STATE(4154), 1, + aux_sym_handler_type_repeat1, + [158270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5434), 1, + ACTIONS(6311), 1, anon_sym_RBRACK, - STATE(3884), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [152863] = 4, + [158283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5438), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [152876] = 4, + ACTIONS(6313), 1, + anon_sym_in, + STATE(4175), 1, + aux_sym_expression_repeat2, + [158296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6315), 1, anon_sym_SEMI_SEMI, - ACTIONS(5440), 1, - anon_sym_RBRACE, - STATE(3885), 1, - aux_sym_expression_repeat3, - [152889] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5442), 1, - anon_sym_PIPE, - STATE(3662), 1, + ACTIONS(6317), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [152902] = 4, + [158322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [152915] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4533), 1, + anon_sym_RBRACE, + STATE(4165), 1, + aux_sym_do_block_repeat1, + [158335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5444), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [152928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5444), 1, + ACTIONS(6319), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [152941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(5446), 1, - anon_sym_RBRACE, - STATE(3888), 1, - aux_sym_type_effect_suffix_repeat1, - [152954] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [158348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5448), 1, + ACTIONS(6321), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [152967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5450), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [152980] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [158361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5450), 1, - anon_sym_PIPE, - STATE(3890), 1, - aux_sym_let_binding_repeat1, - [152993] = 4, + ACTIONS(6323), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5452), 1, - anon_sym_RPAREN, - STATE(3891), 1, - aux_sym_expression_repeat5, - [153006] = 4, + ACTIONS(6325), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [158387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5457), 1, - anon_sym_RBRACE, - STATE(3899), 1, - aux_sym_use_piece_repeat1, - [153019] = 4, + ACTIONS(6323), 1, + anon_sym_SEMI_SEMI, + STATE(4169), 1, + aux_sym_handler_type_repeat1, + [158400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5459), 1, - anon_sym_RPAREN, - STATE(3936), 1, - aux_sym_type_tuple_repeat1, - [153032] = 4, + ACTIONS(6327), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [158413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_COMMA, - ACTIONS(5463), 1, - anon_sym_RBRACE, - STATE(4071), 1, - aux_sym_data_repeat4, - [153045] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_RBRACK, + STATE(4167), 1, + aux_sym_expression_repeat4, + [158426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5465), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153058] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6331), 1, + anon_sym_EQ, + STATE(4170), 1, + aux_sym_let_binding_repeat1, + [158439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4293), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153071] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [158452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6333), 1, anon_sym_SEMI_SEMI, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153084] = 4, + STATE(4174), 1, + aux_sym_handler_type_repeat1, + [158465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4299), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153097] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_EQ, + STATE(3168), 1, + aux_sym_let_binding_repeat2, + [158478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6337), 1, anon_sym_SEMI_SEMI, - ACTIONS(4311), 1, - anon_sym_RBRACE, - STATE(3905), 1, - aux_sym_expression_repeat3, - [153110] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4311), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6339), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153123] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [158504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4329), 1, - anon_sym_RBRACE, - STATE(3907), 1, - aux_sym_expression_repeat3, - [153136] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6341), 1, + anon_sym_EQ, + STATE(3167), 1, + aux_sym_let_binding_repeat2, + [158517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4329), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6343), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153149] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [158530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4349), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153162] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_EQ, + STATE(3166), 1, + aux_sym_let_binding_repeat2, + [158543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5467), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [153175] = 4, + ACTIONS(6347), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [158556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4371), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153188] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6349), 1, + anon_sym_EQ, + STATE(3165), 1, + aux_sym_let_binding_repeat2, + [158569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5469), 1, - anon_sym_LPAREN, - STATE(1117), 1, - sym_pattern_unit, - [153201] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6351), 1, + anon_sym_RPAREN, + STATE(4172), 1, + aux_sym_pattern_repeat1, + [158582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5471), 1, - anon_sym_LPAREN, - STATE(1114), 1, - sym_pattern_unit, - [153214] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6353), 1, + anon_sym_RPAREN, + STATE(4173), 1, + aux_sym_pattern_repeat1, + [158595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6355), 1, anon_sym_SEMI_SEMI, - ACTIONS(4371), 1, - anon_sym_RBRACE, - STATE(3910), 1, - aux_sym_expression_repeat3, - [153227] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5473), 1, + ACTIONS(6357), 1, anon_sym_in, - STATE(3911), 1, + STATE(4177), 1, aux_sym_expression_repeat2, - [153240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5475), 1, - anon_sym_RPAREN, - STATE(3918), 1, - aux_sym_let_binding_repeat1, - [153253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3415), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [153266] = 4, + [158621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(4358), 1, + ACTIONS(6359), 1, + anon_sym_RBRACK, + STATE(4180), 1, aux_sym_expression_repeat4, - [153279] = 4, + [158634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5477), 1, - anon_sym_RBRACE, - STATE(3912), 1, - aux_sym_expression_repeat3, - [153292] = 4, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(6361), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [158647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5479), 1, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(6361), 1, anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_let_binding_repeat1, - [153305] = 4, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [158660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5481), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_let_binding_repeat1, - [153318] = 4, + ACTIONS(6363), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [158673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5483), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [153331] = 4, + ACTIONS(6363), 1, + anon_sym_RBRACE, + STATE(4184), 1, + aux_sym_type_effect_suffix_repeat1, + [158686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5485), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [153344] = 4, + ACTIONS(6365), 1, + anon_sym_RBRACE, + STATE(4186), 1, + aux_sym_record_type_repeat1, + [158699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5487), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [153357] = 4, + ACTIONS(6355), 1, + anon_sym_SEMI_SEMI, + STATE(4183), 1, + aux_sym_handler_type_repeat1, + [158712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_RBRACK, - STATE(3919), 1, - aux_sym_expression_repeat4, - [153370] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6367), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [158725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5477), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [153383] = 4, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6369), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [158738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3393), 1, - aux_sym_type_repeat1, - [153396] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6371), 1, + anon_sym_EQ, + STATE(4188), 1, + aux_sym_let_binding_repeat1, + [158751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5489), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6373), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [153409] = 4, + [158764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5491), 1, - anon_sym_in, - STATE(3925), 1, - aux_sym_expression_repeat2, - [153422] = 4, + ACTIONS(6375), 1, + anon_sym_PIPE, + STATE(4073), 1, + aux_sym_let_binding_repeat1, + [158777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5493), 1, + ACTIONS(6377), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [153435] = 2, + STATE(4584), 1, + aux_sym_expression_repeat3, + [158790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5495), 3, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_TILDE, - [153444] = 4, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [158803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5489), 1, - anon_sym_RBRACK, - STATE(3927), 1, - aux_sym_expression_repeat4, - [153457] = 4, + ACTIONS(6379), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [158816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5497), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [153470] = 4, + ACTIONS(6381), 1, + anon_sym_SEMI_SEMI, + STATE(4192), 1, + aux_sym_handler_type_repeat1, + [158829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5499), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, anon_sym_RBRACE, - STATE(3929), 1, - aux_sym_expression_repeat3, - [153483] = 4, + STATE(4197), 1, + aux_sym_type_effect_suffix_repeat1, + [158842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5501), 1, + ACTIONS(6385), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4604), 1, aux_sym_type_tuple_repeat1, - [153496] = 4, + [158855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5503), 1, - anon_sym_PIPE, - STATE(3940), 1, - aux_sym_let_binding_repeat1, - [153509] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6387), 1, + anon_sym_RBRACE, + STATE(4201), 1, + aux_sym_do_block_repeat1, + [158868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5503), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [153522] = 4, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6389), 1, + anon_sym_LPAREN, + STATE(1483), 1, + sym_pattern_unit, + [158881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(5505), 1, - anon_sym_RBRACE, - STATE(4076), 1, - aux_sym_type_effect_suffix_repeat1, - [153535] = 4, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6391), 1, + anon_sym_LPAREN, + STATE(1480), 1, + sym_pattern_unit, + [158894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5507), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [153548] = 4, + ACTIONS(6393), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [158907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5499), 1, + ACTIONS(6395), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [153561] = 4, + STATE(4217), 1, + aux_sym_pattern_repeat1, + [158920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(5509), 1, + ACTIONS(3603), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [153574] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [158933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5511), 1, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6397), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [153587] = 4, + STATE(4097), 1, + aux_sym_pattern_repeat1, + [158946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5509), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [153600] = 4, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6399), 1, + anon_sym_do, + STATE(4204), 1, + aux_sym_expression_repeat3, + [158959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5513), 1, - anon_sym_RBRACE, - STATE(3934), 1, - aux_sym_type_effect_suffix_repeat1, - [153613] = 4, + ACTIONS(6401), 1, + anon_sym_RPAREN, + STATE(4222), 1, + aux_sym_pattern_repeat1, + [158972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5515), 1, - anon_sym_in, - STATE(3948), 1, - aux_sym_expression_repeat2, - [153626] = 4, + ACTIONS(6403), 1, + anon_sym_RPAREN, + STATE(4223), 1, + aux_sym_pattern_repeat1, + [158985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5511), 1, + ACTIONS(6405), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [153639] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [158998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5517), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [153652] = 4, + ACTIONS(6407), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [159011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4283), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6409), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153665] = 4, + STATE(4304), 1, + aux_sym_type_effect_suffix_repeat1, + [159024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, sym_id, - ACTIONS(5519), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [153678] = 4, + STATE(3390), 1, + aux_sym_type_repeat1, + [159037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5519), 1, + ACTIONS(6369), 1, anon_sym_PIPE, - STATE(3858), 1, + STATE(4205), 1, aux_sym_let_binding_repeat1, - [153691] = 4, + [159050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5521), 1, - anon_sym_in, - STATE(3953), 1, - aux_sym_expression_repeat2, - [153704] = 4, + ACTIONS(6411), 1, + anon_sym_RPAREN, + STATE(4206), 1, + aux_sym_expression_repeat3, + [159063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5523), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [153717] = 4, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [159076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5525), 1, - anon_sym_RPAREN, - STATE(3941), 1, - aux_sym_expression_repeat5, - [153730] = 4, + ACTIONS(6415), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [159089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5527), 1, + ACTIONS(6417), 1, anon_sym_RPAREN, - STATE(4117), 1, + STATE(4608), 1, aux_sym_type_tuple_repeat1, - [153743] = 4, + [159102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5529), 1, - anon_sym_RPAREN, - STATE(4002), 1, - aux_sym_type_tuple_repeat1, - [153756] = 4, + ACTIONS(6415), 1, + anon_sym_SEMI_SEMI, + STATE(4215), 1, + aux_sym_handler_type_repeat1, + [159115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RPAREN, - ACTIONS(5287), 1, - anon_sym_COMMA, - STATE(3759), 1, - aux_sym_module_export_repeat2, - [153769] = 4, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6419), 1, + anon_sym_LPAREN, + STATE(1781), 1, + sym_pattern_unit, + [159128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5531), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153782] = 4, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6421), 1, + anon_sym_LPAREN, + STATE(1780), 1, + sym_pattern_unit, + [159141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153795] = 4, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(6423), 1, + anon_sym_PIPE, + STATE(4242), 1, + aux_sym_let_binding_repeat1, + [159154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6423), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [159167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6425), 1, + anon_sym_do, + STATE(4245), 1, aux_sym_expression_repeat3, - [153808] = 4, + [159180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(6427), 1, sym_id, - STATE(3394), 1, - aux_sym_type_repeat1, - [153821] = 4, + STATE(4246), 1, + aux_sym_handler_repeat1, + [159193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4213), 1, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6429), 1, + anon_sym_EQ, + STATE(4228), 1, + aux_sym_let_binding_repeat1, + [159206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6431), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153834] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4251), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6433), 1, anon_sym_RBRACE, - STATE(3962), 1, - aux_sym_expression_repeat3, - [153847] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5533), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [153860] = 4, + ACTIONS(6433), 1, + anon_sym_RBRACE, + STATE(4239), 1, + aux_sym_handler_repeat3, + [159245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5535), 1, + ACTIONS(6435), 1, anon_sym_PIPE, - STATE(3662), 1, + STATE(4073), 1, aux_sym_let_binding_repeat1, - [153873] = 4, + [159258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4251), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6437), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153886] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4440), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6439), 1, anon_sym_RBRACE, - STATE(3966), 1, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6441), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [153899] = 4, + [159297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - anon_sym_DOT, - ACTIONS(5539), 1, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(6443), 1, sym_id, - STATE(3968), 1, - aux_sym_expression_repeat1, - [153912] = 4, + STATE(3315), 1, + aux_sym_handler_repeat1, + [159310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4440), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6439), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153925] = 4, + STATE(4243), 1, + aux_sym_handler_repeat3, + [159323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4450), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6445), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153938] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5533), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6447), 1, anon_sym_RBRACE, - STATE(4116), 1, - aux_sym_expression_repeat3, - [153951] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5542), 1, + ACTIONS(6449), 1, anon_sym_in, - STATE(4355), 1, + STATE(4255), 1, aux_sym_expression_repeat2, - [153964] = 4, + [159362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5544), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [153977] = 4, + ACTIONS(6451), 1, + anon_sym_SEMI_SEMI, + STATE(4229), 1, + aux_sym_handler_type_repeat1, + [159375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4460), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6447), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [153990] = 4, + STATE(4248), 1, + aux_sym_handler_repeat3, + [159388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4460), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6453), 1, anon_sym_RBRACE, - STATE(3970), 1, - aux_sym_expression_repeat3, - [154003] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5546), 1, - anon_sym_in, - STATE(3972), 1, - aux_sym_expression_repeat2, - [154016] = 4, + ACTIONS(6455), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [159414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [154029] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(6457), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [159427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5548), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154042] = 4, + ACTIONS(6459), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [159440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5550), 1, - anon_sym_RPAREN, - STATE(3865), 1, + ACTIONS(6461), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [154055] = 4, + [159453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5552), 1, - anon_sym_RBRACE, - STATE(3974), 1, - aux_sym_expression_repeat3, - [154068] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6463), 1, + anon_sym_EQ, + STATE(3241), 1, + aux_sym_let_binding_repeat2, + [159466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5554), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [154081] = 4, + ACTIONS(6465), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [159479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5552), 1, - anon_sym_RBRACK, - STATE(3977), 1, - aux_sym_expression_repeat4, - [154094] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6455), 1, + anon_sym_RBRACE, + STATE(4253), 1, + aux_sym_handler_repeat3, + [159492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(5552), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [154107] = 4, + ACTIONS(6467), 1, + anon_sym_EQ, + STATE(3247), 1, + aux_sym_let_binding_repeat2, + [159505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3391), 1, - aux_sym_type_repeat1, - [154120] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6465), 1, + anon_sym_SEMI_SEMI, + STATE(4256), 1, + aux_sym_handler_type_repeat1, + [159518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(3978), 1, - aux_sym_let_binding_repeat1, - [154133] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6469), 1, + anon_sym_EQ, + STATE(3251), 1, + aux_sym_let_binding_repeat2, + [159531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5558), 1, - anon_sym_RPAREN, - STATE(3979), 1, - aux_sym_let_binding_repeat1, - [154146] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6471), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [159544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154159] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6473), 1, + anon_sym_EQ, + STATE(3253), 1, + aux_sym_let_binding_repeat2, + [159557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_EQ, - ACTIONS(5560), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - STATE(3988), 1, + ACTIONS(6475), 1, + anon_sym_EQ, + STATE(4257), 1, aux_sym_let_binding_repeat1, - [154172] = 4, + [159570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5563), 1, + ACTIONS(4408), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154185] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [159583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3397), 1, + aux_sym_type_repeat1, + [159596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5565), 1, - anon_sym_in, - STATE(3981), 1, - aux_sym_expression_repeat2, - [154198] = 4, + ACTIONS(6477), 1, + anon_sym_SEMI_SEMI, + STATE(4259), 1, + aux_sym_handler_type_repeat1, + [159609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5563), 1, + ACTIONS(6479), 1, anon_sym_RBRACK, - STATE(3983), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [154211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5281), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5567), 1, - anon_sym_RBRACE, - STATE(4133), 1, - aux_sym_let_binding_repeat3, - [154224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(5569), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [154237] = 4, + [159622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5574), 1, - anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_module_export_repeat2, - [154250] = 4, + ACTIONS(6483), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [159635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154263] = 4, + ACTIONS(6485), 1, + anon_sym_PIPE, + STATE(4271), 1, + aux_sym_type_tuple_repeat1, + [159648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5576), 1, + ACTIONS(4416), 1, anon_sym_RBRACE, - STATE(3989), 1, - aux_sym_expression_repeat3, - [154276] = 4, + STATE(4267), 1, + aux_sym_do_block_repeat1, + [159661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5578), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [154289] = 4, + ACTIONS(6487), 1, + sym_id, + STATE(4281), 1, + aux_sym_handler_repeat1, + [159674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5576), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [154302] = 4, + ACTIONS(6485), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [159687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5580), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [154315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(6489), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [154328] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [159700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5582), 1, - anon_sym_RBRACE, - STATE(3993), 1, - aux_sym_type_effect_suffix_repeat1, - [154341] = 4, + ACTIONS(6491), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [159713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5584), 1, - anon_sym_RPAREN, - STATE(4072), 1, + ACTIONS(6493), 1, + anon_sym_PIPE, + STATE(4275), 1, aux_sym_type_tuple_repeat1, - [154354] = 4, + [159726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_RPAREN, - STATE(3995), 1, - aux_sym_let_binding_repeat1, - [154367] = 4, + ACTIONS(6495), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [159739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5588), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [154380] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6497), 1, + anon_sym_RBRACK, + STATE(4270), 1, + aux_sym_expression_repeat4, + [159752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(6499), 1, sym_id, - STATE(3387), 1, - aux_sym_type_repeat1, - [154393] = 4, + STATE(3315), 1, + aux_sym_handler_repeat1, + [159765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(3997), 1, - aux_sym_let_binding_repeat1, - [154406] = 4, + ACTIONS(6497), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [159778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5590), 1, - anon_sym_RPAREN, - STATE(3998), 1, - aux_sym_expression_repeat5, - [154419] = 4, + ACTIONS(6493), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [159791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(5287), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - STATE(4136), 1, - aux_sym_module_export_repeat2, - [154432] = 4, + ACTIONS(6501), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [159804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(5164), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [154445] = 4, + ACTIONS(6503), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [159817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_module_repeat2, - [154458] = 4, + ACTIONS(6505), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [159830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5594), 1, - anon_sym_RPAREN, - STATE(4058), 1, + ACTIONS(6507), 1, + anon_sym_PIPE, + STATE(4283), 1, aux_sym_type_tuple_repeat1, - [154471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5596), 3, - sym_operator_id, - sym_id, - sym_force_id, - [154480] = 4, + [159843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(4152), 1, - aux_sym_module_repeat2, - [154493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5598), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154506] = 4, + ACTIONS(6509), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [159856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5600), 1, - anon_sym_RPAREN, - STATE(4156), 1, - aux_sym_module_repeat1, - [154519] = 4, + ACTIONS(6511), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [159869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4327), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154532] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6513), 1, + anon_sym_EQ, + STATE(3218), 1, + aux_sym_let_binding_repeat2, + [159882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6511), 1, anon_sym_SEMI_SEMI, - ACTIONS(4291), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154545] = 4, + STATE(4284), 1, + aux_sym_handler_type_repeat1, + [159895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4367), 1, - anon_sym_RBRACE, - STATE(4074), 1, - aux_sym_expression_repeat3, - [154558] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6515), 1, + anon_sym_RPAREN, + STATE(4276), 1, + aux_sym_pattern_repeat1, + [159908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - STATE(3949), 1, - aux_sym_expression_repeat3, - [154571] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6517), 1, + anon_sym_EQ, + STATE(3216), 1, + aux_sym_let_binding_repeat2, + [159921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4185), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154584] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6519), 1, + anon_sym_RPAREN, + STATE(4277), 1, + aux_sym_pattern_repeat1, + [159934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4257), 1, - anon_sym_RBRACE, - STATE(4020), 1, - aux_sym_expression_repeat3, - [154597] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, + anon_sym_EQ, + STATE(3215), 1, + aux_sym_let_binding_repeat2, + [159947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4257), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154610] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6523), 1, + anon_sym_EQ, + STATE(4288), 1, + aux_sym_let_binding_repeat1, + [159960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4253), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154623] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6525), 1, + anon_sym_EQ, + STATE(3205), 1, + aux_sym_let_binding_repeat2, + [159973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5602), 1, + ACTIONS(6527), 1, anon_sym_in, - STATE(4355), 1, + STATE(4279), 1, aux_sym_expression_repeat2, - [154636] = 4, + [159986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4247), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [154649] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6529), 1, + anon_sym_RBRACK, + STATE(4282), 1, + aux_sym_expression_repeat4, + [159999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3332), 1, + STATE(3363), 1, aux_sym_type_repeat1, - [154662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4247), 1, - anon_sym_RBRACE, - STATE(4023), 1, - aux_sym_expression_repeat3, - [154675] = 4, + [160012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_in, - STATE(4024), 1, - aux_sym_expression_repeat2, - [154688] = 4, + ACTIONS(6531), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [160025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5606), 1, - anon_sym_COMMA, - ACTIONS(5609), 1, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(6531), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_module_repeat3, - [154701] = 4, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [160038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5600), 1, - anon_sym_RPAREN, - STATE(4159), 1, - aux_sym_module_repeat1, - [154714] = 4, + ACTIONS(6533), 1, + anon_sym_SEMI_SEMI, + STATE(4289), 1, + aux_sym_handler_type_repeat1, + [160051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [154727] = 4, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6535), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [160064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5611), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154740] = 4, + ACTIONS(6535), 1, + anon_sym_RBRACE, + STATE(4285), 1, + aux_sym_type_effect_suffix_repeat1, + [160077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5613), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154753] = 4, + ACTIONS(6537), 1, + sym_id, + STATE(4312), 1, + aux_sym_handler_repeat1, + [160090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_module_repeat3, - [154766] = 4, + ACTIONS(6539), 1, + anon_sym_RBRACE, + STATE(4286), 1, + aux_sym_record_type_repeat1, + [160103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(6541), 1, + anon_sym_PIPE, + ACTIONS(6543), 1, + anon_sym_forall, + ACTIONS(6545), 1, + sym_id, + [160116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5615), 1, + ACTIONS(6547), 1, anon_sym_RBRACE, - STATE(4025), 1, - aux_sym_expression_repeat3, - [154779] = 2, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [160129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 3, - sym_operator_id, - sym_id, - sym_force_id, - [154788] = 4, + ACTIONS(3623), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [160142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5619), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [154801] = 4, + ACTIONS(6549), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [160155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5615), 1, - anon_sym_RBRACK, - STATE(4031), 1, - aux_sym_expression_repeat4, - [154814] = 4, + ACTIONS(4268), 1, + anon_sym_COMMA, + ACTIONS(6551), 1, + sym_id, + STATE(3315), 1, + aux_sym_handler_repeat1, + [160168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5615), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [154827] = 4, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(6553), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [160181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5621), 1, - anon_sym_RPAREN, - STATE(4032), 1, + ACTIONS(6555), 1, + anon_sym_PIPE, + STATE(4073), 1, aux_sym_let_binding_repeat1, - [154840] = 4, + [160194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5623), 1, - anon_sym_RPAREN, - STATE(4033), 1, - aux_sym_let_binding_repeat1, - [154853] = 4, + ACTIONS(6557), 1, + anon_sym_PIPE, + STATE(4311), 1, + aux_sym_type_tuple_repeat1, + [160207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5625), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(6559), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [154866] = 4, + [160220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5627), 1, - anon_sym_in, - STATE(4037), 1, - aux_sym_expression_repeat2, - [154879] = 4, + ACTIONS(6561), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [160233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4372), 1, anon_sym_PIPE, - ACTIONS(5625), 1, - anon_sym_RBRACK, - STATE(4039), 1, - aux_sym_expression_repeat4, - [154892] = 4, + ACTIONS(6561), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [160246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5629), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [154905] = 4, + ACTIONS(6557), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [160259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [154918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3280), 1, - aux_sym_type_repeat1, - [154931] = 4, + ACTIONS(6563), 1, + anon_sym_PIPE, + STATE(4319), 1, + aux_sym_type_tuple_repeat1, + [160272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5631), 1, - anon_sym_RBRACE, - STATE(4042), 1, - aux_sym_expression_repeat3, - [154944] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6565), 1, + anon_sym_EQ, + STATE(3260), 1, + aux_sym_let_binding_repeat2, + [160285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5633), 1, + ACTIONS(6563), 1, anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [154957] = 2, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [160298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5635), 3, + ACTIONS(5442), 1, anon_sym_COMMA, + ACTIONS(6567), 1, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [154966] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [160311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_COMMA, - ACTIONS(5637), 1, - anon_sym_RPAREN, - STATE(4171), 1, - aux_sym_use_piece_repeat2, - [154979] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, + anon_sym_EQ, + STATE(3239), 1, + aux_sym_let_binding_repeat2, + [160324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5631), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [154992] = 4, + ACTIONS(6571), 1, + anon_sym_RBRACE, + STATE(4349), 1, + aux_sym_handler_repeat3, + [160337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6573), 1, + anon_sym_EQ, + STATE(3174), 1, + aux_sym_let_binding_repeat2, + [160350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5639), 1, + ACTIONS(6575), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [155005] = 4, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [160363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(5639), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [155018] = 2, + ACTIONS(6577), 1, + anon_sym_EQ, + STATE(3203), 1, + aux_sym_let_binding_repeat2, + [160376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 3, - anon_sym_COMMA, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, + ACTIONS(6579), 1, anon_sym_RBRACE, - [155027] = 4, + STATE(4309), 1, + aux_sym_do_block_repeat1, + [160389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6581), 1, + anon_sym_LPAREN, + STATE(996), 1, + sym_pattern_unit, + [160402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3306), 1, + aux_sym_type_repeat1, + [160415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6583), 1, + anon_sym_LPAREN, + STATE(1049), 1, + sym_pattern_unit, + [160428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5643), 1, - anon_sym_RBRACE, - STATE(4045), 1, - aux_sym_type_effect_suffix_repeat1, - [155040] = 4, + ACTIONS(6585), 1, + anon_sym_PIPE, + STATE(4322), 1, + aux_sym_type_tuple_repeat1, + [160441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5645), 1, - anon_sym_RBRACE, - STATE(3899), 1, - aux_sym_use_piece_repeat1, - [155053] = 4, + ACTIONS(6587), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [160454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5647), 1, + ACTIONS(6589), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [155066] = 4, + STATE(4310), 1, + aux_sym_pattern_repeat1, + [160467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5649), 1, - anon_sym_RPAREN, - STATE(4046), 1, - aux_sym_let_binding_repeat1, - [155079] = 4, + ACTIONS(6591), 1, + anon_sym_do, + STATE(4313), 1, + aux_sym_expression_repeat3, + [160480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(4924), 1, sym_id, - ACTIONS(5651), 1, + ACTIONS(6593), 1, anon_sym_DOT, - STATE(3968), 1, + STATE(3321), 1, aux_sym_expression_repeat1, - [155092] = 4, + [160493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5651), 1, + ACTIONS(6593), 1, anon_sym_PIPE, - STATE(4049), 1, + STATE(4314), 1, aux_sym_let_binding_repeat1, - [155105] = 4, + [160506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5653), 1, + ACTIONS(6595), 1, anon_sym_RPAREN, - STATE(4052), 1, - aux_sym_expression_repeat5, - [155118] = 2, + STATE(4316), 1, + aux_sym_expression_repeat3, + [160519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 3, + ACTIONS(5442), 1, anon_sym_COMMA, + ACTIONS(6597), 1, anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [155127] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [160532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5657), 1, + ACTIONS(6599), 1, anon_sym_RPAREN, - STATE(4180), 1, + STATE(4327), 1, aux_sym_type_tuple_repeat1, - [155140] = 4, + [160545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5659), 1, - anon_sym_RPAREN, - STATE(4187), 1, - aux_sym_use_piece_repeat2, - [155153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, + ACTIONS(6597), 1, anon_sym_SEMI_SEMI, - ACTIONS(5661), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155166] = 4, + STATE(4323), 1, + aux_sym_handler_type_repeat1, + [160558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4197), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155179] = 4, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6601), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_pattern_unit, + [160571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6603), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3320), 1, - aux_sym_type_repeat1, - [155192] = 4, + STATE(1668), 1, + sym_pattern_unit, + [160584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4223), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6605), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155205] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4323), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6607), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155218] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5663), 1, + ACTIONS(6607), 1, anon_sym_RBRACE, - STATE(4189), 1, - aux_sym_data_repeat4, - [155231] = 4, + STATE(4345), 1, + aux_sym_handler_repeat3, + [160623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_COMMA, - ACTIONS(5668), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [155244] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3393), 1, + aux_sym_type_repeat1, + [160636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4357), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6609), 1, anon_sym_RBRACE, - STATE(4070), 1, - aux_sym_expression_repeat3, - [155257] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4357), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6571), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155270] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5670), 1, - anon_sym_RPAREN, - STATE(4086), 1, + ACTIONS(6611), 1, + anon_sym_EQ, + STATE(4334), 1, aux_sym_let_binding_repeat1, - [155283] = 4, + [160675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(3645), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5672), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [155296] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [160688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4367), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6613), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155309] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5674), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [155322] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4382), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155335] = 4, + STATE(4353), 1, + aux_sym_handler_repeat3, + [160727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5676), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [155348] = 4, + ACTIONS(6617), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4448), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6619), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155361] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [160753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4448), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6619), 1, anon_sym_RBRACE, - STATE(4079), 1, - aux_sym_expression_repeat3, - [155374] = 4, + STATE(4356), 1, + aux_sym_handler_repeat3, + [160766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5678), 1, - anon_sym_in, - STATE(4080), 1, - aux_sym_expression_repeat2, - [155387] = 4, + ACTIONS(6621), 1, + anon_sym_SEMI_SEMI, + STATE(4340), 1, + aux_sym_handler_type_repeat1, + [160779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [155400] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6623), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [160792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5680), 1, + ACTIONS(5566), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [155413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, + ACTIONS(6625), 1, anon_sym_COMMA, - ACTIONS(5682), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [155426] = 4, + STATE(4646), 1, + aux_sym_module_export_repeat1, + [160805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(5684), 1, + ACTIONS(4629), 1, anon_sym_RBRACE, - STATE(4081), 1, - aux_sym_expression_repeat3, - [155439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(5686), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [155452] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [160818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3397), 1, + STATE(3341), 1, aux_sym_type_repeat1, - [155465] = 4, + [160831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(6627), 1, anon_sym_PIPE, - ACTIONS(5684), 1, - anon_sym_RBRACK, - STATE(4084), 1, - aux_sym_expression_repeat4, - [155478] = 4, + ACTIONS(6629), 1, + anon_sym_forall, + ACTIONS(6631), 1, + sym_id, + [160844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6633), 1, anon_sym_PIPE, - ACTIONS(5684), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [155491] = 4, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [160857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5674), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [155504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, + ACTIONS(6635), 1, anon_sym_PIPE, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [155517] = 4, + STATE(4365), 1, + aux_sym_type_tuple_repeat1, + [160870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, - anon_sym_COMMA, - ACTIONS(5696), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [155530] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6637), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [160883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5698), 1, - anon_sym_RPAREN, - STATE(4085), 1, - aux_sym_let_binding_repeat1, - [155543] = 4, + ACTIONS(6635), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [160896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_COMMA, - ACTIONS(5663), 1, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4639), 1, anon_sym_RBRACE, - STATE(4410), 1, - aux_sym_data_repeat4, - [155556] = 4, + STATE(4362), 1, + aux_sym_do_block_repeat1, + [160909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [155569] = 4, + ACTIONS(6639), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [160922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5702), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5705), 1, + ACTIONS(6641), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [155582] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [160935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5707), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155595] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6643), 1, + anon_sym_PIPE, + STATE(4368), 1, + aux_sym_type_tuple_repeat1, + [160948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - ACTIONS(5709), 1, + ACTIONS(6645), 1, anon_sym_in, - STATE(4088), 1, + STATE(4485), 1, aux_sym_expression_repeat2, - [155608] = 4, + [160961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5707), 1, + ACTIONS(6647), 1, anon_sym_RBRACK, - STATE(4091), 1, + STATE(4367), 1, aux_sym_expression_repeat4, - [155621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [155634] = 4, + [160974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [155647] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(5713), 1, - anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [155660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [155673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5715), 1, - anon_sym_RBRACE, - STATE(4099), 1, - aux_sym_expression_repeat3, - [155686] = 4, + ACTIONS(6647), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [160987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5717), 1, + ACTIONS(6643), 1, anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [155699] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5715), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [155712] = 4, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [161000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3370), 1, + STATE(3290), 1, aux_sym_type_repeat1, - [155725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(5719), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [155738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5719), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [155751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5721), 1, - anon_sym_RBRACK, - STATE(4408), 1, - aux_sym_expression_repeat4, - [155764] = 4, + [161013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5723), 1, - anon_sym_in, - STATE(4404), 1, - aux_sym_expression_repeat2, - [155777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5729), 1, - anon_sym_LT_DASH, - [155790] = 4, + ACTIONS(6649), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [161026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(5731), 1, + ACTIONS(6651), 1, anon_sym_RBRACE, - STATE(4104), 1, - aux_sym_type_effect_suffix_repeat1, - [155803] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [161039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6653), 1, anon_sym_SEMI_SEMI, - ACTIONS(5721), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155816] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [161052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5733), 1, - anon_sym_RPAREN, - STATE(4072), 1, + ACTIONS(6655), 1, + anon_sym_PIPE, + STATE(4376), 1, aux_sym_type_tuple_repeat1, - [155829] = 2, + [161065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 3, + ACTIONS(5514), 1, anon_sym_COMMA, + ACTIONS(6657), 1, anon_sym_RPAREN, - anon_sym_do, - [155838] = 4, + STATE(4370), 1, + aux_sym_pattern_repeat1, + [161078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5735), 1, + ACTIONS(6659), 1, anon_sym_RPAREN, - STATE(4393), 1, - aux_sym_let_binding_repeat1, - [155851] = 4, + STATE(4371), 1, + aux_sym_pattern_repeat1, + [161091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(4105), 1, + ACTIONS(6661), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [155864] = 4, + [161104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5739), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [155877] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(6663), 1, + anon_sym_in, + STATE(4373), 1, + aux_sym_expression_repeat2, + [161117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5739), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - STATE(4107), 1, - aux_sym_let_binding_repeat1, - [155890] = 4, + ACTIONS(6665), 1, + anon_sym_RBRACK, + STATE(4375), 1, + aux_sym_expression_repeat4, + [161130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(6667), 1, anon_sym_COMMA, - ACTIONS(5741), 1, - anon_sym_RPAREN, - STATE(4108), 1, - aux_sym_expression_repeat5, - [155903] = 4, + ACTIONS(6670), 1, + anon_sym_do, + STATE(4387), 1, + aux_sym_expression_repeat3, + [161143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(5743), 1, + ACTIONS(6672), 1, anon_sym_RPAREN, - STATE(4392), 1, - aux_sym_let_binding_repeat1, - [155916] = 4, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [161156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4133), 1, - anon_sym_RBRACE, - STATE(3407), 1, - aux_sym_expression_repeat3, - [155929] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(6672), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [161169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5745), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_RBRACE, - STATE(4388), 1, - aux_sym_let_binding_repeat3, - [155942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5747), 1, - anon_sym_LPAREN, - STATE(1078), 1, - sym_pattern_unit, - [155955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5749), 1, - anon_sym_LPAREN, - STATE(1080), 1, - sym_pattern_unit, - [155968] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [161182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3323), 1, + STATE(3313), 1, aux_sym_type_repeat1, - [155981] = 4, + [161195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5751), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6674), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [155994] = 4, + STATE(4378), 1, + aux_sym_type_effect_suffix_repeat1, + [161208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4177), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6676), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156007] = 4, + STATE(4379), 1, + aux_sym_record_type_repeat1, + [161221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5753), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [156020] = 4, + ACTIONS(6678), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [161234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, anon_sym_SEMI_SEMI, - ACTIONS(5758), 1, - anon_sym_RBRACE, - STATE(4133), 1, - aux_sym_let_binding_repeat3, - [156033] = 4, + STATE(4380), 1, + aux_sym_handler_type_repeat1, + [161247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4181), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156046] = 4, + ACTIONS(6680), 1, + anon_sym_COMMA, + ACTIONS(6683), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [161260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4183), 1, + ACTIONS(6685), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156059] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [161273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5760), 1, - anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_module_export_repeat2, - [156072] = 4, + ACTIONS(6687), 1, + anon_sym_EQ, + STATE(4384), 1, + aux_sym_let_binding_repeat1, + [161286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6689), 1, anon_sym_SEMI_SEMI, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(4135), 1, - aux_sym_expression_repeat3, - [156085] = 4, + STATE(4394), 1, + aux_sym_handler_type_repeat1, + [161299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5760), 1, - anon_sym_RPAREN, - STATE(4383), 1, - aux_sym_module_export_repeat1, - [156098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(4400), 1, + ACTIONS(6691), 1, + anon_sym_do, + STATE(4387), 1, aux_sym_expression_repeat3, - [156111] = 4, + [161312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4193), 1, - anon_sym_RBRACE, - STATE(4139), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(6693), 1, + anon_sym_RPAREN, + STATE(4584), 1, aux_sym_expression_repeat3, - [156124] = 4, + [161325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4193), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156137] = 4, + ACTIONS(4368), 1, + anon_sym_COMMA, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [161338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4195), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156150] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [161351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(5762), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [156163] = 4, + ACTIONS(6697), 1, + anon_sym_RPAREN, + STATE(4642), 1, + aux_sym_module_repeat2, + [161364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4249), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156176] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3361), 1, + aux_sym_type_repeat1, + [161377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4249), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6699), 1, anon_sym_RBRACE, - STATE(4142), 1, - aux_sym_expression_repeat3, - [156189] = 4, + STATE(4390), 1, + aux_sym_type_effect_suffix_repeat1, + [161390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5764), 1, - anon_sym_in, - STATE(4143), 1, - aux_sym_expression_repeat2, - [156202] = 4, + ACTIONS(6701), 1, + anon_sym_RPAREN, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [161403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, + ACTIONS(6703), 1, anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [156215] = 4, + ACTIONS(6705), 1, + anon_sym_forall, + ACTIONS(6707), 1, + sym_id, + [161416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(5766), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [156228] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6709), 1, + anon_sym_RBRACE, + STATE(4397), 1, + aux_sym_do_block_repeat1, + [161429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6711), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3402), 1, - aux_sym_type_repeat1, - [156241] = 4, + STATE(1577), 1, + sym_pattern_unit, + [161442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5768), 1, - anon_sym_RPAREN, - STATE(3865), 1, + ACTIONS(6713), 1, + anon_sym_EQ, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [156254] = 4, + [161455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5770), 1, - anon_sym_RBRACE, - STATE(4144), 1, - aux_sym_expression_repeat3, - [156267] = 4, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6715), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_pattern_unit, + [161468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, - anon_sym_COMMA, - ACTIONS(5772), 1, + ACTIONS(4908), 1, anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_module_repeat2, - [156280] = 4, + ACTIONS(6717), 1, + anon_sym_COMMA, + STATE(4636), 1, + aux_sym_module_repeat1, + [161481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5772), 1, + ACTIONS(6719), 1, anon_sym_RPAREN, - STATE(4381), 1, - aux_sym_module_repeat2, - [156293] = 4, + STATE(4352), 1, + aux_sym_pattern_repeat1, + [161494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - ACTIONS(5774), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [156306] = 4, + ACTIONS(6721), 1, + anon_sym_do, + STATE(4400), 1, + aux_sym_expression_repeat3, + [161507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4924), 1, + sym_id, + ACTIONS(6723), 1, + anon_sym_DOT, + STATE(3321), 1, + aux_sym_expression_repeat1, + [161520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(6723), 1, anon_sym_PIPE, - ACTIONS(5770), 1, - anon_sym_RBRACK, - STATE(4147), 1, - aux_sym_expression_repeat4, - [156319] = 4, + STATE(3416), 1, + aux_sym_let_binding_repeat1, + [161533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5779), 1, + ACTIONS(6725), 1, anon_sym_RPAREN, - STATE(4156), 1, - aux_sym_module_repeat1, - [156332] = 4, + STATE(4401), 1, + aux_sym_expression_repeat3, + [161546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5770), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [156345] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3409), 1, + aux_sym_type_repeat1, + [161559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5390), 1, anon_sym_COMMA, - ACTIONS(5781), 1, + ACTIONS(6697), 1, anon_sym_RPAREN, - STATE(4375), 1, - aux_sym_module_repeat1, - [156358] = 4, + STATE(4632), 1, + aux_sym_module_repeat3, + [161572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5783), 1, + ACTIONS(6727), 1, anon_sym_RPAREN, - STATE(4156), 1, - aux_sym_module_repeat1, - [156371] = 4, + STATE(4407), 1, + aux_sym_type_tuple_repeat1, + [161585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5390), 1, anon_sym_COMMA, - ACTIONS(5785), 1, + ACTIONS(6697), 1, anon_sym_RPAREN, - STATE(4148), 1, - aux_sym_let_binding_repeat1, - [156384] = 4, + STATE(4628), 1, + aux_sym_module_repeat3, + [161598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_RPAREN, - STATE(4150), 1, + ACTIONS(6729), 1, + anon_sym_EQ, + STATE(4411), 1, aux_sym_let_binding_repeat1, - [156397] = 4, + [161611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(6731), 3, + anon_sym_COMMA, anon_sym_SEMI_SEMI, - ACTIONS(5789), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(5791), 1, - anon_sym_in, - STATE(4154), 1, - aux_sym_expression_repeat2, - [156423] = 4, + [161620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_RBRACK, - STATE(4157), 1, - aux_sym_expression_repeat4, - [156436] = 4, + ACTIONS(6733), 1, + anon_sym_EQ, + STATE(3243), 1, + aux_sym_let_binding_repeat2, + [161633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(5793), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [156449] = 4, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6735), 1, + anon_sym_LPAREN, + STATE(1722), 1, + sym_pattern_unit, + [161646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5793), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [156462] = 2, + ACTIONS(3079), 1, + aux_sym_type_unit_token1, + ACTIONS(6737), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_pattern_unit, + [161659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 3, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(6739), 1, anon_sym_RBRACE, - [156471] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [156484] = 4, + ACTIONS(6741), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [161685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3396), 1, - aux_sym_type_repeat1, - [156497] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5797), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, anon_sym_RBRACE, - STATE(4162), 1, - aux_sym_expression_repeat3, - [156510] = 4, + STATE(4428), 1, + aux_sym_handler_repeat3, + [161711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5802), 1, - anon_sym_RPAREN, - STATE(4171), 1, - aux_sym_use_piece_repeat2, - [156523] = 4, + ACTIONS(6745), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5804), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [156536] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3379), 1, + aux_sym_type_repeat1, + [161737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 3, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(6747), 1, anon_sym_RBRACE, - [156545] = 4, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5797), 1, - anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [156558] = 4, + ACTIONS(6747), 1, + anon_sym_RBRACE, + STATE(4432), 1, + aux_sym_handler_repeat3, + [161763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5808), 1, + ACTIONS(6749), 1, anon_sym_RPAREN, - STATE(4365), 1, - aux_sym_use_piece_repeat2, - [156571] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [161776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5810), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [156584] = 4, + ACTIONS(6751), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4388), 1, anon_sym_PIPE, - ACTIONS(5810), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [156597] = 2, + ACTIONS(6753), 1, + anon_sym_EQ, + STATE(3324), 1, + aux_sym_let_binding_repeat2, + [161802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 3, - anon_sym_COMMA, - anon_sym_SEMI_SEMI, - anon_sym_RBRACE, - [156606] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6755), 1, + anon_sym_EQ, + STATE(3231), 1, + aux_sym_let_binding_repeat2, + [161815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5814), 1, + ACTIONS(6757), 1, anon_sym_RBRACE, - STATE(4097), 1, - aux_sym_type_effect_suffix_repeat1, - [156619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - ACTIONS(5816), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_type_tuple_repeat1, - [156632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5818), 1, - anon_sym_LPAREN, - STATE(996), 1, - sym_pattern_unit, - [156645] = 2, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 3, + ACTIONS(4384), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(6757), 1, anon_sym_RBRACE, - [156654] = 4, + STATE(4437), 1, + aux_sym_handler_repeat3, + [161841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6759), 1, anon_sym_COMMA, - ACTIONS(5822), 1, - anon_sym_RPAREN, - STATE(4168), 1, - aux_sym_let_binding_repeat1, - [156667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5824), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [156680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3403), 1, - aux_sym_type_repeat1, - [156693] = 4, + ACTIONS(6762), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5824), 1, - anon_sym_PIPE, - STATE(4172), 1, - aux_sym_let_binding_repeat1, - [156706] = 4, + ACTIONS(6764), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [161867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(5826), 1, - anon_sym_RPAREN, - STATE(4171), 1, - aux_sym_use_piece_repeat2, - [156719] = 4, + ACTIONS(6766), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(6768), 1, anon_sym_COMMA, - ACTIONS(5828), 1, + ACTIONS(6770), 1, anon_sym_RPAREN, - STATE(4174), 1, - aux_sym_expression_repeat5, - [156732] = 4, + STATE(4622), 1, + aux_sym_use_piece_repeat2, + [161893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5833), 1, - anon_sym_RBRACE, - STATE(4189), 1, - aux_sym_data_repeat4, - [156745] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6772), 1, + anon_sym_EQ, + STATE(3237), 1, + aux_sym_let_binding_repeat2, + [161906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3353), 1, + STATE(3366), 1, aux_sym_type_repeat1, - [156758] = 4, + [161919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5835), 1, - anon_sym_LT_DASH, - [156771] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6774), 1, + anon_sym_RBRACE, + STATE(4442), 1, + aux_sym_handler_repeat3, + [161932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5837), 1, - anon_sym_RPAREN, - STATE(4180), 1, + ACTIONS(6776), 1, + anon_sym_PIPE, + STATE(4429), 1, aux_sym_type_tuple_repeat1, - [156784] = 4, + [161945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4279), 1, - anon_sym_RBRACE, - STATE(4202), 1, - aux_sym_expression_repeat3, - [156797] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6776), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [161958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5839), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_pattern_unit, - [156810] = 4, + ACTIONS(4384), 1, + anon_sym_COMMA, + ACTIONS(6774), 1, + anon_sym_RBRACE, + STATE(4444), 1, + aux_sym_handler_repeat3, + [161971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5841), 1, - anon_sym_LPAREN, - STATE(1208), 1, - sym_pattern_unit, - [156823] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6778), 1, + anon_sym_RPAREN, + STATE(4436), 1, + aux_sym_pattern_repeat1, + [161984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(6780), 3, + anon_sym_COMMA, anon_sym_SEMI_SEMI, - ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156836] = 4, + [161993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4129), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156849] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6782), 1, + anon_sym_RPAREN, + STATE(4443), 1, + aux_sym_pattern_repeat1, + [162006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4119), 1, + ACTIONS(5240), 1, + anon_sym_COMMA, + ACTIONS(6784), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156862] = 4, + STATE(4618), 1, + aux_sym_use_piece_repeat1, + [162019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4117), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156875] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_PIPE, + STATE(4450), 1, + aux_sym_type_tuple_repeat1, + [162032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4089), 1, - anon_sym_RBRACE, - STATE(4199), 1, - aux_sym_expression_repeat3, - [156888] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [162045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3379), 1, - aux_sym_type_repeat1, - [156901] = 4, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6788), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [162058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4089), 1, + ACTIONS(5240), 1, + anon_sym_COMMA, + ACTIONS(6784), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156914] = 4, + STATE(4460), 1, + aux_sym_use_piece_repeat1, + [162071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5845), 1, - anon_sym_LT_DASH, - [156927] = 4, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(6793), 1, + anon_sym_RBRACE, + STATE(4460), 1, + aux_sym_use_piece_repeat1, + [162084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5847), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1223), 1, - sym_pattern_unit, - [156940] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3326), 1, + aux_sym_type_repeat1, + [162097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5849), 1, - anon_sym_LT_DASH, - [156953] = 4, + ACTIONS(6795), 1, + anon_sym_COMMA, + ACTIONS(6797), 1, + anon_sym_RBRACE, + STATE(4606), 1, + aux_sym_data_repeat4, + [162110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4406), 1, anon_sym_SEMI_SEMI, - ACTIONS(4279), 1, + ACTIONS(6799), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [156966] = 4, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [162123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(3649), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5851), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [156979] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [162136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6801), 1, + anon_sym_PIPE, + STATE(4457), 1, + aux_sym_type_tuple_repeat1, + [162149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5853), 1, + ACTIONS(6803), 1, anon_sym_EQ, - STATE(3988), 1, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [156992] = 4, + [162162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6805), 1, anon_sym_SEMI_SEMI, - ACTIONS(4313), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157005] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [162175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5855), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [157018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, + ACTIONS(6805), 1, anon_sym_SEMI_SEMI, - ACTIONS(4149), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157031] = 4, + STATE(4458), 1, + aux_sym_handler_type_repeat1, + [162188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4149), 1, - anon_sym_RBRACE, - STATE(4209), 1, - aux_sym_expression_repeat3, - [157044] = 4, + ACTIONS(4388), 1, + anon_sym_PIPE, + ACTIONS(6807), 1, + anon_sym_EQ, + STATE(3240), 1, + aux_sym_let_binding_repeat2, + [162201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5857), 1, - anon_sym_in, - STATE(4210), 1, - aux_sym_expression_repeat2, - [157057] = 4, + ACTIONS(6809), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [162214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5859), 1, - anon_sym_do, - STATE(4207), 1, - aux_sym_module_export_repeat1, - [157070] = 4, + ACTIONS(6811), 1, + anon_sym_SEMI_SEMI, + STATE(4603), 1, + aux_sym_handler_type_repeat1, + [162227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [157083] = 4, + ACTIONS(6813), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [162236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(5861), 1, + ACTIONS(6815), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [157096] = 4, + STATE(3590), 1, + aux_sym_module_repeat2, + [162249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6817), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + STATE(1461), 1, + sym_pattern_unit, + [162262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, sym_id, - STATE(3357), 1, + STATE(3293), 1, aux_sym_type_repeat1, - [157109] = 4, + [162275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5863), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [157122] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, + ACTIONS(6811), 1, anon_sym_SEMI_SEMI, - ACTIONS(5865), 1, - anon_sym_RBRACE, - STATE(4211), 1, - aux_sym_expression_repeat3, - [157135] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [162288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6819), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3351), 1, - aux_sym_type_repeat1, - [157148] = 4, + STATE(1462), 1, + sym_pattern_unit, + [162301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5867), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [157161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(5865), 1, - anon_sym_RBRACK, - STATE(4215), 1, - aux_sym_expression_repeat4, - [157174] = 4, + ACTIONS(6821), 1, + anon_sym_RPAREN, + STATE(4464), 1, + aux_sym_pattern_repeat1, + [162314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3374), 1, - aux_sym_type_repeat1, - [157187] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4613), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [162327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5865), 1, + ACTIONS(6823), 1, anon_sym_RBRACK, - STATE(4358), 1, + STATE(4487), 1, aux_sym_expression_repeat4, - [157200] = 4, + [162340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5869), 1, - anon_sym_EQ, - STATE(4208), 1, - aux_sym_let_binding_repeat1, - [157213] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3329), 1, - aux_sym_type_repeat1, - [157226] = 4, + ACTIONS(6825), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [162353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5871), 1, - anon_sym_RPAREN, - STATE(4216), 1, + ACTIONS(6827), 1, + anon_sym_EQ, + STATE(4466), 1, aux_sym_let_binding_repeat1, - [157239] = 4, + [162366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5873), 1, - anon_sym_RPAREN, - STATE(4218), 1, - aux_sym_let_binding_repeat1, - [157252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3313), 1, - aux_sym_type_repeat1, - [157265] = 4, + ACTIONS(6829), 1, + anon_sym_SEMI_SEMI, + STATE(4467), 1, + aux_sym_handler_type_repeat1, + [162379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5875), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157278] = 4, + ACTIONS(6831), 3, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_TILDE, + [162388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(5877), 1, + ACTIONS(4780), 1, anon_sym_in, - STATE(4221), 1, + ACTIONS(6833), 1, + anon_sym_COMMA, + STATE(4485), 1, aux_sym_expression_repeat2, - [157291] = 4, + [162401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(6836), 1, + anon_sym_PIPE, + ACTIONS(6838), 1, + anon_sym_forall, + ACTIONS(6840), 1, sym_id, - STATE(3309), 1, - aux_sym_type_repeat1, - [157304] = 4, + [162414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(5056), 1, anon_sym_PIPE, - ACTIONS(5875), 1, + ACTIONS(6842), 1, anon_sym_RBRACK, - STATE(4224), 1, + STATE(4488), 1, aux_sym_expression_repeat4, - [157317] = 4, + [162427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(5879), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [157330] = 4, + ACTIONS(6844), 1, + anon_sym_PIPE, + ACTIONS(6847), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [162440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3368), 1, + STATE(3285), 1, aux_sym_type_repeat1, - [157343] = 4, + [162453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5879), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [157356] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6849), 1, + anon_sym_EQ, + STATE(4470), 1, + aux_sym_let_binding_repeat1, + [162466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - ACTIONS(5881), 1, + ACTIONS(6851), 1, anon_sym_RBRACE, - STATE(4429), 1, + STATE(4596), 1, aux_sym_type_effect_suffix_repeat1, - [157369] = 4, + [162479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3308), 1, - aux_sym_type_repeat1, - [157382] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(6853), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [162492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [157395] = 4, + ACTIONS(6853), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [162505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5883), 1, - anon_sym_RBRACE, - STATE(4230), 1, - aux_sym_expression_repeat3, - [157408] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6855), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [162518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(6857), 3, anon_sym_LPAREN, - ACTIONS(4522), 1, + anon_sym_DOT, sym_id, - STATE(3377), 1, - aux_sym_type_repeat1, - [157421] = 4, + [162527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(6859), 1, anon_sym_COMMA, - ACTIONS(5885), 1, - anon_sym_PIPE, - STATE(3662), 1, - aux_sym_let_binding_repeat1, - [157434] = 4, + ACTIONS(6862), 1, + anon_sym_RBRACE, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [162540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5883), 1, + ACTIONS(6864), 1, anon_sym_RPAREN, - STATE(4098), 1, - aux_sym_expression_repeat5, - [157447] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [162553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3360), 1, - aux_sym_type_repeat1, - [157460] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6866), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [162566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(6868), 3, anon_sym_COMMA, - ACTIONS(5887), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_primitive_type_repeat2, - [157473] = 4, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [162575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(5887), 1, + ACTIONS(6768), 1, + anon_sym_COMMA, + ACTIONS(6870), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_primitive_type_repeat1, - [157486] = 4, + STATE(4547), 1, + aux_sym_use_piece_repeat2, + [162588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3297), 1, - aux_sym_type_repeat1, - [157499] = 4, + ACTIONS(6872), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [162597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5889), 1, - anon_sym_LT_DASH, - [157512] = 4, + ACTIONS(4745), 1, + anon_sym_COMMA, + ACTIONS(6874), 1, + anon_sym_RPAREN, + STATE(4473), 1, + aux_sym_module_repeat2, + [162610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3350), 1, + STATE(3318), 1, aux_sym_type_repeat1, - [157525] = 4, + [162623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(6717), 1, anon_sym_COMMA, - ACTIONS(5891), 1, - anon_sym_RBRACE, - STATE(4237), 1, - aux_sym_type_effect_suffix_repeat1, - [157538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3376), 1, - aux_sym_type_repeat1, - [157551] = 4, + ACTIONS(6876), 1, + anon_sym_RPAREN, + STATE(4554), 1, + aux_sym_module_repeat1, + [162636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(5893), 1, + ACTIONS(6878), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4211), 1, aux_sym_type_tuple_repeat1, - [157564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3349), 1, - aux_sym_type_repeat1, - [157577] = 4, + [162649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5895), 1, - anon_sym_LPAREN, - STATE(1212), 1, - sym_pattern_unit, - [157590] = 4, + ACTIONS(4745), 1, + anon_sym_COMMA, + ACTIONS(6874), 1, + anon_sym_RPAREN, + STATE(3590), 1, + aux_sym_module_repeat2, + [162662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3352), 1, - aux_sym_type_repeat1, - [157603] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6880), 1, + anon_sym_PIPE, + STATE(4494), 1, + aux_sym_type_tuple_repeat1, + [162675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5897), 1, - anon_sym_LT_DASH, - [157616] = 4, + ACTIONS(6625), 1, + anon_sym_COMMA, + ACTIONS(6882), 1, + anon_sym_RPAREN, + STATE(4561), 1, + aux_sym_module_export_repeat1, + [162688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3345), 1, - aux_sym_type_repeat1, - [157629] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6880), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [162701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5899), 1, - anon_sym_LT_DASH, - [157642] = 4, + ACTIONS(6884), 1, + anon_sym_COMMA, + ACTIONS(6887), 1, + anon_sym_RBRACE, + STATE(4510), 1, + aux_sym_effect_repeat1, + [162714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3348), 1, - aux_sym_type_repeat1, - [157655] = 4, + ACTIONS(5514), 1, + anon_sym_COMMA, + ACTIONS(6889), 1, + anon_sym_RPAREN, + STATE(4497), 1, + aux_sym_pattern_repeat1, + [162727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5901), 1, + ACTIONS(6891), 1, anon_sym_RPAREN, - STATE(4239), 1, - aux_sym_let_binding_repeat1, - [157668] = 4, + STATE(4498), 1, + aux_sym_pattern_repeat1, + [162740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3339), 1, + STATE(3329), 1, aux_sym_type_repeat1, - [157681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - sym_id, - ACTIONS(5903), 1, - anon_sym_DOT, - STATE(3968), 1, - aux_sym_expression_repeat1, - [157694] = 4, + [162753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3346), 1, - aux_sym_type_repeat1, - [157707] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(6893), 1, + anon_sym_RPAREN, + STATE(4584), 1, + aux_sym_expression_repeat3, + [162766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5903), 1, + ACTIONS(6895), 1, anon_sym_PIPE, - STATE(4242), 1, - aux_sym_let_binding_repeat1, - [157720] = 4, + STATE(4509), 1, + aux_sym_type_tuple_repeat1, + [162779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3335), 1, - aux_sym_type_repeat1, - [157733] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(4523), 1, + anon_sym_RBRACE, + STATE(4479), 1, + aux_sym_do_block_repeat1, + [162792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5905), 1, + ACTIONS(6897), 1, anon_sym_RPAREN, - STATE(4243), 1, - aux_sym_expression_repeat5, - [157746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3331), 1, - aux_sym_type_repeat1, - [157759] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [162805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5907), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [157772] = 4, + ACTIONS(6899), 1, + anon_sym_RPAREN, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [162818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3341), 1, - aux_sym_type_repeat1, - [157785] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6901), 1, + anon_sym_PIPE, + STATE(4481), 1, + aux_sym_type_tuple_repeat1, + [162831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5909), 1, - anon_sym_RPAREN, - STATE(4252), 1, + ACTIONS(6901), 1, + anon_sym_PIPE, + STATE(4396), 1, aux_sym_type_tuple_repeat1, - [157798] = 4, + [162844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3328), 1, - aux_sym_type_repeat1, - [157811] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6895), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [162857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5911), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [157824] = 4, + ACTIONS(6903), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [162870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3324), 1, + STATE(3344), 1, aux_sym_type_repeat1, - [157837] = 4, + [162883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5913), 1, - anon_sym_LPAREN, - STATE(1216), 1, - sym_pattern_unit, - [157850] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(6905), 1, + anon_sym_in, + STATE(4485), 1, + aux_sym_expression_repeat2, + [162896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3322), 1, - aux_sym_type_repeat1, - [157863] = 4, + ACTIONS(6683), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [162905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(5915), 1, - anon_sym_LPAREN, - STATE(1221), 1, - sym_pattern_unit, - [157876] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_RBRACK, + STATE(4488), 1, + aux_sym_expression_repeat4, + [162918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3327), 1, - aux_sym_type_repeat1, - [157889] = 4, + ACTIONS(6795), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RBRACE, + STATE(4538), 1, + aux_sym_data_repeat4, + [162931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - ACTIONS(5917), 1, - anon_sym_EQ, - STATE(3988), 1, + ACTIONS(6909), 1, + anon_sym_PIPE, + STATE(4073), 1, aux_sym_let_binding_repeat1, - [157902] = 4, + [162944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3307), 1, - aux_sym_type_repeat1, - [157915] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6911), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [162957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5919), 1, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(6916), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157928] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [162970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3315), 1, - aux_sym_type_repeat1, - [157941] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(6918), 1, + anon_sym_RBRACK, + STATE(3422), 1, + aux_sym_expression_repeat4, + [162983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4506), 1, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(6920), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157954] = 4, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [162996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3311), 1, + STATE(3357), 1, aux_sym_type_repeat1, - [157967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4490), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [157980] = 4, + [163009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3294), 1, - aux_sym_type_repeat1, - [157993] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6922), 1, + anon_sym_PIPE, + STATE(4579), 1, + aux_sym_type_tuple_repeat1, + [163022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4309), 1, + ACTIONS(5048), 1, + anon_sym_COMMA, + ACTIONS(6924), 1, anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [158006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3279), 1, - aux_sym_type_repeat1, - [158019] = 4, + STATE(4496), 1, + aux_sym_record_type_repeat1, + [163035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(3655), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5921), 1, - anon_sym_do, - STATE(4268), 1, - aux_sym_module_export_repeat1, - [158032] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [163048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3281), 1, - aux_sym_type_repeat1, - [158045] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6926), 1, + anon_sym_PIPE, + STATE(4521), 1, + aux_sym_type_tuple_repeat1, + [163061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4426), 1, + ACTIONS(6928), 1, + anon_sym_COMMA, + ACTIONS(6931), 1, anon_sym_RBRACE, - STATE(4286), 1, - aux_sym_expression_repeat3, - [158058] = 4, + STATE(4538), 1, + aux_sym_data_repeat4, + [163074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3283), 1, - aux_sym_type_repeat1, - [158071] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(6933), 1, + anon_sym_EQ, + STATE(4576), 1, + aux_sym_let_binding_repeat1, + [163087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(5442), 1, + anon_sym_COMMA, + ACTIONS(6935), 1, anon_sym_SEMI_SEMI, - ACTIONS(4426), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [158084] = 4, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [163100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3321), 1, + STATE(3364), 1, aux_sym_type_repeat1, - [158097] = 4, + [163113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6768), 1, anon_sym_COMMA, - ACTIONS(5923), 1, - anon_sym_EQ, - STATE(4272), 1, - aux_sym_let_binding_repeat1, - [158110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3318), 1, - aux_sym_type_repeat1, - [158123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5925), 1, - anon_sym_LT_DASH, - [158136] = 4, + ACTIONS(6937), 1, + anon_sym_RPAREN, + STATE(4547), 1, + aux_sym_use_piece_repeat2, + [163126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3314), 1, - aux_sym_type_repeat1, - [158149] = 4, + ACTIONS(6939), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [163135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(6941), 3, + anon_sym_COMMA, anon_sym_SEMI_SEMI, - ACTIONS(4363), 1, anon_sym_RBRACE, - STATE(4292), 1, - aux_sym_expression_repeat3, - [158162] = 4, + [163144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3299), 1, - aux_sym_type_repeat1, - [158175] = 4, + ACTIONS(6768), 1, + anon_sym_COMMA, + ACTIONS(6943), 1, + anon_sym_RPAREN, + STATE(4500), 1, + aux_sym_use_piece_repeat2, + [163157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5927), 1, - anon_sym_LT_DASH, - [158188] = 4, + ACTIONS(6945), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [163166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - sym_id, - STATE(3300), 1, - aux_sym_type_repeat1, - [158201] = 4, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6950), 1, + anon_sym_RPAREN, + STATE(4547), 1, + aux_sym_use_piece_repeat2, + [163179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5929), 1, - anon_sym_LT_DASH, - [158214] = 4, + ACTIONS(6952), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [163188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4522), 1, + ACTIONS(4663), 1, sym_id, - STATE(3304), 1, + STATE(3375), 1, aux_sym_type_repeat1, - [158227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4363), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [158240] = 4, + [163201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5931), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [158253] = 4, + ACTIONS(6935), 1, + anon_sym_SEMI_SEMI, + STATE(4522), 1, + aux_sym_handler_type_repeat1, + [163214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6717), 1, anon_sym_COMMA, - ACTIONS(5933), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [158266] = 4, + ACTIONS(6954), 1, + anon_sym_RPAREN, + STATE(4554), 1, + aux_sym_module_repeat1, + [163227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6717), 1, anon_sym_COMMA, - ACTIONS(5935), 1, - anon_sym_do, - STATE(4305), 1, - aux_sym_module_export_repeat1, - [158279] = 4, + ACTIONS(6956), 1, + anon_sym_RPAREN, + STATE(4504), 1, + aux_sym_module_repeat1, + [163240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - ACTIONS(5937), 1, - anon_sym_EQ, - STATE(4306), 1, - aux_sym_let_binding_repeat1, - [158292] = 4, + ACTIONS(6958), 1, + sym_id, + STATE(3315), 1, + aux_sym_handler_repeat1, + [163253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6960), 1, anon_sym_COMMA, - ACTIONS(5939), 1, - anon_sym_EQ, - STATE(4318), 1, - aux_sym_let_binding_repeat1, - [158305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5941), 1, - anon_sym_LT_DASH, - [158318] = 4, + ACTIONS(6963), 1, + anon_sym_RPAREN, + STATE(4554), 1, + aux_sym_module_repeat1, + [163266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(5943), 1, - anon_sym_do, - STATE(4320), 1, - aux_sym_module_export_repeat1, - [158331] = 4, + ACTIONS(6965), 1, + anon_sym_RPAREN, + STATE(4506), 1, + aux_sym_module_repeat2, + [163279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(5945), 1, + ACTIONS(6965), 1, anon_sym_RPAREN, - STATE(4321), 1, - aux_sym_let_binding_repeat1, - [158344] = 4, + STATE(3590), 1, + aux_sym_module_repeat2, + [163292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(5947), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1512), 1, - sym_pattern_unit, - [158357] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5949), 1, - anon_sym_LT_DASH, - [158370] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3377), 1, + aux_sym_type_repeat1, + [163305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2641), 1, aux_sym_type_unit_token1, - ACTIONS(5951), 1, + ACTIONS(6967), 1, anon_sym_LPAREN, - STATE(1513), 1, + STATE(1522), 1, sym_pattern_unit, - [158383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5953), 1, - anon_sym_LT_DASH, - [158396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5955), 1, - anon_sym_LT_DASH, - [158409] = 4, + [163318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(3627), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5957), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [158422] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [163331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4307), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [158435] = 4, + ACTIONS(6625), 1, + anon_sym_COMMA, + ACTIONS(6969), 1, + anon_sym_RPAREN, + STATE(4508), 1, + aux_sym_module_export_repeat1, + [163344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6971), 1, anon_sym_COMMA, - ACTIONS(5959), 1, - anon_sym_do, - STATE(3398), 1, + ACTIONS(6974), 1, + anon_sym_RPAREN, + STATE(4561), 1, aux_sym_module_export_repeat1, - [158448] = 4, + [163357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [158461] = 4, + ACTIONS(2641), 1, + aux_sym_type_unit_token1, + ACTIONS(6976), 1, + anon_sym_LPAREN, + STATE(1523), 1, + sym_pattern_unit, + [163370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5351), 1, anon_sym_COMMA, - ACTIONS(5961), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [158474] = 4, + ACTIONS(6969), 1, + anon_sym_RPAREN, + STATE(4650), 1, + aux_sym_module_export_repeat2, + [163383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5963), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [158487] = 4, + ACTIONS(6978), 1, + anon_sym_RPAREN, + STATE(4536), 1, + aux_sym_pattern_repeat1, + [163396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(5965), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [158500] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3385), 1, + aux_sym_type_repeat1, + [163409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5967), 3, + ACTIONS(6980), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(6982), 1, anon_sym_RBRACE, - [158509] = 4, + STATE(4510), 1, + aux_sym_effect_repeat1, + [163422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5969), 1, - anon_sym_do, - STATE(4323), 1, - aux_sym_module_export_repeat1, - [158522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, + ACTIONS(6984), 1, anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5971), 1, - anon_sym_LT_DASH, - [158535] = 4, + STATE(4539), 1, + aux_sym_let_binding_repeat1, + [163435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(5973), 1, - anon_sym_EQ, - STATE(4324), 1, - aux_sym_let_binding_repeat1, - [158548] = 4, + ACTIONS(6986), 1, + anon_sym_SEMI_SEMI, + STATE(4540), 1, + aux_sym_handler_type_repeat1, + [163448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, - anon_sym_COMMA, - ACTIONS(5975), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_module_repeat2, - [158561] = 4, + ACTIONS(6988), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6991), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [163461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6163), 3, anon_sym_COMMA, - ACTIONS(5977), 1, - anon_sym_RPAREN, - STATE(4336), 1, - aux_sym_let_binding_repeat1, - [158574] = 4, + anon_sym_EQ, + anon_sym_PIPE, + [163470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5979), 1, - anon_sym_LT_DASH, - [158587] = 4, + ACTIONS(6993), 1, + anon_sym_PIPE, + ACTIONS(6995), 1, + anon_sym_forall, + ACTIONS(6997), 1, + sym_id, + [163483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5981), 1, + ACTIONS(6999), 1, anon_sym_RPAREN, - STATE(4337), 1, - aux_sym_let_binding_repeat1, - [158600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5983), 1, - anon_sym_LT_DASH, - [158613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5985), 1, - anon_sym_LT_DASH, - [158626] = 4, + STATE(4517), 1, + aux_sym_pattern_repeat1, + [163496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(5987), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [158639] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3286), 1, + aux_sym_type_repeat1, + [163509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5514), 1, anon_sym_COMMA, - ACTIONS(5989), 1, + ACTIONS(7001), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [158652] = 4, + STATE(4518), 1, + aux_sym_pattern_repeat1, + [163522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(7003), 1, anon_sym_COMMA, - ACTIONS(5991), 1, + ACTIONS(7006), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [158665] = 4, + STATE(4575), 1, + aux_sym_pattern_repeat1, + [163535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(5993), 1, + ACTIONS(6163), 1, anon_sym_EQ, - STATE(3988), 1, + ACTIONS(7008), 1, + anon_sym_COMMA, + STATE(4576), 1, aux_sym_let_binding_repeat1, - [158678] = 4, + [163548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(5995), 1, - anon_sym_LT_DASH, - [158691] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3281), 1, + aux_sym_type_repeat1, + [163561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5997), 1, - anon_sym_do, - STATE(4335), 1, - aux_sym_module_export_repeat1, - [158704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4189), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [158717] = 4, + ACTIONS(7011), 1, + anon_sym_PIPE, + STATE(4520), 1, + aux_sym_type_tuple_repeat1, + [163574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(5999), 1, - anon_sym_EQ, - STATE(4338), 1, - aux_sym_let_binding_repeat1, - [158730] = 4, + ACTIONS(7011), 1, + anon_sym_PIPE, + STATE(4396), 1, + aux_sym_type_tuple_repeat1, + [163587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6001), 1, - anon_sym_LT_DASH, - [158743] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3376), 1, + aux_sym_type_repeat1, + [163600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6003), 1, - anon_sym_LT_DASH, - [158756] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3307), 1, + aux_sym_type_repeat1, + [163613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6005), 1, - anon_sym_LT_DASH, - [158769] = 4, + ACTIONS(5038), 1, + anon_sym_COMMA, + ACTIONS(7013), 1, + anon_sym_in, + STATE(4524), 1, + aux_sym_expression_repeat2, + [163626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6007), 1, - anon_sym_LT_DASH, - [158782] = 4, + ACTIONS(5056), 1, + anon_sym_PIPE, + ACTIONS(7015), 1, + anon_sym_RBRACK, + STATE(4526), 1, + aux_sym_expression_repeat4, + [163639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6009), 1, - anon_sym_LT_DASH, - [158795] = 4, + ACTIONS(6670), 1, + anon_sym_RPAREN, + ACTIONS(7017), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_expression_repeat3, + [163652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6670), 3, anon_sym_COMMA, - ACTIONS(6011), 1, + anon_sym_RPAREN, anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [158808] = 4, + [163661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(6013), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1057), 1, - sym_pattern_unit, - [158821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6015), 1, - anon_sym_LT_DASH, - [158834] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3380), 1, + aux_sym_type_repeat1, + [163674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - aux_sym_type_unit_token1, - ACTIONS(6017), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1021), 1, - sym_pattern_unit, - [158847] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3382), 1, + aux_sym_type_repeat1, + [163687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(6019), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [158860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4189), 1, + ACTIONS(7020), 1, anon_sym_RBRACE, - STATE(4319), 1, - aux_sym_expression_repeat3, - [158873] = 4, + STATE(4527), 1, + aux_sym_data_repeat4, + [163700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(6021), 1, - anon_sym_in, - STATE(4322), 1, - aux_sym_expression_repeat2, - [158886] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3338), 1, + aux_sym_type_repeat1, + [163713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4565), 1, - anon_sym_in, - ACTIONS(6023), 1, + ACTIONS(7022), 1, anon_sym_COMMA, - STATE(4355), 1, - aux_sym_expression_repeat2, - [158899] = 4, + ACTIONS(7025), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [163726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6026), 1, - anon_sym_do, - STATE(4348), 1, - aux_sym_module_export_repeat1, - [158912] = 4, + ACTIONS(7027), 1, + anon_sym_RPAREN, + ACTIONS(7029), 1, + anon_sym_PIPE, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [163739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_PIPE, - STATE(4358), 1, - aux_sym_expression_repeat4, - [158925] = 4, + ACTIONS(4406), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7032), 1, + anon_sym_RBRACE, + STATE(4569), 1, + aux_sym_do_block_repeat1, + [163752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6028), 1, - anon_sym_PIPE, - ACTIONS(6031), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [158938] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3384), 1, + aux_sym_type_repeat1, + [163765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(6033), 1, - anon_sym_EQ, - STATE(4278), 1, - aux_sym_let_binding_repeat1, - [158951] = 4, + ACTIONS(7034), 1, + anon_sym_RPAREN, + STATE(4590), 1, + aux_sym_primitive_type_repeat2, + [163778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6035), 1, - anon_sym_EQ, - STATE(4352), 1, - aux_sym_let_binding_repeat1, - [158964] = 4, + ACTIONS(4372), 1, + anon_sym_PIPE, + ACTIONS(7034), 1, + anon_sym_RPAREN, + STATE(4591), 1, + aux_sym_primitive_type_repeat1, + [163791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6037), 1, - anon_sym_LT_DASH, - [158977] = 2, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(7036), 1, + anon_sym_RBRACE, + STATE(4530), 1, + aux_sym_type_effect_suffix_repeat1, + [163804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6039), 3, + ACTIONS(4659), 1, anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(4663), 1, sym_id, - [158986] = 4, + STATE(3354), 1, + aux_sym_type_repeat1, + [163817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6041), 1, - anon_sym_LT_DASH, - [158999] = 2, + ACTIONS(5052), 1, + anon_sym_COMMA, + ACTIONS(7036), 1, + anon_sym_RBRACE, + STATE(4532), 1, + aux_sym_type_effect_suffix_repeat1, + [163830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6043), 3, + ACTIONS(5048), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(7038), 1, anon_sym_RBRACE, - [159008] = 4, + STATE(4535), 1, + aux_sym_record_type_repeat1, + [163843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(7040), 1, anon_sym_COMMA, - ACTIONS(6045), 1, - anon_sym_RPAREN, - STATE(4171), 1, - aux_sym_use_piece_repeat2, - [159021] = 4, + ACTIONS(7043), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [163856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6047), 1, - anon_sym_LT_DASH, - [159034] = 2, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3391), 1, + aux_sym_type_repeat1, + [163869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6049), 3, + ACTIONS(6980), 1, anon_sym_COMMA, - anon_sym_SEMI_SEMI, + ACTIONS(7045), 1, anon_sym_RBRACE, - [159043] = 4, + STATE(4566), 1, + aux_sym_effect_repeat1, + [163882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5442), 1, anon_sym_COMMA, - ACTIONS(6051), 1, - anon_sym_EQ, - STATE(4377), 1, - aux_sym_let_binding_repeat1, - [159056] = 4, + ACTIONS(7047), 1, + anon_sym_SEMI_SEMI, + STATE(4600), 1, + aux_sym_handler_type_repeat1, + [163895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6683), 1, + anon_sym_RPAREN, + ACTIONS(7049), 1, anon_sym_COMMA, - ACTIONS(6053), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159069] = 4, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [163908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6055), 1, - anon_sym_do, - STATE(4379), 1, - aux_sym_module_export_repeat1, - [159082] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3374), 1, + aux_sym_type_repeat1, + [163921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(6057), 1, - anon_sym_RPAREN, - STATE(4380), 1, - aux_sym_let_binding_repeat1, - [159095] = 4, + ACTIONS(7020), 1, + anon_sym_RBRACE, + STATE(4538), 1, + aux_sym_data_repeat4, + [163934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(6059), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1233), 1, - sym_pattern_unit, - [159108] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3387), 1, + aux_sym_type_repeat1, + [163947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - ACTIONS(6061), 1, + ACTIONS(7052), 1, anon_sym_RPAREN, - STATE(4329), 1, - aux_sym_module_repeat2, - [159121] = 4, + STATE(4604), 1, + aux_sym_type_tuple_repeat1, + [163960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_type_unit_token1, - ACTIONS(6063), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - STATE(1228), 1, - sym_pattern_unit, - [159134] = 4, + ACTIONS(4663), 1, + sym_id, + STATE(3392), 1, + aux_sym_type_repeat1, + [163973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, - anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_RPAREN, - STATE(4156), 1, - aux_sym_module_repeat1, - [159147] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3394), 1, + aux_sym_type_repeat1, + [163986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6067), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159160] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3296), 1, + aux_sym_type_repeat1, + [163999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6069), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159173] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3399), 1, + aux_sym_type_repeat1, + [164012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6071), 1, - anon_sym_do, - STATE(4369), 1, - aux_sym_module_export_repeat1, - [159186] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3413), 1, + aux_sym_type_repeat1, + [164025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6768), 1, anon_sym_COMMA, - ACTIONS(6073), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159199] = 4, + ACTIONS(7054), 1, + anon_sym_RPAREN, + STATE(4542), 1, + aux_sym_use_piece_repeat2, + [164038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_RPAREN, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [159212] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3308), 1, + aux_sym_type_repeat1, + [164051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(7056), 3, anon_sym_COMMA, - ACTIONS(6061), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_module_repeat2, - [159225] = 4, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [164060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6075), 1, - anon_sym_EQ, - STATE(4376), 1, - aux_sym_let_binding_repeat1, - [159238] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3297), 1, + aux_sym_type_repeat1, + [164073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5240), 1, anon_sym_COMMA, - ACTIONS(6077), 1, - anon_sym_RPAREN, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159251] = 4, + ACTIONS(7058), 1, + anon_sym_RBRACE, + STATE(4460), 1, + aux_sym_use_piece_repeat1, + [164086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6079), 1, - anon_sym_LT_DASH, - [159264] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3327), 1, + aux_sym_type_repeat1, + [164099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6081), 1, - anon_sym_LT_DASH, - [159277] = 4, + ACTIONS(7060), 3, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [164108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6083), 1, - anon_sym_LT_DASH, - [159290] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3340), 1, + aux_sym_type_repeat1, + [164121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6085), 1, - anon_sym_LT_DASH, - [159303] = 4, + ACTIONS(6768), 1, + anon_sym_COMMA, + ACTIONS(7062), 1, + anon_sym_RPAREN, + STATE(4547), 1, + aux_sym_use_piece_repeat2, + [164134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3372), 1, + aux_sym_type_repeat1, + [164147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(7064), 3, + anon_sym_COMMA, anon_sym_SEMI_SEMI, - ACTIONS(6087), 1, anon_sym_RBRACE, - STATE(4133), 1, - aux_sym_let_binding_repeat3, - [159316] = 4, + [164156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(6089), 1, - anon_sym_RPAREN, - STATE(4395), 1, - aux_sym_let_binding_repeat1, - [159329] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3395), 1, + aux_sym_type_repeat1, + [164169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6091), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159342] = 4, + ACTIONS(7066), 3, + sym_operator_id, + sym_id, + sym_force_id, + [164178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(6093), 1, - anon_sym_RPAREN, - STATE(4396), 1, - aux_sym_let_binding_repeat1, - [159355] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3294), 1, + aux_sym_type_repeat1, + [164191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5390), 1, anon_sym_COMMA, - ACTIONS(6095), 1, + ACTIONS(7068), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [159368] = 4, + STATE(4632), 1, + aux_sym_module_repeat3, + [164204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3302), 1, + aux_sym_type_repeat1, + [164217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(6717), 1, anon_sym_COMMA, - ACTIONS(6097), 1, + ACTIONS(7070), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [159381] = 4, + STATE(4551), 1, + aux_sym_module_repeat1, + [164230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6099), 1, - anon_sym_RBRACE, - STATE(4341), 1, - aux_sym_expression_repeat3, - [159394] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3312), 1, + aux_sym_type_repeat1, + [164243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(7072), 1, anon_sym_COMMA, - ACTIONS(6101), 1, + ACTIONS(7075), 1, anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [159407] = 4, + STATE(4632), 1, + aux_sym_module_repeat3, + [164256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COMMA, - ACTIONS(6103), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_let_binding_repeat1, - [159420] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3314), 1, + aux_sym_type_repeat1, + [164269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6105), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159433] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3412), 1, + aux_sym_type_repeat1, + [164282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6107), 1, - anon_sym_LT_DASH, - [159446] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3378), 1, + aux_sym_type_repeat1, + [164295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6109), 1, - anon_sym_do, - STATE(4390), 1, - aux_sym_module_export_repeat1, - [159459] = 4, + ACTIONS(6717), 1, + anon_sym_COMMA, + ACTIONS(7070), 1, + anon_sym_RPAREN, + STATE(4554), 1, + aux_sym_module_repeat1, + [164308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6114), 1, - anon_sym_RBRACE, - STATE(4400), 1, - aux_sym_expression_repeat3, - [159472] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3298), 1, + aux_sym_type_repeat1, + [164321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - ACTIONS(6116), 1, - anon_sym_EQ, - STATE(4397), 1, - aux_sym_let_binding_repeat1, - [159485] = 4, + ACTIONS(7068), 1, + anon_sym_RPAREN, + STATE(4556), 1, + aux_sym_module_repeat2, + [164334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6118), 1, - anon_sym_LT_DASH, - [159498] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3299), 1, + aux_sym_type_repeat1, + [164347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6120), 1, - anon_sym_LT_DASH, - [159511] = 4, + ACTIONS(7077), 3, + sym_operator_id, + sym_id, + sym_force_id, + [164356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_COMMA, - ACTIONS(6122), 1, - anon_sym_in, - STATE(4355), 1, - aux_sym_expression_repeat2, - [159524] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3356), 1, + aux_sym_type_repeat1, + [164369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_RBRACK, - STATE(4357), 1, - aux_sym_expression_repeat4, - [159537] = 4, + ACTIONS(4745), 1, + anon_sym_COMMA, + ACTIONS(7068), 1, + anon_sym_RPAREN, + STATE(3590), 1, + aux_sym_module_repeat2, + [164382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6124), 1, - anon_sym_LT_DASH, - [159550] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3289), 1, + aux_sym_type_repeat1, + [164395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6126), 1, - anon_sym_LT_DASH, - [159563] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3300), 1, + aux_sym_type_repeat1, + [164408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_PIPE, - ACTIONS(6099), 1, - anon_sym_RBRACK, - STATE(4358), 1, - aux_sym_expression_repeat4, - [159576] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3323), 1, + aux_sym_type_repeat1, + [164421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(4603), 1, + anon_sym_RPAREN, + ACTIONS(6625), 1, anon_sym_COMMA, - ACTIONS(6128), 1, - anon_sym_do, - STATE(3398), 1, + STATE(4561), 1, aux_sym_module_export_repeat1, - [159589] = 4, + [164434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_COMMA, - ACTIONS(6130), 1, - anon_sym_RBRACE, - STATE(4189), 1, - aux_sym_data_repeat4, - [159602] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3404), 1, + aux_sym_type_repeat1, + [164447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(4603), 1, + anon_sym_RPAREN, + ACTIONS(5351), 1, anon_sym_COMMA, - ACTIONS(6132), 1, - anon_sym_EQ, - STATE(4415), 1, - aux_sym_let_binding_repeat1, - [159615] = 4, + STATE(4563), 1, + aux_sym_module_export_repeat2, + [164460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6134), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159628] = 4, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + sym_id, + STATE(3330), 1, + aux_sym_type_repeat1, + [164473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(7079), 1, anon_sym_COMMA, - ACTIONS(6136), 1, - anon_sym_do, - STATE(4417), 1, - aux_sym_module_export_repeat1, - [159641] = 4, + ACTIONS(7082), 1, + anon_sym_RPAREN, + STATE(4650), 1, + aux_sym_module_export_repeat2, + [164486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(7084), 2, anon_sym_COMMA, - ACTIONS(6138), 1, - anon_sym_do, - STATE(4409), 1, - aux_sym_module_export_repeat1, - [159654] = 4, + anon_sym_RBRACE, + [164494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7086), 2, anon_sym_COMMA, - ACTIONS(6140), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159667] = 4, + anon_sym_RPAREN, + [164502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7075), 2, anon_sym_COMMA, - ACTIONS(6142), 1, - anon_sym_EQ, - STATE(4412), 1, - aux_sym_let_binding_repeat1, - [159680] = 4, + anon_sym_RPAREN, + [164510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(7082), 2, anon_sym_COMMA, - ACTIONS(6144), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159693] = 4, + anon_sym_RPAREN, + [164518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6146), 1, - anon_sym_LT_DASH, - [159706] = 4, + ACTIONS(7088), 1, + sym_module_annotation, + ACTIONS(7090), 1, + sym_module_path, + [164528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6148), 1, - anon_sym_LT_DASH, - [159719] = 4, + ACTIONS(5078), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7092), 1, + anon_sym_exclude, + [164538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6150), 1, - anon_sym_LT_DASH, - [159732] = 4, + ACTIONS(3115), 1, + sym_module_path, + ACTIONS(3117), 1, + sym_module_annotation, + [164548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6152), 1, - anon_sym_LT_DASH, - [159745] = 4, + ACTIONS(7043), 2, + anon_sym_COMMA, + anon_sym_SEMI_SEMI, + [164556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6154), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159758] = 4, + ACTIONS(4476), 1, + sym_module_path, + STATE(5098), 1, + sym_use_piece, + [164566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6156), 1, - anon_sym_LT_DASH, - [159771] = 4, + ACTIONS(3283), 1, + sym_module_path, + ACTIONS(3285), 1, + sym_module_annotation, + [164576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7025), 2, anon_sym_COMMA, - ACTIONS(6158), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159784] = 4, + anon_sym_RPAREN, + [164584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6160), 1, - anon_sym_LT_DASH, - [159797] = 4, + ACTIONS(7027), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [164592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6162), 1, - anon_sym_do, - STATE(4422), 1, - aux_sym_module_export_repeat1, - [159810] = 4, + ACTIONS(7094), 1, + anon_sym_exclude, + ACTIONS(7096), 1, + anon_sym_SEMI_SEMI, + [164602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6164), 1, - anon_sym_EQ, - STATE(4424), 1, - aux_sym_let_binding_repeat1, - [159823] = 4, - ACTIONS(3), 1, + ACTIONS(4476), 1, + sym_module_path, + STATE(5074), 1, + sym_use_piece, + [164612] = 3, + ACTIONS(9), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6166), 1, - anon_sym_LT_DASH, - [159836] = 4, + ACTIONS(7098), 1, + sym_operator, + STATE(3100), 1, + aux_sym_fixity_repeat1, + [164622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6168), 1, - anon_sym_COMMA, - ACTIONS(6171), 1, + ACTIONS(7100), 1, anon_sym_RBRACE, - STATE(4429), 1, - aux_sym_type_effect_suffix_repeat1, - [159849] = 4, + ACTIONS(7102), 1, + sym_id, + [164632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_EQ, - STATE(4433), 1, - aux_sym_let_binding_repeat1, - [159862] = 4, + ACTIONS(7104), 1, + anon_sym_RPAREN, + ACTIONS(7106), 1, + sym_module_id, + [164642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6175), 1, + ACTIONS(7110), 1, anon_sym_LT_DASH, - [159875] = 4, + [164652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6177), 1, - anon_sym_do, - STATE(4434), 1, - aux_sym_module_export_repeat1, - [159888] = 4, + ACTIONS(7112), 1, + sym_id, + STATE(3667), 1, + aux_sym_expression_repeat1, + [164662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5361), 2, anon_sym_COMMA, - ACTIONS(6179), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159901] = 4, + anon_sym_RPAREN, + [164670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6181), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159914] = 4, + ACTIONS(7114), 1, + sym_id, + STATE(4058), 1, + aux_sym_expression_repeat1, + [164680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6183), 1, - anon_sym_LT_DASH, - [159927] = 4, + ACTIONS(7006), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [164688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6185), 1, - anon_sym_LT_DASH, - [159940] = 4, + ACTIONS(6991), 2, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + [164696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5365), 2, anon_sym_COMMA, - ACTIONS(6187), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [159953] = 4, + anon_sym_RPAREN, + [164704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7116), 2, anon_sym_COMMA, - ACTIONS(6189), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [159966] = 4, + anon_sym_RPAREN, + [164712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6191), 1, - anon_sym_LT_DASH, - [159979] = 4, + ACTIONS(7118), 1, + anon_sym_RBRACE, + ACTIONS(7120), 1, + sym_id, + [164722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_COMMA, - ACTIONS(6193), 1, - anon_sym_do, - STATE(4437), 1, - aux_sym_module_export_repeat1, - [159992] = 4, + ACTIONS(7122), 1, + anon_sym_RBRACE, + ACTIONS(7124), 1, + sym_id, + [164732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6195), 1, - anon_sym_LT_DASH, - [160005] = 4, + ACTIONS(7126), 1, + anon_sym_RBRACE, + ACTIONS(7128), 1, + sym_id, + [164742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7130), 2, anon_sym_COMMA, - ACTIONS(6197), 1, - anon_sym_EQ, - STATE(4438), 1, - aux_sym_let_binding_repeat1, - [160018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6199), 1, - anon_sym_LT_DASH, - [160031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6201), 1, - anon_sym_LT_DASH, - [160044] = 4, + anon_sym_RPAREN, + [164750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(6974), 2, anon_sym_COMMA, - ACTIONS(6203), 1, - anon_sym_EQ, - STATE(4448), 1, - aux_sym_let_binding_repeat1, - [160057] = 4, + anon_sym_RPAREN, + [164758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - ACTIONS(6205), 1, - anon_sym_LT_DASH, - [160070] = 4, + ACTIONS(7132), 1, + anon_sym_RBRACE, + ACTIONS(7134), 1, + sym_id, + [164768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6963), 2, anon_sym_COMMA, - ACTIONS(6207), 1, - anon_sym_do, - STATE(4449), 1, - aux_sym_module_export_repeat1, - [160083] = 4, + anon_sym_RPAREN, + [164776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(7136), 2, anon_sym_COMMA, - ACTIONS(6209), 1, - anon_sym_EQ, - STATE(3988), 1, - aux_sym_let_binding_repeat1, - [160096] = 4, + anon_sym_RPAREN, + [164784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(6950), 2, anon_sym_COMMA, - ACTIONS(6211), 1, - anon_sym_do, - STATE(3398), 1, - aux_sym_module_export_repeat1, - [160109] = 3, + anon_sym_RPAREN, + [164792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6213), 1, + ACTIONS(7138), 1, + anon_sym_RBRACE, + ACTIONS(7140), 1, sym_id, - STATE(3652), 1, - aux_sym_expression_repeat1, - [160119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6215), 1, - anon_sym_EQ, - ACTIONS(6217), 1, - anon_sym_or, - [160129] = 3, + [164802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_EQ, - ACTIONS(6221), 1, - anon_sym_or, - [160139] = 3, + ACTIONS(7142), 1, + sym_id, + STATE(4416), 1, + aux_sym_expression_repeat1, + [164812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6223), 1, - anon_sym_EQ, - ACTIONS(6225), 1, - anon_sym_or, - [160149] = 3, + ACTIONS(7144), 1, + anon_sym_RBRACE, + ACTIONS(7146), 1, + sym_id, + [164822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(6229), 1, - anon_sym_or, - [160159] = 3, + ACTIONS(7148), 1, + anon_sym_RBRACE, + ACTIONS(7150), 1, + sym_id, + [164832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6231), 1, - sym_module_annotation, - ACTIONS(6233), 1, - sym_module_path, - [160169] = 3, + ACTIONS(7152), 1, + anon_sym_RBRACE, + ACTIONS(7154), 1, + sym_id, + [164842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(7156), 2, + anon_sym_COMMA, anon_sym_SEMI_SEMI, - ACTIONS(6235), 1, - anon_sym_exclude, - [160179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 1, - sym_module_path, - ACTIONS(2836), 1, - sym_module_annotation, - [160189] = 3, + [164850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - STATE(4823), 1, - sym_use_piece, - [160199] = 3, + ACTIONS(7158), 1, + sym_id, + STATE(4337), 1, + aux_sym_expression_repeat1, + [164860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, - sym_module_path, - ACTIONS(2840), 1, - sym_module_annotation, - [160209] = 3, + ACTIONS(6916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6237), 1, - anon_sym_exclude, - ACTIONS(6239), 1, - anon_sym_SEMI_SEMI, - [160219] = 3, + ACTIONS(7160), 1, + anon_sym_RBRACE, + ACTIONS(7162), 1, + sym_id, + [164878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6241), 1, - anon_sym_EQ, - ACTIONS(6243), 1, - anon_sym_or, - [160229] = 3, + ACTIONS(7164), 1, + anon_sym_RBRACE, + ACTIONS(7166), 1, + sym_id, + [164888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(6247), 1, - anon_sym_or, - [160239] = 3, + ACTIONS(7168), 1, + anon_sym_LT_DASH, + [164898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - sym_module_path, - STATE(4803), 1, - sym_use_piece, - [160249] = 3, + ACTIONS(7170), 1, + anon_sym_RBRACE, + ACTIONS(7172), 1, + sym_id, + [164908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6249), 1, - anon_sym_EQ, - ACTIONS(6251), 1, - anon_sym_or, - [160259] = 3, - ACTIONS(9), 1, - sym_comment, - ACTIONS(6253), 1, - sym_operator, - STATE(2976), 1, - aux_sym_fixity_repeat1, - [160269] = 3, + ACTIONS(7174), 1, + anon_sym_RBRACE, + ACTIONS(7176), 1, + sym_id, + [164918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6255), 1, - anon_sym_RPAREN, - ACTIONS(6257), 1, - sym_module_id, - [160279] = 3, + ACTIONS(7178), 1, + anon_sym_RBRACE, + ACTIONS(7180), 1, + sym_id, + [164928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6259), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(6261), 1, - anon_sym_or, - [160289] = 3, + ACTIONS(7182), 1, + anon_sym_LT_DASH, + [164938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6263), 1, + ACTIONS(7184), 1, sym_id, - STATE(3642), 1, + STATE(4202), 1, aux_sym_expression_repeat1, - [160299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6265), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_or, - [160309] = 3, + [164948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(6271), 1, - anon_sym_or, - [160319] = 3, + ACTIONS(7186), 1, + anon_sym_LT_DASH, + [164958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6273), 1, + ACTIONS(7188), 1, anon_sym_RBRACE, - ACTIONS(6275), 1, + ACTIONS(7190), 1, sym_id, - [160329] = 3, + [164968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 1, - anon_sym_EQ, - ACTIONS(6279), 1, - anon_sym_or, - [160339] = 2, + ACTIONS(7192), 1, + anon_sym_RBRACE, + ACTIONS(7194), 1, + sym_id, + [164978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 2, + ACTIONS(7196), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160347] = 2, + [164986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_RBRACE, + ACTIONS(7200), 1, + sym_id, + [164996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 2, + ACTIONS(7202), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160355] = 3, + [165004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6281), 1, + ACTIONS(7204), 1, sym_id, - STATE(4262), 1, + STATE(4129), 1, aux_sym_expression_repeat1, - [160365] = 3, + [165014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 1, - anon_sym_EQ, - ACTIONS(6285), 1, - anon_sym_or, - [160375] = 3, + ACTIONS(7206), 1, + anon_sym_RBRACE, + ACTIONS(7208), 1, + sym_id, + [165024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(6289), 1, - anon_sym_or, - [160385] = 3, + ACTIONS(7210), 1, + anon_sym_LT_DASH, + [165034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_EQ, - ACTIONS(6293), 1, - anon_sym_or, - [160395] = 3, + ACTIONS(7212), 1, + sym_id, + STATE(4048), 1, + aux_sym_expression_repeat1, + [165044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - anon_sym_EQ, - ACTIONS(5727), 1, - anon_sym_or, - [160405] = 2, + ACTIONS(7214), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [165052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160413] = 3, + ACTIONS(7108), 1, + anon_sym_EQ, + ACTIONS(7216), 1, + anon_sym_LT_DASH, + [165062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, - anon_sym_RPAREN, - ACTIONS(6297), 1, - sym_module_id, - [160423] = 3, + ACTIONS(7218), 1, + sym_id, + STATE(3961), 1, + aux_sym_expression_repeat1, + [165072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 1, - anon_sym_EQ, - ACTIONS(6301), 1, - anon_sym_or, - [160433] = 3, + ACTIONS(7220), 1, + sym_id, + STATE(3843), 1, + aux_sym_expression_repeat1, + [165082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 1, + ACTIONS(7222), 1, sym_id, - STATE(4184), 1, + STATE(3641), 1, aux_sym_expression_repeat1, - [160443] = 3, + [165092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6305), 1, - anon_sym_EQ, - ACTIONS(6307), 1, - anon_sym_or, - [160453] = 3, + ACTIONS(7224), 1, + anon_sym_RBRACE, + ACTIONS(7226), 1, + sym_id, + [165102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6309), 1, - anon_sym_EQ, - ACTIONS(6311), 1, - anon_sym_or, - [160463] = 2, + ACTIONS(7228), 1, + anon_sym_RBRACE, + ACTIONS(7230), 1, + sym_id, + [165112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 2, - anon_sym_COMMA, + ACTIONS(7232), 1, anon_sym_RBRACE, - [160471] = 3, + ACTIONS(7234), 1, + sym_id, + [165122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 1, - anon_sym_EQ, - ACTIONS(6315), 1, - anon_sym_or, - [160481] = 3, + ACTIONS(7236), 1, + sym_id, + STATE(3734), 1, + aux_sym_expression_repeat1, + [165132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 1, + ACTIONS(7238), 1, sym_id, - STATE(4121), 1, + STATE(4151), 1, aux_sym_expression_repeat1, - [160491] = 3, + [165142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6319), 1, + ACTIONS(7240), 1, + anon_sym_RBRACE, + ACTIONS(7242), 1, sym_id, - STATE(4060), 1, - aux_sym_expression_repeat1, - [160501] = 3, + [165152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 1, + ACTIONS(7244), 1, sym_id, - STATE(4004), 1, + STATE(3664), 1, aux_sym_expression_repeat1, - [160511] = 3, + [165162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6323), 1, + ACTIONS(7108), 1, anon_sym_EQ, - ACTIONS(6325), 1, - anon_sym_or, - [160521] = 2, + ACTIONS(7246), 1, + anon_sym_LT_DASH, + [165172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6327), 2, - anon_sym_SEMI_SEMI, + ACTIONS(7248), 1, + anon_sym_RBRACE, + ACTIONS(7250), 1, + sym_id, + [165182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7252), 2, anon_sym_PIPE, - [160529] = 3, + anon_sym_RBRACK, + [165190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 1, - anon_sym_EQ, - ACTIONS(6331), 1, - anon_sym_or, - [160539] = 3, + ACTIONS(7254), 1, + sym_id, + STATE(3463), 1, + aux_sym_expression_repeat1, + [165200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 1, + ACTIONS(7256), 1, sym_id, - STATE(3938), 1, + STATE(4235), 1, aux_sym_expression_repeat1, - [160549] = 3, + [165210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_RBRACE, - ACTIONS(6335), 1, + ACTIONS(7258), 1, sym_id, - [160559] = 2, + STATE(3593), 1, + aux_sym_expression_repeat1, + [165220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 2, + ACTIONS(7260), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160567] = 3, + [165228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 1, - anon_sym_EQ, - ACTIONS(6339), 1, - anon_sym_or, - [160577] = 2, + ACTIONS(7262), 1, + anon_sym_RBRACE, + ACTIONS(7264), 1, + sym_id, + [165238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(7266), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160585] = 3, + [165246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6343), 1, + ACTIONS(7268), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [165254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [165262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7272), 1, + anon_sym_RBRACE, + ACTIONS(7274), 1, sym_id, - STATE(3950), 1, - aux_sym_expression_repeat1, - [160595] = 3, + [165272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_EQ, - ACTIONS(6347), 1, - anon_sym_or, - [160605] = 3, + ACTIONS(7276), 2, + anon_sym_PIPE, + anon_sym_RBRACK, + [165280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_EQ, - ACTIONS(6351), 1, - anon_sym_or, - [160615] = 3, + ACTIONS(7278), 1, + sym_id, + STATE(3504), 1, + aux_sym_expression_repeat1, + [165290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6353), 1, - anon_sym_EQ, - ACTIONS(6355), 1, - anon_sym_or, - [160625] = 2, + ACTIONS(7280), 1, + sym_id, + STATE(3580), 1, + aux_sym_expression_repeat1, + [165300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160633] = 3, + ACTIONS(7282), 1, + sym_id, + STATE(3432), 1, + aux_sym_expression_repeat1, + [165310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 1, + ACTIONS(7284), 1, sym_id, - STATE(3896), 1, + STATE(3552), 1, aux_sym_expression_repeat1, - [160643] = 2, + [165320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 2, + ACTIONS(4697), 2, anon_sym_SEMI_SEMI, anon_sym_RBRACE, - [160651] = 3, + [165328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym_EQ, - ACTIONS(6361), 1, - anon_sym_or, - [160661] = 3, + ACTIONS(7286), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [165336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_EQ, - ACTIONS(6365), 1, - anon_sym_or, - [160671] = 3, + ACTIONS(6793), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [165344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6367), 1, + ACTIONS(7288), 1, sym_id, - STATE(3850), 1, + STATE(3498), 1, aux_sym_expression_repeat1, - [160681] = 3, + [165354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6369), 1, - sym_id, - STATE(3799), 1, - aux_sym_expression_repeat1, - [160691] = 2, + ACTIONS(7108), 1, + anon_sym_EQ, + ACTIONS(7290), 1, + anon_sym_LT_DASH, + [165364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 2, - anon_sym_COMMA, + ACTIONS(5566), 1, anon_sym_RPAREN, - [160699] = 3, + ACTIONS(7292), 1, + sym_module_id, + [165374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6371), 1, + ACTIONS(7294), 1, anon_sym_EQ, - ACTIONS(6373), 1, - anon_sym_or, - [160709] = 3, + [165381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, + ACTIONS(7296), 1, + anon_sym_RBRACE, + [165388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7298), 1, + anon_sym_LBRACE, + [165395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7300), 1, anon_sym_EQ, - ACTIONS(6377), 1, - anon_sym_or, - [160719] = 3, + [165402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6379), 1, + ACTIONS(7302), 1, + anon_sym_SEMI_SEMI, + [165409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7304), 1, sym_id, - STATE(3754), 1, - aux_sym_expression_repeat1, - [160729] = 2, + [165416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160737] = 3, + ACTIONS(7306), 1, + anon_sym_SEMI, + [165423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 1, - anon_sym_EQ, - ACTIONS(6383), 1, - anon_sym_or, - [160747] = 2, + ACTIONS(7308), 1, + anon_sym_LBRACE, + [165430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6385), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160755] = 3, + ACTIONS(7310), 1, + anon_sym_LPAREN, + [165437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 1, + ACTIONS(7312), 1, + anon_sym_SEMI_SEMI, + [165444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7314), 1, + anon_sym_SEMI_SEMI, + [165451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7316), 1, anon_sym_EQ, - ACTIONS(6389), 1, - anon_sym_or, - [160765] = 2, + [165458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5688), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [160773] = 2, + ACTIONS(7318), 1, + anon_sym_SEMI_SEMI, + [165465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160781] = 3, + ACTIONS(7320), 1, + sym_id, + [165472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6391), 1, + ACTIONS(7322), 1, + anon_sym_SEMI_SEMI, + [165479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7324), 1, sym_id, - STATE(3719), 1, - aux_sym_expression_repeat1, - [160791] = 3, + [165486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6393), 1, - anon_sym_EQ, - ACTIONS(6395), 1, - anon_sym_or, - [160801] = 2, + ACTIONS(7326), 1, + anon_sym_LPAREN, + [165493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6397), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160809] = 3, + ACTIONS(7328), 1, + sym_id, + [165500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6399), 1, - anon_sym_EQ, - ACTIONS(6401), 1, - anon_sym_or, - [160819] = 3, + ACTIONS(7330), 1, + sym_id, + [165507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 1, - anon_sym_EQ, - ACTIONS(6405), 1, - anon_sym_or, - [160829] = 3, + ACTIONS(7332), 1, + sym_id, + [165514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 1, - anon_sym_EQ, - ACTIONS(6409), 1, - anon_sym_or, - [160839] = 3, + ACTIONS(7334), 1, + aux_sym_primitive_reverse_atom_token1, + [165521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 1, + ACTIONS(7336), 1, sym_id, - STATE(3856), 1, - aux_sym_expression_repeat1, - [160849] = 3, + [165528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_EQ, - ACTIONS(6415), 1, - anon_sym_or, - [160859] = 2, + ACTIONS(7338), 1, + aux_sym_type_effect_suffix_token1, + [165535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 2, + ACTIONS(7340), 1, anon_sym_SEMI_SEMI, - anon_sym_PIPE, - [160867] = 3, + [165542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6419), 1, + ACTIONS(7342), 1, sym_id, - STATE(3684), 1, - aux_sym_expression_repeat1, - [160877] = 3, + [165549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 1, - anon_sym_EQ, - ACTIONS(6423), 1, - anon_sym_or, - [160887] = 2, + ACTIONS(7344), 1, + sym_id, + [165556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 2, - anon_sym_COMMA, + ACTIONS(7346), 1, + anon_sym_DASH_GT, + [165563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, anon_sym_RPAREN, - [160895] = 3, + [165570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 1, + ACTIONS(7350), 1, anon_sym_EQ, - ACTIONS(6429), 1, - anon_sym_or, - [160905] = 3, + [165577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, + ACTIONS(7352), 1, anon_sym_EQ, - ACTIONS(6433), 1, - anon_sym_or, - [160915] = 3, + [165584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 1, + ACTIONS(7354), 1, + aux_sym_primitive_reverse_atom_token1, + [165591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7356), 1, anon_sym_EQ, - ACTIONS(6437), 1, - anon_sym_or, - [160925] = 2, + [165598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160933] = 3, + ACTIONS(7358), 1, + anon_sym_RBRACE, + [165605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 1, - anon_sym_EQ, - ACTIONS(6441), 1, - anon_sym_or, - [160943] = 3, + ACTIONS(7360), 1, + anon_sym_SEMI, + [165612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 1, + ACTIONS(7362), 1, anon_sym_EQ, - ACTIONS(6445), 1, - anon_sym_or, - [160953] = 3, + [165619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 1, - sym_id, - STATE(3595), 1, - aux_sym_expression_repeat1, - [160963] = 2, + ACTIONS(7364), 1, + anon_sym_LPAREN, + [165626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160971] = 2, + ACTIONS(7366), 1, + anon_sym_RBRACE, + [165633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160979] = 3, + ACTIONS(7368), 1, + anon_sym_EQ, + [165640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6451), 1, + ACTIONS(7370), 1, anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_or, - [160989] = 3, + [165647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(7372), 1, + sym_id, + [165654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7374), 1, + anon_sym_RBRACK, + [165661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, anon_sym_EQ, - ACTIONS(6457), 1, - anon_sym_or, - [160999] = 2, + [165668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 2, - anon_sym_SEMI_SEMI, + ACTIONS(7378), 1, anon_sym_RBRACE, - [161007] = 3, + [165675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6461), 1, - anon_sym_or, - [161017] = 3, + ACTIONS(7380), 1, + anon_sym_SEMI_SEMI, + [165682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 1, - anon_sym_EQ, - ACTIONS(6465), 1, - anon_sym_or, - [161027] = 3, + ACTIONS(7382), 1, + sym_id, + [165689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(7384), 1, anon_sym_EQ, - ACTIONS(6469), 1, - anon_sym_or, - [161037] = 3, + [165696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, - anon_sym_EQ, - ACTIONS(6473), 1, - anon_sym_or, - [161047] = 3, + ACTIONS(7386), 1, + sym_id, + [165703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6475), 1, - anon_sym_EQ, - ACTIONS(6477), 1, - anon_sym_or, - [161057] = 3, + ACTIONS(7388), 1, + sym_id, + [165710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_EQ, - ACTIONS(6481), 1, - anon_sym_or, - [161067] = 3, + ACTIONS(7390), 1, + sym_id, + [165717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_EQ, - ACTIONS(6485), 1, - anon_sym_or, - [161077] = 3, + ACTIONS(7392), 1, + anon_sym_RPAREN, + [165724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 1, - anon_sym_EQ, - ACTIONS(6489), 1, - anon_sym_or, - [161087] = 3, + ACTIONS(7394), 1, + sym_id, + [165731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, - anon_sym_EQ, - ACTIONS(6493), 1, - anon_sym_or, - [161097] = 3, + ACTIONS(7396), 1, + sym_id, + [165738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(7398), 1, anon_sym_EQ, - ACTIONS(6497), 1, - anon_sym_or, - [161107] = 3, + [165745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, - anon_sym_EQ, - ACTIONS(6501), 1, - anon_sym_or, - [161117] = 3, + ACTIONS(7400), 1, + anon_sym_SEMI, + [165752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6503), 1, + ACTIONS(7402), 1, anon_sym_EQ, - ACTIONS(6505), 1, - anon_sym_or, - [161127] = 2, + [165759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161135] = 3, + ACTIONS(7404), 1, + aux_sym_primitive_reverse_atom_token1, + [165766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 1, - anon_sym_EQ, - ACTIONS(6511), 1, - anon_sym_or, - [161145] = 3, + ACTIONS(7406), 1, + aux_sym_type_effect_suffix_token1, + [165773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, - anon_sym_EQ, - ACTIONS(6515), 1, - anon_sym_or, - [161155] = 3, + ACTIONS(7408), 1, + sym_id, + [165780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6517), 1, - anon_sym_EQ, - ACTIONS(6519), 1, - anon_sym_or, - [161165] = 3, + ACTIONS(7410), 1, + anon_sym_DASH_GT, + [165787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, + ACTIONS(7412), 1, + anon_sym_SEMI_SEMI, + [165794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7414), 1, anon_sym_EQ, - ACTIONS(6523), 1, - anon_sym_or, - [161175] = 2, + [165801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6171), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161183] = 3, + ACTIONS(7416), 1, + anon_sym_RPAREN, + [165808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 1, - anon_sym_EQ, - ACTIONS(6527), 1, - anon_sym_or, - [161193] = 2, + ACTIONS(7418), 1, + anon_sym_LBRACE, + [165815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - [161201] = 3, + ACTIONS(7420), 1, + anon_sym_LBRACE, + [165822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6531), 1, - anon_sym_EQ, - ACTIONS(6533), 1, - anon_sym_or, - [161211] = 3, + ACTIONS(7422), 1, + anon_sym_LBRACE, + [165829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6535), 1, - anon_sym_EQ, - ACTIONS(6537), 1, - anon_sym_or, - [161221] = 3, + ACTIONS(7424), 1, + anon_sym_LBRACE, + [165836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, - anon_sym_EQ, - ACTIONS(6541), 1, - anon_sym_or, - [161231] = 3, + ACTIONS(7426), 1, + sym_id, + [165843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 1, + ACTIONS(7428), 1, anon_sym_EQ, - ACTIONS(6545), 1, - anon_sym_or, - [161241] = 2, + [165850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161249] = 2, + ACTIONS(7430), 1, + sym_id, + [165857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161257] = 3, + ACTIONS(7432), 1, + sym_id, + [165864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, - anon_sym_EQ, - ACTIONS(6553), 1, - anon_sym_or, - [161267] = 2, + ACTIONS(7434), 1, + sym_id, + [165871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 2, - anon_sym_SEMI_SEMI, + ACTIONS(7436), 1, anon_sym_RBRACE, - [161275] = 3, + [165878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 1, - anon_sym_EQ, - ACTIONS(6557), 1, - anon_sym_or, - [161285] = 2, + ACTIONS(7438), 1, + anon_sym_of, + [165885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 2, - anon_sym_PIPE, - anon_sym_RBRACK, - [161293] = 3, + ACTIONS(7440), 1, + anon_sym_EQ, + [165892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 1, + ACTIONS(7442), 1, anon_sym_EQ, - ACTIONS(6563), 1, - anon_sym_or, - [161303] = 3, + [165899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(7444), 1, anon_sym_EQ, - ACTIONS(6567), 1, - anon_sym_or, - [161313] = 3, + [165906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6569), 1, - anon_sym_EQ, - ACTIONS(6571), 1, - anon_sym_or, - [161323] = 3, + ACTIONS(7446), 1, + anon_sym_LBRACE, + [165913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 1, - anon_sym_EQ, - ACTIONS(6575), 1, - anon_sym_or, - [161333] = 2, + ACTIONS(7448), 1, + anon_sym_LBRACE, + [165920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, + ACTIONS(7450), 1, anon_sym_LBRACE, - [161340] = 2, + [165927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 1, - anon_sym_SEMI, - [161347] = 2, + ACTIONS(7452), 1, + anon_sym_RBRACE, + [165934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6581), 1, - anon_sym_EQ, - [161354] = 2, + ACTIONS(7454), 1, + sym_id, + [165941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6583), 1, + ACTIONS(7456), 1, anon_sym_EQ, - [161361] = 2, + [165948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - anon_sym_SEMI_SEMI, - [161368] = 2, + ACTIONS(7458), 1, + anon_sym_LBRACE, + [165955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6587), 1, + ACTIONS(7460), 1, + anon_sym_RBRACK, + [165962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7462), 1, anon_sym_EQ, - [161375] = 2, + [165969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_SEMI, - [161382] = 2, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + [165976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6591), 1, + ACTIONS(7466), 1, + anon_sym_RBRACE, + [165983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7468), 1, + sym_id, + [165990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7470), 1, + anon_sym_RBRACE, + [165997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + sym_id, + [166004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7474), 1, + sym_id, + [166011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7476), 1, + sym_id, + [166018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_SEMI_SEMI, - [161389] = 2, + [166025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 1, + ACTIONS(7480), 1, anon_sym_EQ, - [161396] = 2, + [166032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym_EQ, - [161403] = 2, + ACTIONS(7482), 1, + anon_sym_SEMI_SEMI, + [166039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, + ACTIONS(7484), 1, anon_sym_EQ, - [161410] = 2, + [166046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, - anon_sym_EQ, - [161417] = 2, + ACTIONS(7486), 1, + anon_sym_SEMI_SEMI, + [166053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_EQ, - [161424] = 2, + ACTIONS(7488), 1, + anon_sym_LBRACE, + [166060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_EQ, - [161431] = 2, + ACTIONS(7490), 1, + anon_sym_LBRACE, + [166067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 1, - anon_sym_EQ, - [161438] = 2, + ACTIONS(7492), 1, + sym_id, + [166074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6605), 1, + ACTIONS(7494), 1, anon_sym_EQ, - [161445] = 2, + [166081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_EQ, - [161452] = 2, + ACTIONS(7496), 1, + anon_sym_LBRACE, + [166088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6609), 1, - aux_sym_primitive_reverse_atom_token1, - [161459] = 2, + ACTIONS(7498), 1, + anon_sym_LBRACE, + [166095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6611), 1, - aux_sym_type_effect_suffix_token1, - [161466] = 2, + ACTIONS(7500), 1, + anon_sym_EQ, + [166102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 1, + ACTIONS(7502), 1, anon_sym_DASH_GT, - [161473] = 2, + [166109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6615), 1, + ACTIONS(7504), 1, anon_sym_EQ, - [161480] = 2, + [166116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, - anon_sym_EQ, - [161487] = 2, + ACTIONS(7506), 1, + aux_sym_primitive_reverse_atom_token1, + [166123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 1, - aux_sym_primitive_reverse_atom_token1, - [161494] = 2, + ACTIONS(7508), 1, + aux_sym_type_effect_suffix_token1, + [166130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_SEMI_SEMI, - [161501] = 2, + ACTIONS(7510), 1, + anon_sym_COLON, + [166137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6621), 1, + ACTIONS(7512), 1, + anon_sym_DASH_GT, + [166144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7514), 1, anon_sym_RPAREN, - [161508] = 2, + [166151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, + ACTIONS(7516), 1, anon_sym_EQ, - [161515] = 2, + [166158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6623), 1, + ACTIONS(7518), 1, anon_sym_EQ, - [161522] = 2, + [166165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6625), 1, + ACTIONS(7520), 1, anon_sym_EQ, - [161529] = 2, + [166172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 1, - anon_sym_RBRACK, - [161536] = 2, + ACTIONS(7522), 1, + anon_sym_RBRACE, + [166179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6629), 1, + ACTIONS(7524), 1, anon_sym_EQ, - [161543] = 2, + [166186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 1, - anon_sym_EQ, - [161550] = 2, + ACTIONS(7526), 1, + anon_sym_RBRACE, + [166193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6633), 1, + ACTIONS(7528), 1, anon_sym_LBRACE, - [161557] = 2, + [166200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6635), 1, - anon_sym_LBRACE, - [161564] = 2, + ACTIONS(7530), 1, + anon_sym_RBRACK, + [166207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_SEMI_SEMI, - [161571] = 2, + ACTIONS(7532), 1, + anon_sym_EQ, + [166214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(7534), 1, + anon_sym_LBRACE, + [166221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7536), 1, anon_sym_EQ, - [161578] = 2, + [166228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 1, + ACTIONS(7538), 1, anon_sym_LBRACE, - [161585] = 2, + [166235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(7540), 1, anon_sym_EQ, - [161592] = 2, + [166242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7542), 1, + anon_sym_RBRACE, + [166249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6641), 1, + ACTIONS(7544), 1, anon_sym_LBRACE, - [161599] = 2, + [166256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 1, - anon_sym_EQ, - [161606] = 2, + ACTIONS(7546), 1, + anon_sym_LBRACE, + [166263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6645), 1, + ACTIONS(7548), 1, anon_sym_EQ, - [161613] = 2, + [166270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6647), 1, + ACTIONS(7550), 1, anon_sym_EQ, - [161620] = 2, + [166277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6649), 1, - aux_sym_type_effect_suffix_token1, - [161627] = 2, + ACTIONS(7552), 1, + anon_sym_EQ, + [166284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6651), 1, - anon_sym_EQ, - [161634] = 2, + ACTIONS(7554), 1, + anon_sym_SEMI_SEMI, + [166291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6653), 1, - anon_sym_RPAREN, - [161641] = 2, + ACTIONS(7556), 1, + anon_sym_DASH_GT, + [166298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6655), 1, - anon_sym_LBRACE, - [161648] = 2, + ACTIONS(7558), 1, + aux_sym_primitive_reverse_atom_token1, + [166305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6657), 1, - anon_sym_SEMI_SEMI, - [161655] = 2, + ACTIONS(7560), 1, + anon_sym_RBRACK, + [166312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, - anon_sym_COLON, - [161662] = 2, + ACTIONS(7562), 1, + aux_sym_type_effect_suffix_token1, + [166319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6463), 1, + ACTIONS(7564), 1, anon_sym_EQ, - [161669] = 2, + [166326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 1, - anon_sym_DASH_GT, - [161676] = 2, + ACTIONS(7566), 1, + anon_sym_EQ, + [166333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 1, - anon_sym_LBRACE, - [161683] = 2, + ACTIONS(7568), 1, + anon_sym_EQ, + [166340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6665), 1, - anon_sym_DASH_GT, - [161690] = 2, + ACTIONS(7570), 1, + anon_sym_RBRACE, + [166347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 1, - anon_sym_RPAREN, - [161697] = 2, + ACTIONS(7572), 1, + anon_sym_SEMI_SEMI, + [166354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6669), 1, - anon_sym_EQ, - [161704] = 2, + ACTIONS(7574), 1, + anon_sym_RBRACE, + [166361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(7576), 1, anon_sym_LBRACE, - [161711] = 2, + [166368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 1, + ACTIONS(7578), 1, anon_sym_LBRACE, - [161718] = 2, + [166375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, - anon_sym_LBRACE, - [161725] = 2, + ACTIONS(7580), 1, + anon_sym_EQ, + [166382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 1, - aux_sym_primitive_reverse_atom_token1, - [161732] = 2, + ACTIONS(7582), 1, + anon_sym_LBRACE, + [166389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, + ACTIONS(7584), 1, anon_sym_EQ, - [161739] = 2, + [166396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - anon_sym_RBRACK, - [161746] = 2, + ACTIONS(7586), 1, + anon_sym_RBRACE, + [166403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, - anon_sym_LBRACE, - [161753] = 2, + ACTIONS(7588), 1, + anon_sym_RPAREN, + [166410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_EQ, - [161760] = 2, + ACTIONS(7590), 1, + anon_sym_RBRACE, + [166417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 1, + ACTIONS(7592), 1, anon_sym_LBRACE, - [161767] = 2, + [166424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6689), 1, - anon_sym_LBRACE, - [161774] = 2, + ACTIONS(7594), 1, + anon_sym_EQ, + [166431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, + ACTIONS(7596), 1, anon_sym_EQ, - [161781] = 2, + [166438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 1, + ACTIONS(7598), 1, + anon_sym_DASH_GT, + [166445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7600), 1, anon_sym_EQ, - [161788] = 2, + [166452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, - anon_sym_SEMI_SEMI, - [161795] = 2, + ACTIONS(7602), 1, + aux_sym_primitive_reverse_atom_token1, + [166459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, - anon_sym_DASH_GT, - [161802] = 2, + ACTIONS(7604), 1, + aux_sym_type_effect_suffix_token1, + [166466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 1, + ACTIONS(7606), 1, anon_sym_SEMI_SEMI, - [161809] = 2, + [166473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6699), 1, + ACTIONS(7608), 1, anon_sym_EQ, - [161816] = 2, + [166480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_LBRACE, - [161823] = 2, + ACTIONS(7610), 1, + anon_sym_RBRACE, + [166487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, + ACTIONS(7612), 1, anon_sym_EQ, - [161830] = 2, + [166494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, + ACTIONS(7614), 1, anon_sym_EQ, - [161837] = 2, + [166501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6707), 1, - anon_sym_LBRACE, - [161844] = 2, + ACTIONS(7616), 1, + anon_sym_EQ, + [166508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_SEMI_SEMI, - [161851] = 2, + ACTIONS(7618), 1, + anon_sym_RBRACE, + [166515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6711), 1, - aux_sym_primitive_reverse_atom_token1, - [161858] = 2, + ACTIONS(7620), 1, + anon_sym_SEMI, + [166522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_SEMI_SEMI, - [161865] = 2, + ACTIONS(7622), 1, + anon_sym_RBRACE, + [166529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6715), 1, - aux_sym_type_effect_suffix_token1, - [161872] = 2, + ACTIONS(7624), 1, + anon_sym_COLON, + [166536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 1, - anon_sym_DASH_GT, - [161879] = 2, + ACTIONS(7626), 1, + anon_sym_SEMI_SEMI, + [166543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, - anon_sym_DASH_GT, - [161886] = 2, + ACTIONS(7628), 1, + anon_sym_EQ, + [166550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 1, - anon_sym_LBRACE, - [161893] = 2, + ACTIONS(7630), 1, + anon_sym_EQ, + [166557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACE, - [161900] = 2, + ACTIONS(7632), 1, + anon_sym_EQ, + [166564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, - anon_sym_LBRACE, - [161907] = 2, + ACTIONS(7634), 1, + anon_sym_SEMI_SEMI, + [166571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 1, - anon_sym_EQ, - [161914] = 2, + ACTIONS(7636), 1, + aux_sym_type_effect_suffix_token1, + [166578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6727), 1, - anon_sym_EQ, - [161921] = 2, + ACTIONS(7638), 1, + aux_sym_primitive_reverse_atom_token1, + [166585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 1, - anon_sym_RPAREN, - [161928] = 2, + ACTIONS(7640), 1, + aux_sym_primitive_reverse_atom_token1, + [166592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - anon_sym_EQ, - [161935] = 2, + ACTIONS(7642), 1, + aux_sym_primitive_reverse_atom_token1, + [166599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(7644), 1, anon_sym_EQ, - [161942] = 2, + [166606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - [161949] = 2, + ACTIONS(7646), 1, + aux_sym_primitive_reverse_atom_token1, + [166613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_SEMI, - [161956] = 2, + ACTIONS(7648), 1, + anon_sym_EQ, + [166620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6739), 1, - anon_sym_LBRACE, - [161963] = 2, + ACTIONS(7650), 1, + anon_sym_RBRACE, + [166627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_SEMI_SEMI, - [161970] = 2, + ACTIONS(7652), 1, + anon_sym_RBRACE, + [166634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, - anon_sym_SEMI_SEMI, - [161977] = 2, + ACTIONS(7654), 1, + anon_sym_RBRACE, + [166641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6745), 1, - anon_sym_of, - [161984] = 2, + ACTIONS(7656), 1, + anon_sym_RBRACE, + [166648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, - anon_sym_LBRACE, - [161991] = 2, + ACTIONS(7658), 1, + aux_sym_type_effect_suffix_token1, + [166655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6749), 1, - anon_sym_RBRACK, - [161998] = 2, + ACTIONS(7660), 1, + anon_sym_EQ, + [166662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - [162005] = 2, + ACTIONS(7662), 1, + aux_sym_primitive_reverse_atom_token1, + [166669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, + ACTIONS(7664), 1, anon_sym_EQ, - [162012] = 2, + [166676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, - anon_sym_EQ, - [162019] = 2, + ACTIONS(7666), 1, + anon_sym_RBRACE, + [166683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(7668), 1, anon_sym_EQ, - [162026] = 2, + [166690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6759), 1, - anon_sym_LBRACE, - [162033] = 2, + ACTIONS(7670), 1, + anon_sym_RBRACE, + [166697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - [162040] = 2, + ACTIONS(7672), 1, + aux_sym_type_effect_suffix_token1, + [166704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6763), 1, - anon_sym_LBRACE, - [162047] = 2, + ACTIONS(7674), 1, + anon_sym_RBRACE, + [166711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 1, + ACTIONS(7676), 1, anon_sym_EQ, - [162054] = 2, + [166718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, - anon_sym_EQ, - [162061] = 2, + ACTIONS(7678), 1, + aux_sym_primitive_reverse_atom_token1, + [166725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6767), 1, - anon_sym_SEMI_SEMI, - [162068] = 2, + ACTIONS(7680), 1, + anon_sym_RBRACE, + [166732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6769), 1, - sym_id, - [162075] = 2, + ACTIONS(7682), 1, + anon_sym_RBRACE, + [166739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6771), 1, - aux_sym_primitive_reverse_atom_token1, - [162082] = 2, + ACTIONS(7684), 1, + anon_sym_RBRACE, + [166746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6773), 1, + ACTIONS(7686), 1, aux_sym_type_effect_suffix_token1, - [162089] = 2, + [166753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6775), 1, - anon_sym_LBRACE, - [162096] = 2, + ACTIONS(7688), 1, + aux_sym_primitive_reverse_atom_token1, + [166760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, - anon_sym_LBRACE, - [162103] = 2, + ACTIONS(7690), 1, + anon_sym_EQ, + [166767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6779), 1, - anon_sym_LBRACE, - [162110] = 2, + ACTIONS(7692), 1, + anon_sym_RBRACE, + [166774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 1, - anon_sym_SEMI_SEMI, - [162117] = 2, + ACTIONS(7694), 1, + anon_sym_RBRACE, + [166781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_LBRACE, - [162124] = 2, + ACTIONS(7696), 1, + anon_sym_RBRACE, + [166788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 1, - anon_sym_LBRACE, - [162131] = 2, + ACTIONS(7698), 1, + anon_sym_RBRACE, + [166795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6787), 1, - anon_sym_LBRACE, - [162138] = 2, + ACTIONS(7700), 1, + aux_sym_type_effect_suffix_token1, + [166802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_EQ, - [162145] = 2, + ACTIONS(7702), 1, + aux_sym_primitive_reverse_atom_token1, + [166809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, + ACTIONS(7704), 1, anon_sym_EQ, - [162152] = 2, + [166816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym_LBRACE, - [162159] = 2, + ACTIONS(7706), 1, + aux_sym_primitive_reverse_atom_token1, + [166823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, - anon_sym_LBRACE, - [162166] = 2, + ACTIONS(7708), 1, + anon_sym_RBRACE, + [166830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, - aux_sym_primitive_reverse_atom_token1, - [162173] = 2, + ACTIONS(7710), 1, + anon_sym_RBRACE, + [166837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, - aux_sym_type_effect_suffix_token1, - [162180] = 2, + ACTIONS(7712), 1, + anon_sym_RBRACE, + [166844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6799), 1, - anon_sym_SEMI_SEMI, - [162187] = 2, + ACTIONS(7714), 1, + aux_sym_type_effect_suffix_token1, + [166851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - anon_sym_LBRACE, - [162194] = 2, + ACTIONS(7716), 1, + aux_sym_type_effect_suffix_token1, + [166858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 1, + ACTIONS(7718), 1, anon_sym_EQ, - [162201] = 2, + [166865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, - anon_sym_LBRACE, - [162208] = 2, + ACTIONS(7720), 1, + aux_sym_primitive_reverse_atom_token1, + [166872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - [162215] = 2, + ACTIONS(7722), 1, + aux_sym_primitive_reverse_atom_token1, + [166879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6345), 1, - anon_sym_EQ, - [162222] = 2, + ACTIONS(7724), 1, + anon_sym_RBRACE, + [166886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6809), 1, - anon_sym_LBRACE, - [162229] = 2, + ACTIONS(7726), 1, + anon_sym_RBRACE, + [166893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, - sym_id, - [162236] = 2, + ACTIONS(7728), 1, + anon_sym_EQ, + [166900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_EQ, - [162243] = 2, + ACTIONS(7730), 1, + anon_sym_RBRACE, + [166907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6815), 1, - anon_sym_SEMI_SEMI, - [162250] = 2, + ACTIONS(7732), 1, + aux_sym_type_effect_suffix_token1, + [166914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, - anon_sym_LBRACE, - [162257] = 2, + ACTIONS(7734), 1, + aux_sym_primitive_reverse_atom_token1, + [166921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_EQ, - [162264] = 2, + ACTIONS(7736), 1, + anon_sym_RBRACE, + [166928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(7738), 1, anon_sym_EQ, - [162271] = 2, + [166935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_LBRACE, - [162278] = 2, + ACTIONS(7740), 1, + anon_sym_RBRACE, + [166942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 1, - anon_sym_LBRACE, - [162285] = 2, + ACTIONS(7742), 1, + anon_sym_RBRACE, + [166949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, - anon_sym_LBRACE, - [162292] = 2, + ACTIONS(7744), 1, + aux_sym_type_effect_suffix_token1, + [166956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6827), 1, - sym_id, - [162299] = 2, + ACTIONS(7746), 1, + anon_sym_RBRACE, + [166963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_DASH_GT, - [162306] = 2, + ACTIONS(7748), 1, + anon_sym_EQ, + [166970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LBRACE, - [162313] = 2, + ACTIONS(7750), 1, + aux_sym_primitive_reverse_atom_token1, + [166977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6833), 1, - anon_sym_EQ, - [162320] = 2, + ACTIONS(7752), 1, + anon_sym_RBRACE, + [166984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6835), 1, - aux_sym_primitive_reverse_atom_token1, - [162327] = 2, + ACTIONS(7754), 1, + anon_sym_RBRACE, + [166991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 1, - aux_sym_type_effect_suffix_token1, - [162334] = 2, + ACTIONS(7756), 1, + anon_sym_RBRACE, + [166998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 1, - anon_sym_SEMI_SEMI, - [162341] = 2, + ACTIONS(7758), 1, + anon_sym_EQ, + [167005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6841), 1, - anon_sym_of, - [162348] = 2, + ACTIONS(7760), 1, + aux_sym_type_effect_suffix_token1, + [167012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, - anon_sym_LBRACE, - [162355] = 2, + ACTIONS(7762), 1, + aux_sym_primitive_reverse_atom_token1, + [167019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_LBRACE, - [162362] = 2, + ACTIONS(7764), 1, + anon_sym_RBRACE, + [167026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6847), 1, - anon_sym_SEMI, - [162369] = 2, + ACTIONS(7766), 1, + anon_sym_RBRACE, + [167033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, - anon_sym_RPAREN, - [162376] = 2, + ACTIONS(7768), 1, + anon_sym_EQ, + [167040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6851), 1, - anon_sym_DASH_GT, - [162383] = 2, + ACTIONS(7770), 1, + anon_sym_RBRACE, + [167047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, - anon_sym_LBRACE, - [162390] = 2, + ACTIONS(7772), 1, + anon_sym_RBRACE, + [167054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6855), 1, - anon_sym_EQ, - [162397] = 2, + ACTIONS(7774), 1, + aux_sym_type_effect_suffix_token1, + [167061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, + ACTIONS(7776), 1, aux_sym_primitive_reverse_atom_token1, - [162404] = 2, + [167068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, - aux_sym_type_effect_suffix_token1, - [162411] = 2, + ACTIONS(7778), 1, + anon_sym_EQ, + [167075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_EQ, - [162418] = 2, + ACTIONS(7780), 1, + anon_sym_RBRACE, + [167082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, - anon_sym_LBRACE, - [162425] = 2, + ACTIONS(7782), 1, + anon_sym_RBRACE, + [167089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6865), 1, - anon_sym_LBRACE, - [162432] = 2, + ACTIONS(7784), 1, + anon_sym_RBRACE, + [167096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - anon_sym_DASH_GT, - [162439] = 2, + ACTIONS(7786), 1, + anon_sym_RBRACE, + [167103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6869), 1, - anon_sym_LPAREN, - [162446] = 2, + ACTIONS(7788), 1, + anon_sym_EQ, + [167110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, + ACTIONS(7790), 1, aux_sym_type_effect_suffix_token1, - [162453] = 2, + [167117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 1, - anon_sym_LBRACE, - [162460] = 2, + ACTIONS(7792), 1, + aux_sym_type_effect_suffix_token1, + [167124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_EQ, - [162467] = 2, + ACTIONS(7794), 1, + aux_sym_primitive_reverse_atom_token1, + [167131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6877), 1, + ACTIONS(7796), 1, aux_sym_primitive_reverse_atom_token1, - [162474] = 2, + [167138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SEMI_SEMI, - [162481] = 2, + ACTIONS(7798), 1, + anon_sym_EQ, + [167145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_LPAREN, - [162488] = 2, + ACTIONS(7800), 1, + anon_sym_RBRACE, + [167152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - aux_sym_primitive_reverse_atom_token1, - [162495] = 2, + ACTIONS(7802), 1, + anon_sym_RBRACE, + [167159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 1, - aux_sym_type_effect_suffix_token1, - [162502] = 2, + ACTIONS(7804), 1, + anon_sym_RBRACE, + [167166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_LPAREN, - [162509] = 2, + ACTIONS(7806), 1, + aux_sym_primitive_reverse_atom_token1, + [167173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_DASH_GT, - [162516] = 2, + ACTIONS(7808), 1, + anon_sym_RBRACE, + [167180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6309), 1, - anon_sym_EQ, - [162523] = 2, + ACTIONS(7810), 1, + sym_id, + [167187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6891), 1, - aux_sym_primitive_reverse_atom_token1, - [162530] = 2, + ACTIONS(7812), 1, + sym_module_id, + [167194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 1, - anon_sym_RBRACK, - [162537] = 2, + ACTIONS(7814), 1, + aux_sym_type_effect_suffix_token1, + [167201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, - sym_module_id, - [162544] = 2, + ACTIONS(7816), 1, + anon_sym_EQ, + [167208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, - aux_sym_type_effect_suffix_token1, - [162551] = 2, + ACTIONS(7818), 1, + anon_sym_SEMI_SEMI, + [167215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 1, + anon_sym_DASH_GT, + [167222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, + ACTIONS(7822), 1, anon_sym_SEMI_SEMI, - [162558] = 2, + [167229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(7824), 1, aux_sym_primitive_reverse_atom_token1, - [162565] = 2, + [167236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, - anon_sym_LBRACE, - [162572] = 2, + ACTIONS(7826), 1, + anon_sym_SEMI_SEMI, + [167243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6903), 1, - aux_sym_type_effect_suffix_token1, - [162579] = 2, + ACTIONS(7828), 1, + anon_sym_RBRACE, + [167250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 1, - aux_sym_primitive_reverse_atom_token1, - [162586] = 2, + ACTIONS(7830), 1, + anon_sym_RBRACE, + [167257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6907), 1, - aux_sym_type_effect_suffix_token1, - [162593] = 2, + ACTIONS(7832), 1, + anon_sym_RBRACE, + [167264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_DASH_GT, - [162600] = 2, + ACTIONS(7834), 1, + anon_sym_RBRACE, + [167271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_LBRACE, - [162607] = 2, + ACTIONS(7836), 1, + anon_sym_DASH_GT, + [167278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6913), 1, - anon_sym_LBRACE, - [162614] = 2, + ACTIONS(7838), 1, + aux_sym_type_effect_suffix_token1, + [167285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6915), 1, + ACTIONS(7840), 1, anon_sym_EQ, - [162621] = 2, + [167292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6917), 1, + ACTIONS(7842), 1, + aux_sym_primitive_reverse_atom_token1, + [167299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 1, anon_sym_DASH_GT, - [162628] = 2, + [167306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7846), 1, + anon_sym_RBRACE, + [167313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7108), 1, + anon_sym_EQ, + [167320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, + ACTIONS(7848), 1, aux_sym_primitive_reverse_atom_token1, - [162635] = 2, + [167327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_LBRACE, - [162642] = 2, + ACTIONS(7850), 1, + aux_sym_type_effect_suffix_token1, + [167334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_EQ, - [162649] = 2, + ACTIONS(7852), 1, + anon_sym_RBRACE, + [167341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7854), 1, + anon_sym_RBRACE, + [167348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6923), 1, + ACTIONS(7856), 1, anon_sym_SEMI_SEMI, - [162656] = 2, + [167355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6925), 1, + ACTIONS(7858), 1, anon_sym_COLON, - [162663] = 2, + [167362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7860), 1, + anon_sym_EQ, + [167369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(7862), 1, sym_id, - [162670] = 2, + [167376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, + ACTIONS(7864), 1, aux_sym_type_effect_suffix_token1, - [162677] = 2, + [167383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, - aux_sym_type_effect_suffix_token1, - [162684] = 2, + ACTIONS(7866), 1, + anon_sym_RBRACE, + [167390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7868), 1, sym_id, - [162691] = 2, + [167397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, - aux_sym_primitive_reverse_atom_token1, - [162698] = 2, + ACTIONS(7870), 1, + anon_sym_EQ, + [167404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6937), 1, - aux_sym_primitive_reverse_atom_token1, - [162705] = 2, + ACTIONS(7872), 1, + aux_sym_type_effect_suffix_token1, + [167411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6939), 1, + ACTIONS(7874), 1, aux_sym_primitive_reverse_atom_token1, - [162712] = 2, + [167418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6941), 1, - aux_sym_primitive_reverse_atom_token1, - [162719] = 2, + ACTIONS(7876), 1, + anon_sym_RBRACE, + [167425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 1, + ACTIONS(7878), 1, + anon_sym_RBRACE, + [167432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_RBRACE, + [167439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7882), 1, anon_sym_LPAREN, - [162726] = 2, + [167446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6945), 1, - aux_sym_type_effect_suffix_token1, - [162733] = 2, + ACTIONS(7884), 1, + anon_sym_RBRACE, + [167453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6947), 1, + ACTIONS(7886), 1, anon_sym_LPAREN, - [162740] = 2, + [167460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6949), 1, - aux_sym_primitive_reverse_atom_token1, - [162747] = 2, + ACTIONS(7888), 1, + anon_sym_RBRACE, + [167467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6951), 1, - aux_sym_type_effect_suffix_token1, - [162754] = 2, + ACTIONS(7890), 1, + anon_sym_RBRACE, + [167474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6953), 1, + ACTIONS(7892), 1, anon_sym_SEMI_SEMI, - [162761] = 2, + [167481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6955), 1, - anon_sym_EQ, - [162768] = 2, + ACTIONS(7894), 1, + sym_id, + [167488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 1, - aux_sym_primitive_reverse_atom_token1, - [162775] = 2, + ACTIONS(7896), 1, + aux_sym_type_effect_suffix_token1, + [167495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6959), 1, - aux_sym_type_effect_suffix_token1, - [162782] = 2, + ACTIONS(7898), 1, + aux_sym_primitive_reverse_atom_token1, + [167502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6961), 1, + ACTIONS(7900), 1, anon_sym_LPAREN, - [162789] = 2, + [167509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6963), 1, - ts_builtin_sym_end, - [162796] = 2, + ACTIONS(7902), 1, + aux_sym_primitive_reverse_atom_token1, + [167516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6965), 1, - anon_sym_EQ, - [162803] = 2, + ACTIONS(7904), 1, + anon_sym_SEMI_SEMI, + [167523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6967), 1, - aux_sym_primitive_reverse_atom_token1, - [162810] = 2, + ACTIONS(7906), 1, + anon_sym_RBRACE, + [167530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, - anon_sym_EQ, - [162817] = 2, + ACTIONS(7908), 1, + anon_sym_COLON, + [167537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(7910), 1, + anon_sym_SEMI_SEMI, + [167544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7912), 1, + anon_sym_SEMI_SEMI, + [167551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7914), 1, + anon_sym_RBRACE, + [167558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + anon_sym_RBRACE, + [167565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, aux_sym_type_effect_suffix_token1, - [162824] = 2, + [167572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_RBRACE, + [167579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6973), 1, + ACTIONS(7922), 1, aux_sym_primitive_reverse_atom_token1, - [162831] = 2, + [167586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6975), 1, + ACTIONS(7924), 1, + ts_builtin_sym_end, + [167593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7926), 1, anon_sym_SEMI_SEMI, - [162838] = 2, + [167600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6977), 1, - anon_sym_LBRACE, - [162845] = 2, + ACTIONS(7928), 1, + aux_sym_type_effect_suffix_token1, + [167607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 1, - anon_sym_EQ, - [162852] = 2, + ACTIONS(7930), 1, + anon_sym_SEMI_SEMI, + [167614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6981), 1, - aux_sym_primitive_reverse_atom_token1, - [162859] = 2, + ACTIONS(7932), 1, + anon_sym_RBRACE, + [167621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - aux_sym_type_effect_suffix_token1, - [162866] = 2, + ACTIONS(7934), 1, + anon_sym_RBRACE, + [167628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6985), 1, + ACTIONS(7936), 1, aux_sym_primitive_reverse_atom_token1, - [162873] = 2, + [167635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, + ACTIONS(7938), 1, sym_id, - [162880] = 2, + [167642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5246), 1, anon_sym_SEMI_SEMI, - [162887] = 2, + [167649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(7940), 1, aux_sym_primitive_reverse_atom_token1, - [162894] = 2, + [167656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, + ACTIONS(7942), 1, aux_sym_type_effect_suffix_token1, - [162901] = 2, + [167663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7944), 1, anon_sym_COLON, - [162908] = 2, + [167670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 1, + ACTIONS(7946), 1, anon_sym_SEMI_SEMI, - [162915] = 2, + [167677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - aux_sym_primitive_reverse_atom_token1, - [162922] = 2, + ACTIONS(7948), 1, + anon_sym_RBRACE, + [167684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6999), 1, - aux_sym_type_effect_suffix_token1, - [162929] = 2, + ACTIONS(7950), 1, + anon_sym_RBRACE, + [167691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, + ACTIONS(7952), 1, anon_sym_LPAREN, - [162936] = 2, + [167698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, + ACTIONS(7954), 1, anon_sym_LPAREN, - [162943] = 2, + [167705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 1, - aux_sym_primitive_reverse_atom_token1, - [162950] = 2, + ACTIONS(7956), 1, + anon_sym_RBRACE, + [167712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7007), 1, + ACTIONS(7958), 1, aux_sym_type_effect_suffix_token1, - [162957] = 2, + [167719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, + ACTIONS(7960), 1, anon_sym_SEMI_SEMI, - [162964] = 2, + [167726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7962), 1, anon_sym_LPAREN, - [162971] = 2, + [167733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7964), 1, aux_sym_primitive_reverse_atom_token1, - [162978] = 2, + [167740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6269), 1, + ACTIONS(7966), 1, anon_sym_EQ, - [162985] = 2, + [167747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - aux_sym_type_effect_suffix_token1, - [162992] = 2, + ACTIONS(7968), 1, + sym_id, + [167754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, + ACTIONS(7970), 1, anon_sym_LBRACE, - [162999] = 2, + [167761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - aux_sym_primitive_reverse_atom_token1, - [163006] = 2, + ACTIONS(7972), 1, + anon_sym_RBRACE, + [167768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7974), 1, + sym_id, + [167775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7976), 1, + anon_sym_RBRACE, + [167782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(7978), 1, + anon_sym_RBRACE, + [167789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, + anon_sym_RBRACE, + [167796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7982), 1, anon_sym_EQ, - [163013] = 2, + [167803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(7984), 1, aux_sym_type_effect_suffix_token1, - [163020] = 2, + [167810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(7986), 1, sym_id, - [163027] = 2, + [167817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(7988), 1, sym_id, - [163034] = 2, + [167824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, - anon_sym_EQ, - [163041] = 2, + ACTIONS(7990), 1, + anon_sym_SEMI_SEMI, + [167831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7031), 1, + ACTIONS(7992), 1, sym_id, - [163048] = 2, + [167838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7033), 1, + ACTIONS(7994), 1, anon_sym_SEMI_SEMI, - [163055] = 2, + [167845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6245), 1, - anon_sym_EQ, - [163062] = 2, + ACTIONS(7996), 1, + anon_sym_SEMI_SEMI, + [167852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 1, - anon_sym_EQ, - [163069] = 2, + ACTIONS(7998), 1, + anon_sym_of, + [167859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 1, + ACTIONS(8000), 1, anon_sym_LPAREN, - [163076] = 2, + [167866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(8002), 1, aux_sym_primitive_reverse_atom_token1, - [163083] = 2, + [167873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 1, + ACTIONS(7096), 1, anon_sym_SEMI_SEMI, - [163090] = 2, + [167880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - aux_sym_primitive_reverse_atom_token1, - [163097] = 2, + ACTIONS(8004), 1, + anon_sym_RBRACE, + [167887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 1, - aux_sym_type_effect_suffix_token1, - [163104] = 2, + ACTIONS(8006), 1, + sym_id, + [167894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7045), 1, + ACTIONS(8008), 1, + anon_sym_RBRACE, + [167901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8010), 1, anon_sym_SEMI_SEMI, - [163111] = 2, + [167908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7047), 1, - aux_sym_type_effect_suffix_token1, - [163118] = 2, + ACTIONS(8012), 1, + anon_sym_RBRACE, + [167915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_EQ, - [163125] = 2, + ACTIONS(8014), 1, + anon_sym_SEMI_SEMI, + [167922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - aux_sym_primitive_reverse_atom_token1, - [163132] = 2, + ACTIONS(8016), 1, + aux_sym_type_effect_suffix_token1, + [167929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - anon_sym_EQ, - [163139] = 2, + ACTIONS(8018), 1, + anon_sym_RBRACE, + [167936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_EQ, - [163146] = 2, + ACTIONS(8020), 1, + anon_sym_SEMI_SEMI, + [167943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7057), 1, - aux_sym_type_effect_suffix_token1, - [163153] = 2, + ACTIONS(8022), 1, + aux_sym_primitive_reverse_atom_token1, + [167950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(8024), 1, + anon_sym_RBRACE, + [167957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8026), 1, aux_sym_fixity_token1, - [163160] = 2, + [167964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, + ACTIONS(8028), 1, sym_id, - [163167] = 2, + [167971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_EQ, - [163174] = 2, + ACTIONS(8030), 1, + anon_sym_SEMI_SEMI, + [167978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, + ACTIONS(8032), 1, sym_module_path, - [163181] = 2, + [167985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - aux_sym_primitive_reverse_atom_token1, + ACTIONS(8034), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 48, - [SMALL_STATE(4)] = 96, - [SMALL_STATE(5)] = 144, - [SMALL_STATE(6)] = 192, - [SMALL_STATE(7)] = 240, - [SMALL_STATE(8)] = 288, - [SMALL_STATE(9)] = 358, - [SMALL_STATE(10)] = 428, - [SMALL_STATE(11)] = 490, - [SMALL_STATE(12)] = 552, - [SMALL_STATE(13)] = 600, - [SMALL_STATE(14)] = 662, - [SMALL_STATE(15)] = 724, - [SMALL_STATE(16)] = 786, - [SMALL_STATE(17)] = 848, - [SMALL_STATE(18)] = 910, - [SMALL_STATE(19)] = 980, - [SMALL_STATE(20)] = 1050, - [SMALL_STATE(21)] = 1112, - [SMALL_STATE(22)] = 1160, - [SMALL_STATE(23)] = 1230, - [SMALL_STATE(24)] = 1300, - [SMALL_STATE(25)] = 1370, - [SMALL_STATE(26)] = 1440, - [SMALL_STATE(27)] = 1510, - [SMALL_STATE(28)] = 1580, - [SMALL_STATE(29)] = 1650, - [SMALL_STATE(30)] = 1720, - [SMALL_STATE(31)] = 1790, - [SMALL_STATE(32)] = 1860, - [SMALL_STATE(33)] = 1930, - [SMALL_STATE(34)] = 2000, - [SMALL_STATE(35)] = 2070, - [SMALL_STATE(36)] = 2140, - [SMALL_STATE(37)] = 2209, - [SMALL_STATE(38)] = 2256, - [SMALL_STATE(39)] = 2325, - [SMALL_STATE(40)] = 2394, - [SMALL_STATE(41)] = 2463, - [SMALL_STATE(42)] = 2510, - [SMALL_STATE(43)] = 2557, - [SMALL_STATE(44)] = 2604, - [SMALL_STATE(45)] = 2651, - [SMALL_STATE(46)] = 2712, - [SMALL_STATE(47)] = 2759, - [SMALL_STATE(48)] = 2806, - [SMALL_STATE(49)] = 2853, - [SMALL_STATE(50)] = 2914, - [SMALL_STATE(51)] = 2961, - [SMALL_STATE(52)] = 3030, - [SMALL_STATE(53)] = 3099, - [SMALL_STATE(54)] = 3168, - [SMALL_STATE(55)] = 3237, - [SMALL_STATE(56)] = 3306, - [SMALL_STATE(57)] = 3375, - [SMALL_STATE(58)] = 3436, - [SMALL_STATE(59)] = 3505, - [SMALL_STATE(60)] = 3574, - [SMALL_STATE(61)] = 3635, - [SMALL_STATE(62)] = 3704, - [SMALL_STATE(63)] = 3773, - [SMALL_STATE(64)] = 3842, - [SMALL_STATE(65)] = 3911, - [SMALL_STATE(66)] = 3980, - [SMALL_STATE(67)] = 4049, - [SMALL_STATE(68)] = 4110, - [SMALL_STATE(69)] = 4171, - [SMALL_STATE(70)] = 4232, - [SMALL_STATE(71)] = 4293, - [SMALL_STATE(72)] = 4354, - [SMALL_STATE(73)] = 4415, - [SMALL_STATE(74)] = 4476, - [SMALL_STATE(75)] = 4537, - [SMALL_STATE(76)] = 4584, - [SMALL_STATE(77)] = 4653, - [SMALL_STATE(78)] = 4700, - [SMALL_STATE(79)] = 4769, - [SMALL_STATE(80)] = 4838, - [SMALL_STATE(81)] = 4907, - [SMALL_STATE(82)] = 4976, - [SMALL_STATE(83)] = 5045, - [SMALL_STATE(84)] = 5114, - [SMALL_STATE(85)] = 5183, - [SMALL_STATE(86)] = 5252, - [SMALL_STATE(87)] = 5299, - [SMALL_STATE(88)] = 5359, - [SMALL_STATE(89)] = 5427, - [SMALL_STATE(90)] = 5495, - [SMALL_STATE(91)] = 5563, - [SMALL_STATE(92)] = 5631, - [SMALL_STATE(93)] = 5699, - [SMALL_STATE(94)] = 5745, - [SMALL_STATE(95)] = 5791, - [SMALL_STATE(96)] = 5837, - [SMALL_STATE(97)] = 5883, - [SMALL_STATE(98)] = 5951, - [SMALL_STATE(99)] = 6011, - [SMALL_STATE(100)] = 6079, - [SMALL_STATE(101)] = 6147, - [SMALL_STATE(102)] = 6215, - [SMALL_STATE(103)] = 6275, - [SMALL_STATE(104)] = 6343, - [SMALL_STATE(105)] = 6403, - [SMALL_STATE(106)] = 6463, - [SMALL_STATE(107)] = 6523, - [SMALL_STATE(108)] = 6569, - [SMALL_STATE(109)] = 6615, - [SMALL_STATE(110)] = 6675, - [SMALL_STATE(111)] = 6721, - [SMALL_STATE(112)] = 6767, - [SMALL_STATE(113)] = 6827, - [SMALL_STATE(114)] = 6895, - [SMALL_STATE(115)] = 6963, - [SMALL_STATE(116)] = 7031, - [SMALL_STATE(117)] = 7099, - [SMALL_STATE(118)] = 7167, - [SMALL_STATE(119)] = 7235, - [SMALL_STATE(120)] = 7303, - [SMALL_STATE(121)] = 7371, - [SMALL_STATE(122)] = 7438, - [SMALL_STATE(123)] = 7495, - [SMALL_STATE(124)] = 7540, - [SMALL_STATE(125)] = 7607, - [SMALL_STATE(126)] = 7674, - [SMALL_STATE(127)] = 7741, - [SMALL_STATE(128)] = 7808, - [SMALL_STATE(129)] = 7853, - [SMALL_STATE(130)] = 7920, - [SMALL_STATE(131)] = 7979, - [SMALL_STATE(132)] = 8046, - [SMALL_STATE(133)] = 8103, - [SMALL_STATE(134)] = 8160, - [SMALL_STATE(135)] = 8219, - [SMALL_STATE(136)] = 8264, - [SMALL_STATE(137)] = 8309, - [SMALL_STATE(138)] = 8366, - [SMALL_STATE(139)] = 8425, - [SMALL_STATE(140)] = 8492, - [SMALL_STATE(141)] = 8559, - [SMALL_STATE(142)] = 8626, - [SMALL_STATE(143)] = 8693, - [SMALL_STATE(144)] = 8752, - [SMALL_STATE(145)] = 8819, - [SMALL_STATE(146)] = 8886, - [SMALL_STATE(147)] = 8942, - [SMALL_STATE(148)] = 8998, - [SMALL_STATE(149)] = 9054, - [SMALL_STATE(150)] = 9110, - [SMALL_STATE(151)] = 9176, - [SMALL_STATE(152)] = 9242, - [SMALL_STATE(153)] = 9308, - [SMALL_STATE(154)] = 9374, - [SMALL_STATE(155)] = 9438, - [SMALL_STATE(156)] = 9494, - [SMALL_STATE(157)] = 9550, - [SMALL_STATE(158)] = 9614, - [SMALL_STATE(159)] = 9678, - [SMALL_STATE(160)] = 9734, - [SMALL_STATE(161)] = 9776, - [SMALL_STATE(162)] = 9818, - [SMALL_STATE(163)] = 9874, - [SMALL_STATE(164)] = 9916, - [SMALL_STATE(165)] = 9980, - [SMALL_STATE(166)] = 10044, - [SMALL_STATE(167)] = 10108, - [SMALL_STATE(168)] = 10150, - [SMALL_STATE(169)] = 10214, - [SMALL_STATE(170)] = 10278, - [SMALL_STATE(171)] = 10342, - [SMALL_STATE(172)] = 10383, - [SMALL_STATE(173)] = 10424, - [SMALL_STATE(174)] = 10465, - [SMALL_STATE(175)] = 10506, - [SMALL_STATE(176)] = 10569, - [SMALL_STATE(177)] = 10632, - [SMALL_STATE(178)] = 10695, - [SMALL_STATE(179)] = 10758, - [SMALL_STATE(180)] = 10821, - [SMALL_STATE(181)] = 10862, - [SMALL_STATE(182)] = 10903, - [SMALL_STATE(183)] = 10966, - [SMALL_STATE(184)] = 11029, - [SMALL_STATE(185)] = 11092, - [SMALL_STATE(186)] = 11155, - [SMALL_STATE(187)] = 11218, - [SMALL_STATE(188)] = 11281, - [SMALL_STATE(189)] = 11336, - [SMALL_STATE(190)] = 11391, - [SMALL_STATE(191)] = 11454, - [SMALL_STATE(192)] = 11509, - [SMALL_STATE(193)] = 11564, - [SMALL_STATE(194)] = 11619, - [SMALL_STATE(195)] = 11674, - [SMALL_STATE(196)] = 11729, - [SMALL_STATE(197)] = 11784, - [SMALL_STATE(198)] = 11825, - [SMALL_STATE(199)] = 11888, - [SMALL_STATE(200)] = 11929, - [SMALL_STATE(201)] = 11970, - [SMALL_STATE(202)] = 12011, - [SMALL_STATE(203)] = 12074, - [SMALL_STATE(204)] = 12137, - [SMALL_STATE(205)] = 12200, - [SMALL_STATE(206)] = 12263, - [SMALL_STATE(207)] = 12326, - [SMALL_STATE(208)] = 12389, - [SMALL_STATE(209)] = 12452, - [SMALL_STATE(210)] = 12499, - [SMALL_STATE(211)] = 12562, - [SMALL_STATE(212)] = 12603, - [SMALL_STATE(213)] = 12666, - [SMALL_STATE(214)] = 12729, - [SMALL_STATE(215)] = 12770, - [SMALL_STATE(216)] = 12833, - [SMALL_STATE(217)] = 12896, - [SMALL_STATE(218)] = 12959, - [SMALL_STATE(219)] = 13022, - [SMALL_STATE(220)] = 13085, - [SMALL_STATE(221)] = 13148, - [SMALL_STATE(222)] = 13211, - [SMALL_STATE(223)] = 13252, - [SMALL_STATE(224)] = 13293, - [SMALL_STATE(225)] = 13338, - [SMALL_STATE(226)] = 13379, - [SMALL_STATE(227)] = 13442, - [SMALL_STATE(228)] = 13483, - [SMALL_STATE(229)] = 13524, - [SMALL_STATE(230)] = 13565, - [SMALL_STATE(231)] = 13636, - [SMALL_STATE(232)] = 13699, - [SMALL_STATE(233)] = 13740, - [SMALL_STATE(234)] = 13781, - [SMALL_STATE(235)] = 13828, - [SMALL_STATE(236)] = 13891, - [SMALL_STATE(237)] = 13946, - [SMALL_STATE(238)] = 14001, - [SMALL_STATE(239)] = 14056, - [SMALL_STATE(240)] = 14111, - [SMALL_STATE(241)] = 14174, - [SMALL_STATE(242)] = 14237, - [SMALL_STATE(243)] = 14300, - [SMALL_STATE(244)] = 14363, - [SMALL_STATE(245)] = 14418, - [SMALL_STATE(246)] = 14473, - [SMALL_STATE(247)] = 14528, - [SMALL_STATE(248)] = 14583, - [SMALL_STATE(249)] = 14646, - [SMALL_STATE(250)] = 14709, - [SMALL_STATE(251)] = 14772, - [SMALL_STATE(252)] = 14835, - [SMALL_STATE(253)] = 14890, - [SMALL_STATE(254)] = 14945, - [SMALL_STATE(255)] = 15000, - [SMALL_STATE(256)] = 15055, - [SMALL_STATE(257)] = 15118, - [SMALL_STATE(258)] = 15181, - [SMALL_STATE(259)] = 15244, - [SMALL_STATE(260)] = 15289, - [SMALL_STATE(261)] = 15352, - [SMALL_STATE(262)] = 15386, - [SMALL_STATE(263)] = 15430, - [SMALL_STATE(264)] = 15474, - [SMALL_STATE(265)] = 15518, - [SMALL_STATE(266)] = 15562, - [SMALL_STATE(267)] = 15602, - [SMALL_STATE(268)] = 15670, - [SMALL_STATE(269)] = 15710, - [SMALL_STATE(270)] = 15754, - [SMALL_STATE(271)] = 15794, - [SMALL_STATE(272)] = 15834, - [SMALL_STATE(273)] = 15878, - [SMALL_STATE(274)] = 15918, - [SMALL_STATE(275)] = 15958, - [SMALL_STATE(276)] = 16002, - [SMALL_STATE(277)] = 16042, - [SMALL_STATE(278)] = 16086, - [SMALL_STATE(279)] = 16126, - [SMALL_STATE(280)] = 16192, - [SMALL_STATE(281)] = 16236, - [SMALL_STATE(282)] = 16276, - [SMALL_STATE(283)] = 16316, - [SMALL_STATE(284)] = 16356, - [SMALL_STATE(285)] = 16400, - [SMALL_STATE(286)] = 16440, - [SMALL_STATE(287)] = 16480, - [SMALL_STATE(288)] = 16524, - [SMALL_STATE(289)] = 16558, - [SMALL_STATE(290)] = 16598, - [SMALL_STATE(291)] = 16642, - [SMALL_STATE(292)] = 16682, - [SMALL_STATE(293)] = 16716, - [SMALL_STATE(294)] = 16760, - [SMALL_STATE(295)] = 16804, - [SMALL_STATE(296)] = 16844, - [SMALL_STATE(297)] = 16888, - [SMALL_STATE(298)] = 16932, - [SMALL_STATE(299)] = 16976, - [SMALL_STATE(300)] = 17020, - [SMALL_STATE(301)] = 17064, - [SMALL_STATE(302)] = 17108, - [SMALL_STATE(303)] = 17152, - [SMALL_STATE(304)] = 17196, - [SMALL_STATE(305)] = 17240, - [SMALL_STATE(306)] = 17284, - [SMALL_STATE(307)] = 17352, - [SMALL_STATE(308)] = 17386, - [SMALL_STATE(309)] = 17420, - [SMALL_STATE(310)] = 17474, - [SMALL_STATE(311)] = 17518, - [SMALL_STATE(312)] = 17572, - [SMALL_STATE(313)] = 17626, - [SMALL_STATE(314)] = 17680, - [SMALL_STATE(315)] = 17714, - [SMALL_STATE(316)] = 17748, - [SMALL_STATE(317)] = 17782, - [SMALL_STATE(318)] = 17836, - [SMALL_STATE(319)] = 17870, - [SMALL_STATE(320)] = 17904, - [SMALL_STATE(321)] = 17958, - [SMALL_STATE(322)] = 17992, - [SMALL_STATE(323)] = 18026, - [SMALL_STATE(324)] = 18060, - [SMALL_STATE(325)] = 18104, - [SMALL_STATE(326)] = 18158, - [SMALL_STATE(327)] = 18192, - [SMALL_STATE(328)] = 18246, - [SMALL_STATE(329)] = 18312, - [SMALL_STATE(330)] = 18366, - [SMALL_STATE(331)] = 18428, - [SMALL_STATE(332)] = 18490, - [SMALL_STATE(333)] = 18532, - [SMALL_STATE(334)] = 18566, - [SMALL_STATE(335)] = 18608, - [SMALL_STATE(336)] = 18650, - [SMALL_STATE(337)] = 18712, - [SMALL_STATE(338)] = 18780, - [SMALL_STATE(339)] = 18824, - [SMALL_STATE(340)] = 18886, - [SMALL_STATE(341)] = 18928, - [SMALL_STATE(342)] = 18970, - [SMALL_STATE(343)] = 19032, - [SMALL_STATE(344)] = 19074, - [SMALL_STATE(345)] = 19116, - [SMALL_STATE(346)] = 19158, - [SMALL_STATE(347)] = 19200, - [SMALL_STATE(348)] = 19244, - [SMALL_STATE(349)] = 19286, - [SMALL_STATE(350)] = 19328, - [SMALL_STATE(351)] = 19370, - [SMALL_STATE(352)] = 19412, - [SMALL_STATE(353)] = 19454, - [SMALL_STATE(354)] = 19496, - [SMALL_STATE(355)] = 19538, - [SMALL_STATE(356)] = 19580, - [SMALL_STATE(357)] = 19622, - [SMALL_STATE(358)] = 19664, - [SMALL_STATE(359)] = 19706, - [SMALL_STATE(360)] = 19748, - [SMALL_STATE(361)] = 19816, - [SMALL_STATE(362)] = 19858, - [SMALL_STATE(363)] = 19900, - [SMALL_STATE(364)] = 19942, - [SMALL_STATE(365)] = 19984, - [SMALL_STATE(366)] = 20026, - [SMALL_STATE(367)] = 20068, - [SMALL_STATE(368)] = 20110, - [SMALL_STATE(369)] = 20164, - [SMALL_STATE(370)] = 20218, - [SMALL_STATE(371)] = 20280, - [SMALL_STATE(372)] = 20342, - [SMALL_STATE(373)] = 20404, - [SMALL_STATE(374)] = 20466, - [SMALL_STATE(375)] = 20520, - [SMALL_STATE(376)] = 20574, - [SMALL_STATE(377)] = 20618, - [SMALL_STATE(378)] = 20680, - [SMALL_STATE(379)] = 20742, - [SMALL_STATE(380)] = 20804, - [SMALL_STATE(381)] = 20866, - [SMALL_STATE(382)] = 20928, - [SMALL_STATE(383)] = 20990, - [SMALL_STATE(384)] = 21052, - [SMALL_STATE(385)] = 21114, - [SMALL_STATE(386)] = 21184, - [SMALL_STATE(387)] = 21246, - [SMALL_STATE(388)] = 21308, - [SMALL_STATE(389)] = 21370, - [SMALL_STATE(390)] = 21432, - [SMALL_STATE(391)] = 21494, - [SMALL_STATE(392)] = 21556, - [SMALL_STATE(393)] = 21626, - [SMALL_STATE(394)] = 21688, - [SMALL_STATE(395)] = 21750, - [SMALL_STATE(396)] = 21812, - [SMALL_STATE(397)] = 21846, - [SMALL_STATE(398)] = 21880, - [SMALL_STATE(399)] = 21942, - [SMALL_STATE(400)] = 22004, - [SMALL_STATE(401)] = 22072, - [SMALL_STATE(402)] = 22134, - [SMALL_STATE(403)] = 22196, - [SMALL_STATE(404)] = 22258, - [SMALL_STATE(405)] = 22326, - [SMALL_STATE(406)] = 22360, - [SMALL_STATE(407)] = 22394, - [SMALL_STATE(408)] = 22428, - [SMALL_STATE(409)] = 22462, - [SMALL_STATE(410)] = 22530, - [SMALL_STATE(411)] = 22564, - [SMALL_STATE(412)] = 22626, - [SMALL_STATE(413)] = 22660, - [SMALL_STATE(414)] = 22722, - [SMALL_STATE(415)] = 22764, - [SMALL_STATE(416)] = 22806, - [SMALL_STATE(417)] = 22874, - [SMALL_STATE(418)] = 22916, - [SMALL_STATE(419)] = 22978, - [SMALL_STATE(420)] = 23040, - [SMALL_STATE(421)] = 23074, - [SMALL_STATE(422)] = 23116, - [SMALL_STATE(423)] = 23158, - [SMALL_STATE(424)] = 23226, - [SMALL_STATE(425)] = 23288, - [SMALL_STATE(426)] = 23330, - [SMALL_STATE(427)] = 23372, - [SMALL_STATE(428)] = 23440, - [SMALL_STATE(429)] = 23482, - [SMALL_STATE(430)] = 23524, - [SMALL_STATE(431)] = 23566, - [SMALL_STATE(432)] = 23608, - [SMALL_STATE(433)] = 23650, - [SMALL_STATE(434)] = 23692, - [SMALL_STATE(435)] = 23760, - [SMALL_STATE(436)] = 23802, - [SMALL_STATE(437)] = 23844, - [SMALL_STATE(438)] = 23886, - [SMALL_STATE(439)] = 23928, - [SMALL_STATE(440)] = 23970, - [SMALL_STATE(441)] = 24012, - [SMALL_STATE(442)] = 24054, - [SMALL_STATE(443)] = 24096, - [SMALL_STATE(444)] = 24138, - [SMALL_STATE(445)] = 24180, - [SMALL_STATE(446)] = 24222, - [SMALL_STATE(447)] = 24290, - [SMALL_STATE(448)] = 24332, - [SMALL_STATE(449)] = 24400, - [SMALL_STATE(450)] = 24442, - [SMALL_STATE(451)] = 24484, - [SMALL_STATE(452)] = 24526, - [SMALL_STATE(453)] = 24572, - [SMALL_STATE(454)] = 24626, - [SMALL_STATE(455)] = 24694, - [SMALL_STATE(456)] = 24748, - [SMALL_STATE(457)] = 24802, - [SMALL_STATE(458)] = 24835, - [SMALL_STATE(459)] = 24876, - [SMALL_STATE(460)] = 24919, - [SMALL_STATE(461)] = 24960, - [SMALL_STATE(462)] = 25003, - [SMALL_STATE(463)] = 25044, - [SMALL_STATE(464)] = 25087, - [SMALL_STATE(465)] = 25152, - [SMALL_STATE(466)] = 25195, - [SMALL_STATE(467)] = 25236, - [SMALL_STATE(468)] = 25279, - [SMALL_STATE(469)] = 25320, - [SMALL_STATE(470)] = 25363, - [SMALL_STATE(471)] = 25404, - [SMALL_STATE(472)] = 25447, - [SMALL_STATE(473)] = 25488, - [SMALL_STATE(474)] = 25531, - [SMALL_STATE(475)] = 25572, - [SMALL_STATE(476)] = 25615, - [SMALL_STATE(477)] = 25680, - [SMALL_STATE(478)] = 25723, - [SMALL_STATE(479)] = 25764, - [SMALL_STATE(480)] = 25805, - [SMALL_STATE(481)] = 25870, - [SMALL_STATE(482)] = 25913, - [SMALL_STATE(483)] = 25946, - [SMALL_STATE(484)] = 25989, - [SMALL_STATE(485)] = 26032, - [SMALL_STATE(486)] = 26073, - [SMALL_STATE(487)] = 26116, - [SMALL_STATE(488)] = 26157, - [SMALL_STATE(489)] = 26190, - [SMALL_STATE(490)] = 26235, - [SMALL_STATE(491)] = 26304, - [SMALL_STATE(492)] = 26337, - [SMALL_STATE(493)] = 26370, - [SMALL_STATE(494)] = 26403, - [SMALL_STATE(495)] = 26436, - [SMALL_STATE(496)] = 26477, - [SMALL_STATE(497)] = 26510, - [SMALL_STATE(498)] = 26543, - [SMALL_STATE(499)] = 26576, - [SMALL_STATE(500)] = 26609, - [SMALL_STATE(501)] = 26650, - [SMALL_STATE(502)] = 26683, - [SMALL_STATE(503)] = 26716, - [SMALL_STATE(504)] = 26749, - [SMALL_STATE(505)] = 26782, - [SMALL_STATE(506)] = 26815, - [SMALL_STATE(507)] = 26856, - [SMALL_STATE(508)] = 26897, - [SMALL_STATE(509)] = 26938, - [SMALL_STATE(510)] = 26979, - [SMALL_STATE(511)] = 27020, - [SMALL_STATE(512)] = 27085, - [SMALL_STATE(513)] = 27126, - [SMALL_STATE(514)] = 27193, - [SMALL_STATE(515)] = 27234, - [SMALL_STATE(516)] = 27303, - [SMALL_STATE(517)] = 27368, - [SMALL_STATE(518)] = 27435, - [SMALL_STATE(519)] = 27476, - [SMALL_STATE(520)] = 27543, - [SMALL_STATE(521)] = 27584, - [SMALL_STATE(522)] = 27649, - [SMALL_STATE(523)] = 27716, - [SMALL_STATE(524)] = 27783, - [SMALL_STATE(525)] = 27850, - [SMALL_STATE(526)] = 27891, - [SMALL_STATE(527)] = 27958, - [SMALL_STATE(528)] = 27999, - [SMALL_STATE(529)] = 28066, - [SMALL_STATE(530)] = 28133, - [SMALL_STATE(531)] = 28174, - [SMALL_STATE(532)] = 28217, - [SMALL_STATE(533)] = 28284, - [SMALL_STATE(534)] = 28351, - [SMALL_STATE(535)] = 28392, - [SMALL_STATE(536)] = 28459, - [SMALL_STATE(537)] = 28500, - [SMALL_STATE(538)] = 28567, - [SMALL_STATE(539)] = 28634, - [SMALL_STATE(540)] = 28679, - [SMALL_STATE(541)] = 28746, - [SMALL_STATE(542)] = 28813, - [SMALL_STATE(543)] = 28846, - [SMALL_STATE(544)] = 28913, - [SMALL_STATE(545)] = 28980, - [SMALL_STATE(546)] = 29047, - [SMALL_STATE(547)] = 29114, - [SMALL_STATE(548)] = 29181, - [SMALL_STATE(549)] = 29214, - [SMALL_STATE(550)] = 29247, - [SMALL_STATE(551)] = 29312, - [SMALL_STATE(552)] = 29379, - [SMALL_STATE(553)] = 29412, - [SMALL_STATE(554)] = 29479, - [SMALL_STATE(555)] = 29512, - [SMALL_STATE(556)] = 29545, - [SMALL_STATE(557)] = 29578, - [SMALL_STATE(558)] = 29643, - [SMALL_STATE(559)] = 29710, - [SMALL_STATE(560)] = 29777, - [SMALL_STATE(561)] = 29810, - [SMALL_STATE(562)] = 29853, - [SMALL_STATE(563)] = 29894, - [SMALL_STATE(564)] = 29935, - [SMALL_STATE(565)] = 29976, - [SMALL_STATE(566)] = 30043, - [SMALL_STATE(567)] = 30110, - [SMALL_STATE(568)] = 30143, - [SMALL_STATE(569)] = 30176, - [SMALL_STATE(570)] = 30243, - [SMALL_STATE(571)] = 30284, - [SMALL_STATE(572)] = 30317, - [SMALL_STATE(573)] = 30382, - [SMALL_STATE(574)] = 30415, - [SMALL_STATE(575)] = 30448, - [SMALL_STATE(576)] = 30489, - [SMALL_STATE(577)] = 30530, - [SMALL_STATE(578)] = 30571, - [SMALL_STATE(579)] = 30612, - [SMALL_STATE(580)] = 30653, - [SMALL_STATE(581)] = 30694, - [SMALL_STATE(582)] = 30735, - [SMALL_STATE(583)] = 30776, - [SMALL_STATE(584)] = 30841, - [SMALL_STATE(585)] = 30882, - [SMALL_STATE(586)] = 30947, - [SMALL_STATE(587)] = 30988, - [SMALL_STATE(588)] = 31029, - [SMALL_STATE(589)] = 31096, - [SMALL_STATE(590)] = 31137, - [SMALL_STATE(591)] = 31178, - [SMALL_STATE(592)] = 31219, - [SMALL_STATE(593)] = 31260, - [SMALL_STATE(594)] = 31301, - [SMALL_STATE(595)] = 31366, - [SMALL_STATE(596)] = 31407, - [SMALL_STATE(597)] = 31448, - [SMALL_STATE(598)] = 31481, - [SMALL_STATE(599)] = 31548, - [SMALL_STATE(600)] = 31581, - [SMALL_STATE(601)] = 31622, - [SMALL_STATE(602)] = 31663, - [SMALL_STATE(603)] = 31728, - [SMALL_STATE(604)] = 31761, - [SMALL_STATE(605)] = 31794, - [SMALL_STATE(606)] = 31859, - [SMALL_STATE(607)] = 31900, - [SMALL_STATE(608)] = 31965, - [SMALL_STATE(609)] = 32030, - [SMALL_STATE(610)] = 32063, - [SMALL_STATE(611)] = 32096, - [SMALL_STATE(612)] = 32129, - [SMALL_STATE(613)] = 32170, - [SMALL_STATE(614)] = 32235, - [SMALL_STATE(615)] = 32276, - [SMALL_STATE(616)] = 32317, - [SMALL_STATE(617)] = 32381, - [SMALL_STATE(618)] = 32445, - [SMALL_STATE(619)] = 32509, - [SMALL_STATE(620)] = 32549, - [SMALL_STATE(621)] = 32613, - [SMALL_STATE(622)] = 32677, - [SMALL_STATE(623)] = 32717, - [SMALL_STATE(624)] = 32781, - [SMALL_STATE(625)] = 32821, - [SMALL_STATE(626)] = 32885, - [SMALL_STATE(627)] = 32925, - [SMALL_STATE(628)] = 32989, - [SMALL_STATE(629)] = 33029, - [SMALL_STATE(630)] = 33093, - [SMALL_STATE(631)] = 33133, - [SMALL_STATE(632)] = 33197, - [SMALL_STATE(633)] = 33237, - [SMALL_STATE(634)] = 33301, - [SMALL_STATE(635)] = 33341, - [SMALL_STATE(636)] = 33405, - [SMALL_STATE(637)] = 33445, - [SMALL_STATE(638)] = 33509, - [SMALL_STATE(639)] = 33549, - [SMALL_STATE(640)] = 33613, - [SMALL_STATE(641)] = 33653, - [SMALL_STATE(642)] = 33693, - [SMALL_STATE(643)] = 33733, - [SMALL_STATE(644)] = 33797, - [SMALL_STATE(645)] = 33861, - [SMALL_STATE(646)] = 33901, - [SMALL_STATE(647)] = 33941, - [SMALL_STATE(648)] = 34005, - [SMALL_STATE(649)] = 34045, - [SMALL_STATE(650)] = 34085, - [SMALL_STATE(651)] = 34125, - [SMALL_STATE(652)] = 34165, - [SMALL_STATE(653)] = 34205, - [SMALL_STATE(654)] = 34269, - [SMALL_STATE(655)] = 34309, - [SMALL_STATE(656)] = 34349, - [SMALL_STATE(657)] = 34413, - [SMALL_STATE(658)] = 34477, - [SMALL_STATE(659)] = 34517, - [SMALL_STATE(660)] = 34581, - [SMALL_STATE(661)] = 34621, - [SMALL_STATE(662)] = 34685, - [SMALL_STATE(663)] = 34749, - [SMALL_STATE(664)] = 34789, - [SMALL_STATE(665)] = 34829, - [SMALL_STATE(666)] = 34893, - [SMALL_STATE(667)] = 34957, - [SMALL_STATE(668)] = 34997, - [SMALL_STATE(669)] = 35061, - [SMALL_STATE(670)] = 35101, - [SMALL_STATE(671)] = 35165, - [SMALL_STATE(672)] = 35205, - [SMALL_STATE(673)] = 35269, - [SMALL_STATE(674)] = 35309, - [SMALL_STATE(675)] = 35373, - [SMALL_STATE(676)] = 35413, - [SMALL_STATE(677)] = 35477, - [SMALL_STATE(678)] = 35517, - [SMALL_STATE(679)] = 35557, - [SMALL_STATE(680)] = 35597, - [SMALL_STATE(681)] = 35661, - [SMALL_STATE(682)] = 35701, - [SMALL_STATE(683)] = 35741, - [SMALL_STATE(684)] = 35805, - [SMALL_STATE(685)] = 35845, - [SMALL_STATE(686)] = 35909, - [SMALL_STATE(687)] = 35949, - [SMALL_STATE(688)] = 35989, - [SMALL_STATE(689)] = 36029, - [SMALL_STATE(690)] = 36093, - [SMALL_STATE(691)] = 36133, - [SMALL_STATE(692)] = 36173, - [SMALL_STATE(693)] = 36213, - [SMALL_STATE(694)] = 36253, - [SMALL_STATE(695)] = 36293, - [SMALL_STATE(696)] = 36357, - [SMALL_STATE(697)] = 36421, - [SMALL_STATE(698)] = 36461, - [SMALL_STATE(699)] = 36525, - [SMALL_STATE(700)] = 36565, - [SMALL_STATE(701)] = 36605, - [SMALL_STATE(702)] = 36645, - [SMALL_STATE(703)] = 36685, - [SMALL_STATE(704)] = 36749, - [SMALL_STATE(705)] = 36813, - [SMALL_STATE(706)] = 36853, - [SMALL_STATE(707)] = 36893, - [SMALL_STATE(708)] = 36957, - [SMALL_STATE(709)] = 36997, - [SMALL_STATE(710)] = 37061, - [SMALL_STATE(711)] = 37103, - [SMALL_STATE(712)] = 37145, - [SMALL_STATE(713)] = 37187, - [SMALL_STATE(714)] = 37229, - [SMALL_STATE(715)] = 37271, - [SMALL_STATE(716)] = 37313, - [SMALL_STATE(717)] = 37355, - [SMALL_STATE(718)] = 37397, - [SMALL_STATE(719)] = 37461, - [SMALL_STATE(720)] = 37501, - [SMALL_STATE(721)] = 37543, - [SMALL_STATE(722)] = 37585, - [SMALL_STATE(723)] = 37627, - [SMALL_STATE(724)] = 37669, - [SMALL_STATE(725)] = 37711, - [SMALL_STATE(726)] = 37775, - [SMALL_STATE(727)] = 37817, - [SMALL_STATE(728)] = 37849, - [SMALL_STATE(729)] = 37913, - [SMALL_STATE(730)] = 37953, - [SMALL_STATE(731)] = 37985, - [SMALL_STATE(732)] = 38017, - [SMALL_STATE(733)] = 38049, - [SMALL_STATE(734)] = 38113, - [SMALL_STATE(735)] = 38153, - [SMALL_STATE(736)] = 38185, - [SMALL_STATE(737)] = 38249, - [SMALL_STATE(738)] = 38313, - [SMALL_STATE(739)] = 38377, - [SMALL_STATE(740)] = 38409, - [SMALL_STATE(741)] = 38473, - [SMALL_STATE(742)] = 38513, - [SMALL_STATE(743)] = 38577, - [SMALL_STATE(744)] = 38641, - [SMALL_STATE(745)] = 38705, - [SMALL_STATE(746)] = 38769, - [SMALL_STATE(747)] = 38801, - [SMALL_STATE(748)] = 38843, - [SMALL_STATE(749)] = 38907, - [SMALL_STATE(750)] = 38971, - [SMALL_STATE(751)] = 39013, - [SMALL_STATE(752)] = 39045, - [SMALL_STATE(753)] = 39109, - [SMALL_STATE(754)] = 39151, - [SMALL_STATE(755)] = 39217, - [SMALL_STATE(756)] = 39259, - [SMALL_STATE(757)] = 39323, - [SMALL_STATE(758)] = 39365, - [SMALL_STATE(759)] = 39431, - [SMALL_STATE(760)] = 39473, - [SMALL_STATE(761)] = 39537, - [SMALL_STATE(762)] = 39579, - [SMALL_STATE(763)] = 39645, - [SMALL_STATE(764)] = 39687, - [SMALL_STATE(765)] = 39719, - [SMALL_STATE(766)] = 39783, - [SMALL_STATE(767)] = 39825, - [SMALL_STATE(768)] = 39867, - [SMALL_STATE(769)] = 39899, - [SMALL_STATE(770)] = 39945, - [SMALL_STATE(771)] = 39991, - [SMALL_STATE(772)] = 40037, - [SMALL_STATE(773)] = 40069, - [SMALL_STATE(774)] = 40135, - [SMALL_STATE(775)] = 40201, - [SMALL_STATE(776)] = 40267, - [SMALL_STATE(777)] = 40333, - [SMALL_STATE(778)] = 40365, - [SMALL_STATE(779)] = 40431, - [SMALL_STATE(780)] = 40497, - [SMALL_STATE(781)] = 40563, - [SMALL_STATE(782)] = 40629, - [SMALL_STATE(783)] = 40695, - [SMALL_STATE(784)] = 40737, - [SMALL_STATE(785)] = 40803, - [SMALL_STATE(786)] = 40869, - [SMALL_STATE(787)] = 40935, - [SMALL_STATE(788)] = 41001, - [SMALL_STATE(789)] = 41067, - [SMALL_STATE(790)] = 41133, - [SMALL_STATE(791)] = 41199, - [SMALL_STATE(792)] = 41265, - [SMALL_STATE(793)] = 41331, - [SMALL_STATE(794)] = 41363, - [SMALL_STATE(795)] = 41429, - [SMALL_STATE(796)] = 41461, - [SMALL_STATE(797)] = 41493, - [SMALL_STATE(798)] = 41525, - [SMALL_STATE(799)] = 41567, - [SMALL_STATE(800)] = 41633, - [SMALL_STATE(801)] = 41665, - [SMALL_STATE(802)] = 41731, - [SMALL_STATE(803)] = 41763, - [SMALL_STATE(804)] = 41795, - [SMALL_STATE(805)] = 41827, - [SMALL_STATE(806)] = 41893, - [SMALL_STATE(807)] = 41925, - [SMALL_STATE(808)] = 41991, - [SMALL_STATE(809)] = 42057, - [SMALL_STATE(810)] = 42089, - [SMALL_STATE(811)] = 42131, - [SMALL_STATE(812)] = 42163, - [SMALL_STATE(813)] = 42229, - [SMALL_STATE(814)] = 42271, - [SMALL_STATE(815)] = 42303, - [SMALL_STATE(816)] = 42343, - [SMALL_STATE(817)] = 42383, - [SMALL_STATE(818)] = 42423, - [SMALL_STATE(819)] = 42463, - [SMALL_STATE(820)] = 42503, - [SMALL_STATE(821)] = 42543, - [SMALL_STATE(822)] = 42583, - [SMALL_STATE(823)] = 42623, - [SMALL_STATE(824)] = 42663, - [SMALL_STATE(825)] = 42703, - [SMALL_STATE(826)] = 42743, - [SMALL_STATE(827)] = 42783, - [SMALL_STATE(828)] = 42823, - [SMALL_STATE(829)] = 42854, - [SMALL_STATE(830)] = 42885, - [SMALL_STATE(831)] = 42950, - [SMALL_STATE(832)] = 43015, - [SMALL_STATE(833)] = 43080, - [SMALL_STATE(834)] = 43145, - [SMALL_STATE(835)] = 43210, - [SMALL_STATE(836)] = 43275, - [SMALL_STATE(837)] = 43340, - [SMALL_STATE(838)] = 43405, - [SMALL_STATE(839)] = 43470, - [SMALL_STATE(840)] = 43535, - [SMALL_STATE(841)] = 43600, - [SMALL_STATE(842)] = 43665, - [SMALL_STATE(843)] = 43730, - [SMALL_STATE(844)] = 43769, - [SMALL_STATE(845)] = 43834, - [SMALL_STATE(846)] = 43899, - [SMALL_STATE(847)] = 43962, - [SMALL_STATE(848)] = 44025, - [SMALL_STATE(849)] = 44088, - [SMALL_STATE(850)] = 44127, - [SMALL_STATE(851)] = 44190, - [SMALL_STATE(852)] = 44253, - [SMALL_STATE(853)] = 44316, - [SMALL_STATE(854)] = 44379, - [SMALL_STATE(855)] = 44442, - [SMALL_STATE(856)] = 44505, - [SMALL_STATE(857)] = 44544, - [SMALL_STATE(858)] = 44607, - [SMALL_STATE(859)] = 44672, - [SMALL_STATE(860)] = 44735, - [SMALL_STATE(861)] = 44774, - [SMALL_STATE(862)] = 44837, - [SMALL_STATE(863)] = 44876, - [SMALL_STATE(864)] = 44915, - [SMALL_STATE(865)] = 44954, - [SMALL_STATE(866)] = 45017, - [SMALL_STATE(867)] = 45082, - [SMALL_STATE(868)] = 45121, - [SMALL_STATE(869)] = 45160, - [SMALL_STATE(870)] = 45223, - [SMALL_STATE(871)] = 45288, - [SMALL_STATE(872)] = 45327, - [SMALL_STATE(873)] = 45366, - [SMALL_STATE(874)] = 45431, - [SMALL_STATE(875)] = 45470, - [SMALL_STATE(876)] = 45509, - [SMALL_STATE(877)] = 45548, - [SMALL_STATE(878)] = 45613, - [SMALL_STATE(879)] = 45678, - [SMALL_STATE(880)] = 45743, - [SMALL_STATE(881)] = 45810, - [SMALL_STATE(882)] = 45871, - [SMALL_STATE(883)] = 45932, - [SMALL_STATE(884)] = 45993, - [SMALL_STATE(885)] = 46054, - [SMALL_STATE(886)] = 46115, - [SMALL_STATE(887)] = 46176, - [SMALL_STATE(888)] = 46237, - [SMALL_STATE(889)] = 46298, - [SMALL_STATE(890)] = 46359, - [SMALL_STATE(891)] = 46424, - [SMALL_STATE(892)] = 46485, - [SMALL_STATE(893)] = 46546, - [SMALL_STATE(894)] = 46607, - [SMALL_STATE(895)] = 46672, - [SMALL_STATE(896)] = 46737, - [SMALL_STATE(897)] = 46804, - [SMALL_STATE(898)] = 46871, - [SMALL_STATE(899)] = 46936, - [SMALL_STATE(900)] = 46997, - [SMALL_STATE(901)] = 47058, - [SMALL_STATE(902)] = 47123, - [SMALL_STATE(903)] = 47188, - [SMALL_STATE(904)] = 47253, - [SMALL_STATE(905)] = 47318, - [SMALL_STATE(906)] = 47365, - [SMALL_STATE(907)] = 47430, - [SMALL_STATE(908)] = 47477, - [SMALL_STATE(909)] = 47524, - [SMALL_STATE(910)] = 47589, - [SMALL_STATE(911)] = 47654, - [SMALL_STATE(912)] = 47715, - [SMALL_STATE(913)] = 47776, - [SMALL_STATE(914)] = 47839, - [SMALL_STATE(915)] = 47904, - [SMALL_STATE(916)] = 47969, - [SMALL_STATE(917)] = 48030, - [SMALL_STATE(918)] = 48091, - [SMALL_STATE(919)] = 48152, - [SMALL_STATE(920)] = 48213, - [SMALL_STATE(921)] = 48274, - [SMALL_STATE(922)] = 48335, - [SMALL_STATE(923)] = 48378, - [SMALL_STATE(924)] = 48439, - [SMALL_STATE(925)] = 48502, - [SMALL_STATE(926)] = 48565, - [SMALL_STATE(927)] = 48608, - [SMALL_STATE(928)] = 48651, - [SMALL_STATE(929)] = 48712, - [SMALL_STATE(930)] = 48755, - [SMALL_STATE(931)] = 48798, - [SMALL_STATE(932)] = 48859, - [SMALL_STATE(933)] = 48902, - [SMALL_STATE(934)] = 48945, - [SMALL_STATE(935)] = 48988, - [SMALL_STATE(936)] = 49031, - [SMALL_STATE(937)] = 49092, - [SMALL_STATE(938)] = 49135, - [SMALL_STATE(939)] = 49198, - [SMALL_STATE(940)] = 49259, - [SMALL_STATE(941)] = 49320, - [SMALL_STATE(942)] = 49359, - [SMALL_STATE(943)] = 49398, - [SMALL_STATE(944)] = 49429, - [SMALL_STATE(945)] = 49468, - [SMALL_STATE(946)] = 49529, - [SMALL_STATE(947)] = 49594, - [SMALL_STATE(948)] = 49633, - [SMALL_STATE(949)] = 49696, - [SMALL_STATE(950)] = 49735, - [SMALL_STATE(951)] = 49774, - [SMALL_STATE(952)] = 49813, - [SMALL_STATE(953)] = 49852, - [SMALL_STATE(954)] = 49891, - [SMALL_STATE(955)] = 49930, - [SMALL_STATE(956)] = 49969, - [SMALL_STATE(957)] = 50032, - [SMALL_STATE(958)] = 50071, - [SMALL_STATE(959)] = 50134, - [SMALL_STATE(960)] = 50173, - [SMALL_STATE(961)] = 50238, - [SMALL_STATE(962)] = 50303, - [SMALL_STATE(963)] = 50368, - [SMALL_STATE(964)] = 50431, - [SMALL_STATE(965)] = 50470, - [SMALL_STATE(966)] = 50535, - [SMALL_STATE(967)] = 50600, - [SMALL_STATE(968)] = 50645, - [SMALL_STATE(969)] = 50708, - [SMALL_STATE(970)] = 50753, - [SMALL_STATE(971)] = 50798, - [SMALL_STATE(972)] = 50861, - [SMALL_STATE(973)] = 50926, - [SMALL_STATE(974)] = 50991, - [SMALL_STATE(975)] = 51054, - [SMALL_STATE(976)] = 51119, - [SMALL_STATE(977)] = 51184, - [SMALL_STATE(978)] = 51247, - [SMALL_STATE(979)] = 51312, - [SMALL_STATE(980)] = 51377, - [SMALL_STATE(981)] = 51440, - [SMALL_STATE(982)] = 51505, - [SMALL_STATE(983)] = 51536, - [SMALL_STATE(984)] = 51599, - [SMALL_STATE(985)] = 51642, - [SMALL_STATE(986)] = 51673, - [SMALL_STATE(987)] = 51736, - [SMALL_STATE(988)] = 51779, - [SMALL_STATE(989)] = 51810, - [SMALL_STATE(990)] = 51873, - [SMALL_STATE(991)] = 51916, - [SMALL_STATE(992)] = 51947, - [SMALL_STATE(993)] = 51978, - [SMALL_STATE(994)] = 52009, - [SMALL_STATE(995)] = 52040, - [SMALL_STATE(996)] = 52083, - [SMALL_STATE(997)] = 52126, - [SMALL_STATE(998)] = 52191, - [SMALL_STATE(999)] = 52256, - [SMALL_STATE(1000)] = 52299, - [SMALL_STATE(1001)] = 52364, - [SMALL_STATE(1002)] = 52395, - [SMALL_STATE(1003)] = 52438, - [SMALL_STATE(1004)] = 52469, - [SMALL_STATE(1005)] = 52512, - [SMALL_STATE(1006)] = 52555, - [SMALL_STATE(1007)] = 52617, - [SMALL_STATE(1008)] = 52659, - [SMALL_STATE(1009)] = 52721, - [SMALL_STATE(1010)] = 52767, - [SMALL_STATE(1011)] = 52829, - [SMALL_STATE(1012)] = 52875, - [SMALL_STATE(1013)] = 52937, - [SMALL_STATE(1014)] = 52999, - [SMALL_STATE(1015)] = 53063, - [SMALL_STATE(1016)] = 53127, - [SMALL_STATE(1017)] = 53191, - [SMALL_STATE(1018)] = 53253, - [SMALL_STATE(1019)] = 53315, - [SMALL_STATE(1020)] = 53377, - [SMALL_STATE(1021)] = 53441, - [SMALL_STATE(1022)] = 53505, - [SMALL_STATE(1023)] = 53569, - [SMALL_STATE(1024)] = 53633, - [SMALL_STATE(1025)] = 53697, - [SMALL_STATE(1026)] = 53761, - [SMALL_STATE(1027)] = 53807, - [SMALL_STATE(1028)] = 53871, - [SMALL_STATE(1029)] = 53935, - [SMALL_STATE(1030)] = 53981, - [SMALL_STATE(1031)] = 54027, - [SMALL_STATE(1032)] = 54073, - [SMALL_STATE(1033)] = 54119, - [SMALL_STATE(1034)] = 54181, - [SMALL_STATE(1035)] = 54247, - [SMALL_STATE(1036)] = 54309, - [SMALL_STATE(1037)] = 54375, - [SMALL_STATE(1038)] = 54441, - [SMALL_STATE(1039)] = 54503, - [SMALL_STATE(1040)] = 54565, - [SMALL_STATE(1041)] = 54629, - [SMALL_STATE(1042)] = 54673, - [SMALL_STATE(1043)] = 54737, - [SMALL_STATE(1044)] = 54799, - [SMALL_STATE(1045)] = 54863, - [SMALL_STATE(1046)] = 54905, - [SMALL_STATE(1047)] = 54947, - [SMALL_STATE(1048)] = 54989, - [SMALL_STATE(1049)] = 55031, - [SMALL_STATE(1050)] = 55073, - [SMALL_STATE(1051)] = 55119, - [SMALL_STATE(1052)] = 55161, - [SMALL_STATE(1053)] = 55203, - [SMALL_STATE(1054)] = 55245, - [SMALL_STATE(1055)] = 55289, - [SMALL_STATE(1056)] = 55331, - [SMALL_STATE(1057)] = 55373, - [SMALL_STATE(1058)] = 55437, - [SMALL_STATE(1059)] = 55499, - [SMALL_STATE(1060)] = 55545, - [SMALL_STATE(1061)] = 55589, - [SMALL_STATE(1062)] = 55633, - [SMALL_STATE(1063)] = 55677, - [SMALL_STATE(1064)] = 55739, - [SMALL_STATE(1065)] = 55801, - [SMALL_STATE(1066)] = 55847, - [SMALL_STATE(1067)] = 55891, - [SMALL_STATE(1068)] = 55937, - [SMALL_STATE(1069)] = 55981, - [SMALL_STATE(1070)] = 56027, - [SMALL_STATE(1071)] = 56071, - [SMALL_STATE(1072)] = 56133, - [SMALL_STATE(1073)] = 56175, - [SMALL_STATE(1074)] = 56217, - [SMALL_STATE(1075)] = 56259, - [SMALL_STATE(1076)] = 56321, - [SMALL_STATE(1077)] = 56363, - [SMALL_STATE(1078)] = 56425, - [SMALL_STATE(1079)] = 56467, - [SMALL_STATE(1080)] = 56531, - [SMALL_STATE(1081)] = 56573, - [SMALL_STATE(1082)] = 56615, - [SMALL_STATE(1083)] = 56657, - [SMALL_STATE(1084)] = 56721, - [SMALL_STATE(1085)] = 56765, - [SMALL_STATE(1086)] = 56829, - [SMALL_STATE(1087)] = 56888, - [SMALL_STATE(1088)] = 56947, - [SMALL_STATE(1089)] = 57006, - [SMALL_STATE(1090)] = 57065, - [SMALL_STATE(1091)] = 57124, - [SMALL_STATE(1092)] = 57183, - [SMALL_STATE(1093)] = 57242, - [SMALL_STATE(1094)] = 57303, - [SMALL_STATE(1095)] = 57362, - [SMALL_STATE(1096)] = 57421, - [SMALL_STATE(1097)] = 57480, - [SMALL_STATE(1098)] = 57539, - [SMALL_STATE(1099)] = 57598, - [SMALL_STATE(1100)] = 57657, - [SMALL_STATE(1101)] = 57716, - [SMALL_STATE(1102)] = 57775, - [SMALL_STATE(1103)] = 57834, - [SMALL_STATE(1104)] = 57893, - [SMALL_STATE(1105)] = 57952, - [SMALL_STATE(1106)] = 58011, - [SMALL_STATE(1107)] = 58070, - [SMALL_STATE(1108)] = 58129, - [SMALL_STATE(1109)] = 58188, - [SMALL_STATE(1110)] = 58247, - [SMALL_STATE(1111)] = 58306, - [SMALL_STATE(1112)] = 58365, - [SMALL_STATE(1113)] = 58424, - [SMALL_STATE(1114)] = 58483, - [SMALL_STATE(1115)] = 58526, - [SMALL_STATE(1116)] = 58569, - [SMALL_STATE(1117)] = 58610, - [SMALL_STATE(1118)] = 58653, - [SMALL_STATE(1119)] = 58712, - [SMALL_STATE(1120)] = 58753, - [SMALL_STATE(1121)] = 58796, - [SMALL_STATE(1122)] = 58855, - [SMALL_STATE(1123)] = 58914, - [SMALL_STATE(1124)] = 58973, - [SMALL_STATE(1125)] = 59032, - [SMALL_STATE(1126)] = 59091, - [SMALL_STATE(1127)] = 59150, - [SMALL_STATE(1128)] = 59193, - [SMALL_STATE(1129)] = 59252, - [SMALL_STATE(1130)] = 59311, - [SMALL_STATE(1131)] = 59370, - [SMALL_STATE(1132)] = 59429, - [SMALL_STATE(1133)] = 59488, - [SMALL_STATE(1134)] = 59547, - [SMALL_STATE(1135)] = 59606, - [SMALL_STATE(1136)] = 59665, - [SMALL_STATE(1137)] = 59724, - [SMALL_STATE(1138)] = 59783, - [SMALL_STATE(1139)] = 59842, - [SMALL_STATE(1140)] = 59885, - [SMALL_STATE(1141)] = 59944, - [SMALL_STATE(1142)] = 59985, - [SMALL_STATE(1143)] = 60028, - [SMALL_STATE(1144)] = 60087, - [SMALL_STATE(1145)] = 60146, - [SMALL_STATE(1146)] = 60189, - [SMALL_STATE(1147)] = 60248, - [SMALL_STATE(1148)] = 60289, - [SMALL_STATE(1149)] = 60348, - [SMALL_STATE(1150)] = 60411, - [SMALL_STATE(1151)] = 60470, - [SMALL_STATE(1152)] = 60513, - [SMALL_STATE(1153)] = 60572, - [SMALL_STATE(1154)] = 60631, - [SMALL_STATE(1155)] = 60690, - [SMALL_STATE(1156)] = 60753, - [SMALL_STATE(1157)] = 60812, - [SMALL_STATE(1158)] = 60871, - [SMALL_STATE(1159)] = 60930, - [SMALL_STATE(1160)] = 60989, - [SMALL_STATE(1161)] = 61048, - [SMALL_STATE(1162)] = 61107, - [SMALL_STATE(1163)] = 61148, - [SMALL_STATE(1164)] = 61191, - [SMALL_STATE(1165)] = 61232, - [SMALL_STATE(1166)] = 61273, - [SMALL_STATE(1167)] = 61332, - [SMALL_STATE(1168)] = 61391, - [SMALL_STATE(1169)] = 61450, - [SMALL_STATE(1170)] = 61491, - [SMALL_STATE(1171)] = 61550, - [SMALL_STATE(1172)] = 61609, - [SMALL_STATE(1173)] = 61668, - [SMALL_STATE(1174)] = 61727, - [SMALL_STATE(1175)] = 61786, - [SMALL_STATE(1176)] = 61845, - [SMALL_STATE(1177)] = 61908, - [SMALL_STATE(1178)] = 61967, - [SMALL_STATE(1179)] = 62030, - [SMALL_STATE(1180)] = 62089, - [SMALL_STATE(1181)] = 62148, - [SMALL_STATE(1182)] = 62207, - [SMALL_STATE(1183)] = 62266, - [SMALL_STATE(1184)] = 62325, - [SMALL_STATE(1185)] = 62366, - [SMALL_STATE(1186)] = 62425, - [SMALL_STATE(1187)] = 62484, - [SMALL_STATE(1188)] = 62543, - [SMALL_STATE(1189)] = 62602, - [SMALL_STATE(1190)] = 62661, - [SMALL_STATE(1191)] = 62720, - [SMALL_STATE(1192)] = 62779, - [SMALL_STATE(1193)] = 62838, - [SMALL_STATE(1194)] = 62897, - [SMALL_STATE(1195)] = 62960, - [SMALL_STATE(1196)] = 63023, - [SMALL_STATE(1197)] = 63064, - [SMALL_STATE(1198)] = 63123, - [SMALL_STATE(1199)] = 63182, - [SMALL_STATE(1200)] = 63241, - [SMALL_STATE(1201)] = 63300, - [SMALL_STATE(1202)] = 63359, - [SMALL_STATE(1203)] = 63418, - [SMALL_STATE(1204)] = 63477, - [SMALL_STATE(1205)] = 63536, - [SMALL_STATE(1206)] = 63595, - [SMALL_STATE(1207)] = 63654, - [SMALL_STATE(1208)] = 63713, - [SMALL_STATE(1209)] = 63756, - [SMALL_STATE(1210)] = 63799, - [SMALL_STATE(1211)] = 63858, - [SMALL_STATE(1212)] = 63917, - [SMALL_STATE(1213)] = 63960, - [SMALL_STATE(1214)] = 64019, - [SMALL_STATE(1215)] = 64078, - [SMALL_STATE(1216)] = 64137, - [SMALL_STATE(1217)] = 64200, - [SMALL_STATE(1218)] = 64259, - [SMALL_STATE(1219)] = 64318, - [SMALL_STATE(1220)] = 64377, - [SMALL_STATE(1221)] = 64420, - [SMALL_STATE(1222)] = 64483, - [SMALL_STATE(1223)] = 64542, - [SMALL_STATE(1224)] = 64585, - [SMALL_STATE(1225)] = 64644, - [SMALL_STATE(1226)] = 64687, - [SMALL_STATE(1227)] = 64730, - [SMALL_STATE(1228)] = 64789, - [SMALL_STATE(1229)] = 64850, - [SMALL_STATE(1230)] = 64893, - [SMALL_STATE(1231)] = 64952, - [SMALL_STATE(1232)] = 65011, - [SMALL_STATE(1233)] = 65054, - [SMALL_STATE(1234)] = 65115, - [SMALL_STATE(1235)] = 65174, - [SMALL_STATE(1236)] = 65233, - [SMALL_STATE(1237)] = 65292, - [SMALL_STATE(1238)] = 65351, - [SMALL_STATE(1239)] = 65410, - [SMALL_STATE(1240)] = 65469, - [SMALL_STATE(1241)] = 65528, - [SMALL_STATE(1242)] = 65587, - [SMALL_STATE(1243)] = 65648, - [SMALL_STATE(1244)] = 65707, - [SMALL_STATE(1245)] = 65766, - [SMALL_STATE(1246)] = 65827, - [SMALL_STATE(1247)] = 65886, - [SMALL_STATE(1248)] = 65945, - [SMALL_STATE(1249)] = 66004, - [SMALL_STATE(1250)] = 66063, - [SMALL_STATE(1251)] = 66124, - [SMALL_STATE(1252)] = 66183, - [SMALL_STATE(1253)] = 66242, - [SMALL_STATE(1254)] = 66285, - [SMALL_STATE(1255)] = 66328, - [SMALL_STATE(1256)] = 66387, - [SMALL_STATE(1257)] = 66430, - [SMALL_STATE(1258)] = 66489, - [SMALL_STATE(1259)] = 66532, - [SMALL_STATE(1260)] = 66575, - [SMALL_STATE(1261)] = 66634, - [SMALL_STATE(1262)] = 66695, - [SMALL_STATE(1263)] = 66756, - [SMALL_STATE(1264)] = 66815, - [SMALL_STATE(1265)] = 66858, - [SMALL_STATE(1266)] = 66917, - [SMALL_STATE(1267)] = 66976, - [SMALL_STATE(1268)] = 67035, - [SMALL_STATE(1269)] = 67094, - [SMALL_STATE(1270)] = 67153, - [SMALL_STATE(1271)] = 67212, - [SMALL_STATE(1272)] = 67271, - [SMALL_STATE(1273)] = 67334, - [SMALL_STATE(1274)] = 67393, - [SMALL_STATE(1275)] = 67452, - [SMALL_STATE(1276)] = 67511, - [SMALL_STATE(1277)] = 67570, - [SMALL_STATE(1278)] = 67629, - [SMALL_STATE(1279)] = 67688, - [SMALL_STATE(1280)] = 67747, - [SMALL_STATE(1281)] = 67806, - [SMALL_STATE(1282)] = 67865, - [SMALL_STATE(1283)] = 67908, - [SMALL_STATE(1284)] = 67967, - [SMALL_STATE(1285)] = 68026, - [SMALL_STATE(1286)] = 68085, - [SMALL_STATE(1287)] = 68128, - [SMALL_STATE(1288)] = 68187, - [SMALL_STATE(1289)] = 68248, - [SMALL_STATE(1290)] = 68307, - [SMALL_STATE(1291)] = 68366, - [SMALL_STATE(1292)] = 68409, - [SMALL_STATE(1293)] = 68468, - [SMALL_STATE(1294)] = 68527, - [SMALL_STATE(1295)] = 68588, - [SMALL_STATE(1296)] = 68631, - [SMALL_STATE(1297)] = 68690, - [SMALL_STATE(1298)] = 68749, - [SMALL_STATE(1299)] = 68808, - [SMALL_STATE(1300)] = 68867, - [SMALL_STATE(1301)] = 68928, - [SMALL_STATE(1302)] = 68989, - [SMALL_STATE(1303)] = 69048, - [SMALL_STATE(1304)] = 69107, - [SMALL_STATE(1305)] = 69166, - [SMALL_STATE(1306)] = 69225, - [SMALL_STATE(1307)] = 69284, - [SMALL_STATE(1308)] = 69343, - [SMALL_STATE(1309)] = 69402, - [SMALL_STATE(1310)] = 69461, - [SMALL_STATE(1311)] = 69520, - [SMALL_STATE(1312)] = 69579, - [SMALL_STATE(1313)] = 69638, - [SMALL_STATE(1314)] = 69697, - [SMALL_STATE(1315)] = 69756, - [SMALL_STATE(1316)] = 69815, - [SMALL_STATE(1317)] = 69874, - [SMALL_STATE(1318)] = 69917, - [SMALL_STATE(1319)] = 69976, - [SMALL_STATE(1320)] = 70035, - [SMALL_STATE(1321)] = 70094, - [SMALL_STATE(1322)] = 70153, - [SMALL_STATE(1323)] = 70212, - [SMALL_STATE(1324)] = 70271, - [SMALL_STATE(1325)] = 70330, - [SMALL_STATE(1326)] = 70389, - [SMALL_STATE(1327)] = 70448, - [SMALL_STATE(1328)] = 70507, - [SMALL_STATE(1329)] = 70566, - [SMALL_STATE(1330)] = 70625, - [SMALL_STATE(1331)] = 70684, - [SMALL_STATE(1332)] = 70743, - [SMALL_STATE(1333)] = 70802, - [SMALL_STATE(1334)] = 70861, - [SMALL_STATE(1335)] = 70920, - [SMALL_STATE(1336)] = 70979, - [SMALL_STATE(1337)] = 71038, - [SMALL_STATE(1338)] = 71097, - [SMALL_STATE(1339)] = 71156, - [SMALL_STATE(1340)] = 71215, - [SMALL_STATE(1341)] = 71274, - [SMALL_STATE(1342)] = 71333, - [SMALL_STATE(1343)] = 71392, - [SMALL_STATE(1344)] = 71451, - [SMALL_STATE(1345)] = 71510, - [SMALL_STATE(1346)] = 71569, - [SMALL_STATE(1347)] = 71628, - [SMALL_STATE(1348)] = 71687, - [SMALL_STATE(1349)] = 71746, - [SMALL_STATE(1350)] = 71805, - [SMALL_STATE(1351)] = 71864, - [SMALL_STATE(1352)] = 71923, - [SMALL_STATE(1353)] = 71982, - [SMALL_STATE(1354)] = 72041, - [SMALL_STATE(1355)] = 72100, - [SMALL_STATE(1356)] = 72159, - [SMALL_STATE(1357)] = 72218, - [SMALL_STATE(1358)] = 72277, - [SMALL_STATE(1359)] = 72336, - [SMALL_STATE(1360)] = 72395, - [SMALL_STATE(1361)] = 72454, - [SMALL_STATE(1362)] = 72513, - [SMALL_STATE(1363)] = 72572, - [SMALL_STATE(1364)] = 72631, - [SMALL_STATE(1365)] = 72690, - [SMALL_STATE(1366)] = 72749, - [SMALL_STATE(1367)] = 72808, - [SMALL_STATE(1368)] = 72867, - [SMALL_STATE(1369)] = 72926, - [SMALL_STATE(1370)] = 72985, - [SMALL_STATE(1371)] = 73044, - [SMALL_STATE(1372)] = 73103, - [SMALL_STATE(1373)] = 73162, - [SMALL_STATE(1374)] = 73221, - [SMALL_STATE(1375)] = 73280, - [SMALL_STATE(1376)] = 73339, - [SMALL_STATE(1377)] = 73398, - [SMALL_STATE(1378)] = 73457, - [SMALL_STATE(1379)] = 73516, - [SMALL_STATE(1380)] = 73575, - [SMALL_STATE(1381)] = 73634, - [SMALL_STATE(1382)] = 73693, - [SMALL_STATE(1383)] = 73752, - [SMALL_STATE(1384)] = 73811, - [SMALL_STATE(1385)] = 73870, - [SMALL_STATE(1386)] = 73929, - [SMALL_STATE(1387)] = 73988, - [SMALL_STATE(1388)] = 74047, - [SMALL_STATE(1389)] = 74106, - [SMALL_STATE(1390)] = 74165, - [SMALL_STATE(1391)] = 74224, - [SMALL_STATE(1392)] = 74283, - [SMALL_STATE(1393)] = 74342, - [SMALL_STATE(1394)] = 74401, - [SMALL_STATE(1395)] = 74460, - [SMALL_STATE(1396)] = 74519, - [SMALL_STATE(1397)] = 74578, - [SMALL_STATE(1398)] = 74637, - [SMALL_STATE(1399)] = 74696, - [SMALL_STATE(1400)] = 74755, - [SMALL_STATE(1401)] = 74814, - [SMALL_STATE(1402)] = 74873, - [SMALL_STATE(1403)] = 74932, - [SMALL_STATE(1404)] = 74991, - [SMALL_STATE(1405)] = 75050, - [SMALL_STATE(1406)] = 75109, - [SMALL_STATE(1407)] = 75168, - [SMALL_STATE(1408)] = 75227, - [SMALL_STATE(1409)] = 75286, - [SMALL_STATE(1410)] = 75345, - [SMALL_STATE(1411)] = 75404, - [SMALL_STATE(1412)] = 75463, - [SMALL_STATE(1413)] = 75522, - [SMALL_STATE(1414)] = 75581, - [SMALL_STATE(1415)] = 75640, - [SMALL_STATE(1416)] = 75699, - [SMALL_STATE(1417)] = 75758, - [SMALL_STATE(1418)] = 75817, - [SMALL_STATE(1419)] = 75876, - [SMALL_STATE(1420)] = 75935, - [SMALL_STATE(1421)] = 75994, - [SMALL_STATE(1422)] = 76053, - [SMALL_STATE(1423)] = 76112, - [SMALL_STATE(1424)] = 76171, - [SMALL_STATE(1425)] = 76230, - [SMALL_STATE(1426)] = 76289, - [SMALL_STATE(1427)] = 76348, - [SMALL_STATE(1428)] = 76407, - [SMALL_STATE(1429)] = 76466, - [SMALL_STATE(1430)] = 76525, - [SMALL_STATE(1431)] = 76584, - [SMALL_STATE(1432)] = 76643, - [SMALL_STATE(1433)] = 76702, - [SMALL_STATE(1434)] = 76761, - [SMALL_STATE(1435)] = 76820, - [SMALL_STATE(1436)] = 76879, - [SMALL_STATE(1437)] = 76938, - [SMALL_STATE(1438)] = 76997, - [SMALL_STATE(1439)] = 77056, - [SMALL_STATE(1440)] = 77099, - [SMALL_STATE(1441)] = 77158, - [SMALL_STATE(1442)] = 77217, - [SMALL_STATE(1443)] = 77276, - [SMALL_STATE(1444)] = 77335, - [SMALL_STATE(1445)] = 77394, - [SMALL_STATE(1446)] = 77453, - [SMALL_STATE(1447)] = 77512, - [SMALL_STATE(1448)] = 77571, - [SMALL_STATE(1449)] = 77630, - [SMALL_STATE(1450)] = 77689, - [SMALL_STATE(1451)] = 77748, - [SMALL_STATE(1452)] = 77807, - [SMALL_STATE(1453)] = 77866, - [SMALL_STATE(1454)] = 77925, - [SMALL_STATE(1455)] = 77984, - [SMALL_STATE(1456)] = 78027, - [SMALL_STATE(1457)] = 78086, - [SMALL_STATE(1458)] = 78145, - [SMALL_STATE(1459)] = 78204, - [SMALL_STATE(1460)] = 78263, - [SMALL_STATE(1461)] = 78322, - [SMALL_STATE(1462)] = 78381, - [SMALL_STATE(1463)] = 78440, - [SMALL_STATE(1464)] = 78499, - [SMALL_STATE(1465)] = 78558, - [SMALL_STATE(1466)] = 78617, - [SMALL_STATE(1467)] = 78676, - [SMALL_STATE(1468)] = 78735, - [SMALL_STATE(1469)] = 78794, - [SMALL_STATE(1470)] = 78855, - [SMALL_STATE(1471)] = 78914, - [SMALL_STATE(1472)] = 78975, - [SMALL_STATE(1473)] = 79034, - [SMALL_STATE(1474)] = 79093, - [SMALL_STATE(1475)] = 79152, - [SMALL_STATE(1476)] = 79211, - [SMALL_STATE(1477)] = 79270, - [SMALL_STATE(1478)] = 79331, - [SMALL_STATE(1479)] = 79390, - [SMALL_STATE(1480)] = 79449, - [SMALL_STATE(1481)] = 79508, - [SMALL_STATE(1482)] = 79569, - [SMALL_STATE(1483)] = 79630, - [SMALL_STATE(1484)] = 79689, - [SMALL_STATE(1485)] = 79750, - [SMALL_STATE(1486)] = 79809, - [SMALL_STATE(1487)] = 79868, - [SMALL_STATE(1488)] = 79927, - [SMALL_STATE(1489)] = 79986, - [SMALL_STATE(1490)] = 80045, - [SMALL_STATE(1491)] = 80104, - [SMALL_STATE(1492)] = 80163, - [SMALL_STATE(1493)] = 80222, - [SMALL_STATE(1494)] = 80281, - [SMALL_STATE(1495)] = 80340, - [SMALL_STATE(1496)] = 80399, - [SMALL_STATE(1497)] = 80460, - [SMALL_STATE(1498)] = 80521, - [SMALL_STATE(1499)] = 80580, - [SMALL_STATE(1500)] = 80639, - [SMALL_STATE(1501)] = 80698, - [SMALL_STATE(1502)] = 80757, - [SMALL_STATE(1503)] = 80816, - [SMALL_STATE(1504)] = 80859, - [SMALL_STATE(1505)] = 80918, - [SMALL_STATE(1506)] = 80979, - [SMALL_STATE(1507)] = 81040, - [SMALL_STATE(1508)] = 81099, - [SMALL_STATE(1509)] = 81158, - [SMALL_STATE(1510)] = 81217, - [SMALL_STATE(1511)] = 81260, - [SMALL_STATE(1512)] = 81319, - [SMALL_STATE(1513)] = 81380, - [SMALL_STATE(1514)] = 81441, - [SMALL_STATE(1515)] = 81500, - [SMALL_STATE(1516)] = 81559, - [SMALL_STATE(1517)] = 81618, - [SMALL_STATE(1518)] = 81679, - [SMALL_STATE(1519)] = 81738, - [SMALL_STATE(1520)] = 81797, - [SMALL_STATE(1521)] = 81856, - [SMALL_STATE(1522)] = 81917, - [SMALL_STATE(1523)] = 81976, - [SMALL_STATE(1524)] = 82035, - [SMALL_STATE(1525)] = 82094, - [SMALL_STATE(1526)] = 82153, - [SMALL_STATE(1527)] = 82214, - [SMALL_STATE(1528)] = 82273, + [SMALL_STATE(3)] = 54, + [SMALL_STATE(4)] = 108, + [SMALL_STATE(5)] = 162, + [SMALL_STATE(6)] = 216, + [SMALL_STATE(7)] = 270, + [SMALL_STATE(8)] = 324, + [SMALL_STATE(9)] = 378, + [SMALL_STATE(10)] = 448, + [SMALL_STATE(11)] = 502, + [SMALL_STATE(12)] = 572, + [SMALL_STATE(13)] = 642, + [SMALL_STATE(14)] = 720, + [SMALL_STATE(15)] = 790, + [SMALL_STATE(16)] = 860, + [SMALL_STATE(17)] = 930, + [SMALL_STATE(18)] = 1000, + [SMALL_STATE(19)] = 1070, + [SMALL_STATE(20)] = 1123, + [SMALL_STATE(21)] = 1200, + [SMALL_STATE(22)] = 1269, + [SMALL_STATE(23)] = 1322, + [SMALL_STATE(24)] = 1391, + [SMALL_STATE(25)] = 1460, + [SMALL_STATE(26)] = 1529, + [SMALL_STATE(27)] = 1598, + [SMALL_STATE(28)] = 1667, + [SMALL_STATE(29)] = 1720, + [SMALL_STATE(30)] = 1789, + [SMALL_STATE(31)] = 1842, + [SMALL_STATE(32)] = 1911, + [SMALL_STATE(33)] = 1980, + [SMALL_STATE(34)] = 2049, + [SMALL_STATE(35)] = 2118, + [SMALL_STATE(36)] = 2187, + [SMALL_STATE(37)] = 2256, + [SMALL_STATE(38)] = 2325, + [SMALL_STATE(39)] = 2378, + [SMALL_STATE(40)] = 2431, + [SMALL_STATE(41)] = 2484, + [SMALL_STATE(42)] = 2537, + [SMALL_STATE(43)] = 2590, + [SMALL_STATE(44)] = 2643, + [SMALL_STATE(45)] = 2712, + [SMALL_STATE(46)] = 2765, + [SMALL_STATE(47)] = 2818, + [SMALL_STATE(48)] = 2887, + [SMALL_STATE(49)] = 2940, + [SMALL_STATE(50)] = 3017, + [SMALL_STATE(51)] = 3070, + [SMALL_STATE(52)] = 3123, + [SMALL_STATE(53)] = 3176, + [SMALL_STATE(54)] = 3244, + [SMALL_STATE(55)] = 3320, + [SMALL_STATE(56)] = 3372, + [SMALL_STATE(57)] = 3424, + [SMALL_STATE(58)] = 3476, + [SMALL_STATE(59)] = 3544, + [SMALL_STATE(60)] = 3612, + [SMALL_STATE(61)] = 3680, + [SMALL_STATE(62)] = 3748, + [SMALL_STATE(63)] = 3816, + [SMALL_STATE(64)] = 3884, + [SMALL_STATE(65)] = 3952, + [SMALL_STATE(66)] = 4020, + [SMALL_STATE(67)] = 4072, + [SMALL_STATE(68)] = 4148, + [SMALL_STATE(69)] = 4200, + [SMALL_STATE(70)] = 4252, + [SMALL_STATE(71)] = 4304, + [SMALL_STATE(72)] = 4372, + [SMALL_STATE(73)] = 4448, + [SMALL_STATE(74)] = 4516, + [SMALL_STATE(75)] = 4584, + [SMALL_STATE(76)] = 4660, + [SMALL_STATE(77)] = 4728, + [SMALL_STATE(78)] = 4780, + [SMALL_STATE(79)] = 4848, + [SMALL_STATE(80)] = 4916, + [SMALL_STATE(81)] = 4984, + [SMALL_STATE(82)] = 5052, + [SMALL_STATE(83)] = 5120, + [SMALL_STATE(84)] = 5188, + [SMALL_STATE(85)] = 5256, + [SMALL_STATE(86)] = 5324, + [SMALL_STATE(87)] = 5376, + [SMALL_STATE(88)] = 5428, + [SMALL_STATE(89)] = 5480, + [SMALL_STATE(90)] = 5548, + [SMALL_STATE(91)] = 5600, + [SMALL_STATE(92)] = 5652, + [SMALL_STATE(93)] = 5704, + [SMALL_STATE(94)] = 5772, + [SMALL_STATE(95)] = 5824, + [SMALL_STATE(96)] = 5892, + [SMALL_STATE(97)] = 5944, + [SMALL_STATE(98)] = 6012, + [SMALL_STATE(99)] = 6064, + [SMALL_STATE(100)] = 6116, + [SMALL_STATE(101)] = 6168, + [SMALL_STATE(102)] = 6220, + [SMALL_STATE(103)] = 6288, + [SMALL_STATE(104)] = 6340, + [SMALL_STATE(105)] = 6392, + [SMALL_STATE(106)] = 6444, + [SMALL_STATE(107)] = 6496, + [SMALL_STATE(108)] = 6548, + [SMALL_STATE(109)] = 6600, + [SMALL_STATE(110)] = 6652, + [SMALL_STATE(111)] = 6704, + [SMALL_STATE(112)] = 6756, + [SMALL_STATE(113)] = 6824, + [SMALL_STATE(114)] = 6892, + [SMALL_STATE(115)] = 6960, + [SMALL_STATE(116)] = 7028, + [SMALL_STATE(117)] = 7096, + [SMALL_STATE(118)] = 7148, + [SMALL_STATE(119)] = 7200, + [SMALL_STATE(120)] = 7268, + [SMALL_STATE(121)] = 7320, + [SMALL_STATE(122)] = 7371, + [SMALL_STATE(123)] = 7422, + [SMALL_STATE(124)] = 7489, + [SMALL_STATE(125)] = 7540, + [SMALL_STATE(126)] = 7607, + [SMALL_STATE(127)] = 7658, + [SMALL_STATE(128)] = 7709, + [SMALL_STATE(129)] = 7776, + [SMALL_STATE(130)] = 7843, + [SMALL_STATE(131)] = 7910, + [SMALL_STATE(132)] = 7977, + [SMALL_STATE(133)] = 8028, + [SMALL_STATE(134)] = 8095, + [SMALL_STATE(135)] = 8146, + [SMALL_STATE(136)] = 8213, + [SMALL_STATE(137)] = 8264, + [SMALL_STATE(138)] = 8331, + [SMALL_STATE(139)] = 8398, + [SMALL_STATE(140)] = 8449, + [SMALL_STATE(141)] = 8500, + [SMALL_STATE(142)] = 8567, + [SMALL_STATE(143)] = 8618, + [SMALL_STATE(144)] = 8669, + [SMALL_STATE(145)] = 8744, + [SMALL_STATE(146)] = 8795, + [SMALL_STATE(147)] = 8862, + [SMALL_STATE(148)] = 8929, + [SMALL_STATE(149)] = 8996, + [SMALL_STATE(150)] = 9063, + [SMALL_STATE(151)] = 9138, + [SMALL_STATE(152)] = 9213, + [SMALL_STATE(153)] = 9264, + [SMALL_STATE(154)] = 9315, + [SMALL_STATE(155)] = 9366, + [SMALL_STATE(156)] = 9433, + [SMALL_STATE(157)] = 9484, + [SMALL_STATE(158)] = 9535, + [SMALL_STATE(159)] = 9586, + [SMALL_STATE(160)] = 9637, + [SMALL_STATE(161)] = 9688, + [SMALL_STATE(162)] = 9739, + [SMALL_STATE(163)] = 9806, + [SMALL_STATE(164)] = 9873, + [SMALL_STATE(165)] = 9924, + [SMALL_STATE(166)] = 9991, + [SMALL_STATE(167)] = 10058, + [SMALL_STATE(168)] = 10125, + [SMALL_STATE(169)] = 10192, + [SMALL_STATE(170)] = 10259, + [SMALL_STATE(171)] = 10326, + [SMALL_STATE(172)] = 10377, + [SMALL_STATE(173)] = 10443, + [SMALL_STATE(174)] = 10509, + [SMALL_STATE(175)] = 10575, + [SMALL_STATE(176)] = 10641, + [SMALL_STATE(177)] = 10707, + [SMALL_STATE(178)] = 10773, + [SMALL_STATE(179)] = 10839, + [SMALL_STATE(180)] = 10905, + [SMALL_STATE(181)] = 10970, + [SMALL_STATE(182)] = 11035, + [SMALL_STATE(183)] = 11100, + [SMALL_STATE(184)] = 11165, + [SMALL_STATE(185)] = 11230, + [SMALL_STATE(186)] = 11295, + [SMALL_STATE(187)] = 11360, + [SMALL_STATE(188)] = 11425, + [SMALL_STATE(189)] = 11487, + [SMALL_STATE(190)] = 11549, + [SMALL_STATE(191)] = 11595, + [SMALL_STATE(192)] = 11665, + [SMALL_STATE(193)] = 11727, + [SMALL_STATE(194)] = 11789, + [SMALL_STATE(195)] = 11851, + [SMALL_STATE(196)] = 11913, + [SMALL_STATE(197)] = 11959, + [SMALL_STATE(198)] = 12021, + [SMALL_STATE(199)] = 12067, + [SMALL_STATE(200)] = 12113, + [SMALL_STATE(201)] = 12159, + [SMALL_STATE(202)] = 12205, + [SMALL_STATE(203)] = 12251, + [SMALL_STATE(204)] = 12297, + [SMALL_STATE(205)] = 12367, + [SMALL_STATE(206)] = 12429, + [SMALL_STATE(207)] = 12491, + [SMALL_STATE(208)] = 12553, + [SMALL_STATE(209)] = 12599, + [SMALL_STATE(210)] = 12661, + [SMALL_STATE(211)] = 12723, + [SMALL_STATE(212)] = 12785, + [SMALL_STATE(213)] = 12847, + [SMALL_STATE(214)] = 12909, + [SMALL_STATE(215)] = 12971, + [SMALL_STATE(216)] = 13017, + [SMALL_STATE(217)] = 13063, + [SMALL_STATE(218)] = 13125, + [SMALL_STATE(219)] = 13171, + [SMALL_STATE(220)] = 13217, + [SMALL_STATE(221)] = 13263, + [SMALL_STATE(222)] = 13309, + [SMALL_STATE(223)] = 13371, + [SMALL_STATE(224)] = 13417, + [SMALL_STATE(225)] = 13463, + [SMALL_STATE(226)] = 13533, + [SMALL_STATE(227)] = 13579, + [SMALL_STATE(228)] = 13625, + [SMALL_STATE(229)] = 13687, + [SMALL_STATE(230)] = 13733, + [SMALL_STATE(231)] = 13779, + [SMALL_STATE(232)] = 13825, + [SMALL_STATE(233)] = 13871, + [SMALL_STATE(234)] = 13933, + [SMALL_STATE(235)] = 13995, + [SMALL_STATE(236)] = 14041, + [SMALL_STATE(237)] = 14103, + [SMALL_STATE(238)] = 14165, + [SMALL_STATE(239)] = 14227, + [SMALL_STATE(240)] = 14272, + [SMALL_STATE(241)] = 14317, + [SMALL_STATE(242)] = 14378, + [SMALL_STATE(243)] = 14439, + [SMALL_STATE(244)] = 14484, + [SMALL_STATE(245)] = 14545, + [SMALL_STATE(246)] = 14590, + [SMALL_STATE(247)] = 14651, + [SMALL_STATE(248)] = 14712, + [SMALL_STATE(249)] = 14757, + [SMALL_STATE(250)] = 14802, + [SMALL_STATE(251)] = 14863, + [SMALL_STATE(252)] = 14924, + [SMALL_STATE(253)] = 14985, + [SMALL_STATE(254)] = 15046, + [SMALL_STATE(255)] = 15091, + [SMALL_STATE(256)] = 15160, + [SMALL_STATE(257)] = 15205, + [SMALL_STATE(258)] = 15250, + [SMALL_STATE(259)] = 15319, + [SMALL_STATE(260)] = 15380, + [SMALL_STATE(261)] = 15441, + [SMALL_STATE(262)] = 15502, + [SMALL_STATE(263)] = 15547, + [SMALL_STATE(264)] = 15608, + [SMALL_STATE(265)] = 15669, + [SMALL_STATE(266)] = 15730, + [SMALL_STATE(267)] = 15775, + [SMALL_STATE(268)] = 15836, + [SMALL_STATE(269)] = 15897, + [SMALL_STATE(270)] = 15966, + [SMALL_STATE(271)] = 16011, + [SMALL_STATE(272)] = 16056, + [SMALL_STATE(273)] = 16101, + [SMALL_STATE(274)] = 16146, + [SMALL_STATE(275)] = 16191, + [SMALL_STATE(276)] = 16236, + [SMALL_STATE(277)] = 16297, + [SMALL_STATE(278)] = 16342, + [SMALL_STATE(279)] = 16387, + [SMALL_STATE(280)] = 16432, + [SMALL_STATE(281)] = 16477, + [SMALL_STATE(282)] = 16538, + [SMALL_STATE(283)] = 16599, + [SMALL_STATE(284)] = 16660, + [SMALL_STATE(285)] = 16705, + [SMALL_STATE(286)] = 16750, + [SMALL_STATE(287)] = 16795, + [SMALL_STATE(288)] = 16840, + [SMALL_STATE(289)] = 16885, + [SMALL_STATE(290)] = 16946, + [SMALL_STATE(291)] = 17007, + [SMALL_STATE(292)] = 17052, + [SMALL_STATE(293)] = 17113, + [SMALL_STATE(294)] = 17174, + [SMALL_STATE(295)] = 17235, + [SMALL_STATE(296)] = 17296, + [SMALL_STATE(297)] = 17341, + [SMALL_STATE(298)] = 17386, + [SMALL_STATE(299)] = 17431, + [SMALL_STATE(300)] = 17476, + [SMALL_STATE(301)] = 17521, + [SMALL_STATE(302)] = 17590, + [SMALL_STATE(303)] = 17651, + [SMALL_STATE(304)] = 17712, + [SMALL_STATE(305)] = 17773, + [SMALL_STATE(306)] = 17834, + [SMALL_STATE(307)] = 17895, + [SMALL_STATE(308)] = 17955, + [SMALL_STATE(309)] = 18005, + [SMALL_STATE(310)] = 18049, + [SMALL_STATE(311)] = 18093, + [SMALL_STATE(312)] = 18137, + [SMALL_STATE(313)] = 18181, + [SMALL_STATE(314)] = 18225, + [SMALL_STATE(315)] = 18269, + [SMALL_STATE(316)] = 18313, + [SMALL_STATE(317)] = 18351, + [SMALL_STATE(318)] = 18395, + [SMALL_STATE(319)] = 18463, + [SMALL_STATE(320)] = 18501, + [SMALL_STATE(321)] = 18561, + [SMALL_STATE(322)] = 18621, + [SMALL_STATE(323)] = 18669, + [SMALL_STATE(324)] = 18729, + [SMALL_STATE(325)] = 18789, + [SMALL_STATE(326)] = 18849, + [SMALL_STATE(327)] = 18887, + [SMALL_STATE(328)] = 18925, + [SMALL_STATE(329)] = 18963, + [SMALL_STATE(330)] = 19001, + [SMALL_STATE(331)] = 19039, + [SMALL_STATE(332)] = 19077, + [SMALL_STATE(333)] = 19115, + [SMALL_STATE(334)] = 19153, + [SMALL_STATE(335)] = 19191, + [SMALL_STATE(336)] = 19229, + [SMALL_STATE(337)] = 19267, + [SMALL_STATE(338)] = 19305, + [SMALL_STATE(339)] = 19343, + [SMALL_STATE(340)] = 19381, + [SMALL_STATE(341)] = 19441, + [SMALL_STATE(342)] = 19479, + [SMALL_STATE(343)] = 19539, + [SMALL_STATE(344)] = 19577, + [SMALL_STATE(345)] = 19615, + [SMALL_STATE(346)] = 19652, + [SMALL_STATE(347)] = 19723, + [SMALL_STATE(348)] = 19760, + [SMALL_STATE(349)] = 19797, + [SMALL_STATE(350)] = 19834, + [SMALL_STATE(351)] = 19871, + [SMALL_STATE(352)] = 19908, + [SMALL_STATE(353)] = 19945, + [SMALL_STATE(354)] = 19982, + [SMALL_STATE(355)] = 20029, + [SMALL_STATE(356)] = 20066, + [SMALL_STATE(357)] = 20103, + [SMALL_STATE(358)] = 20150, + [SMALL_STATE(359)] = 20195, + [SMALL_STATE(360)] = 20232, + [SMALL_STATE(361)] = 20269, + [SMALL_STATE(362)] = 20306, + [SMALL_STATE(363)] = 20353, + [SMALL_STATE(364)] = 20390, + [SMALL_STATE(365)] = 20427, + [SMALL_STATE(366)] = 20500, + [SMALL_STATE(367)] = 20537, + [SMALL_STATE(368)] = 20574, + [SMALL_STATE(369)] = 20621, + [SMALL_STATE(370)] = 20658, + [SMALL_STATE(371)] = 20695, + [SMALL_STATE(372)] = 20740, + [SMALL_STATE(373)] = 20785, + [SMALL_STATE(374)] = 20822, + [SMALL_STATE(375)] = 20859, + [SMALL_STATE(376)] = 20896, + [SMALL_STATE(377)] = 20945, + [SMALL_STATE(378)] = 20982, + [SMALL_STATE(379)] = 21027, + [SMALL_STATE(380)] = 21102, + [SMALL_STATE(381)] = 21147, + [SMALL_STATE(382)] = 21184, + [SMALL_STATE(383)] = 21221, + [SMALL_STATE(384)] = 21258, + [SMALL_STATE(385)] = 21295, + [SMALL_STATE(386)] = 21332, + [SMALL_STATE(387)] = 21377, + [SMALL_STATE(388)] = 21414, + [SMALL_STATE(389)] = 21451, + [SMALL_STATE(390)] = 21496, + [SMALL_STATE(391)] = 21533, + [SMALL_STATE(392)] = 21578, + [SMALL_STATE(393)] = 21615, + [SMALL_STATE(394)] = 21662, + [SMALL_STATE(395)] = 21699, + [SMALL_STATE(396)] = 21744, + [SMALL_STATE(397)] = 21781, + [SMALL_STATE(398)] = 21828, + [SMALL_STATE(399)] = 21865, + [SMALL_STATE(400)] = 21940, + [SMALL_STATE(401)] = 21985, + [SMALL_STATE(402)] = 22022, + [SMALL_STATE(403)] = 22069, + [SMALL_STATE(404)] = 22114, + [SMALL_STATE(405)] = 22159, + [SMALL_STATE(406)] = 22196, + [SMALL_STATE(407)] = 22241, + [SMALL_STATE(408)] = 22288, + [SMALL_STATE(409)] = 22325, + [SMALL_STATE(410)] = 22370, + [SMALL_STATE(411)] = 22406, + [SMALL_STATE(412)] = 22442, + [SMALL_STATE(413)] = 22478, + [SMALL_STATE(414)] = 22514, + [SMALL_STATE(415)] = 22550, + [SMALL_STATE(416)] = 22594, + [SMALL_STATE(417)] = 22630, + [SMALL_STATE(418)] = 22666, + [SMALL_STATE(419)] = 22738, + [SMALL_STATE(420)] = 22782, + [SMALL_STATE(421)] = 22826, + [SMALL_STATE(422)] = 22898, + [SMALL_STATE(423)] = 22934, + [SMALL_STATE(424)] = 22980, + [SMALL_STATE(425)] = 23028, + [SMALL_STATE(426)] = 23100, + [SMALL_STATE(427)] = 23146, + [SMALL_STATE(428)] = 23190, + [SMALL_STATE(429)] = 23226, + [SMALL_STATE(430)] = 23270, + [SMALL_STATE(431)] = 23318, + [SMALL_STATE(432)] = 23354, + [SMALL_STATE(433)] = 23390, + [SMALL_STATE(434)] = 23462, + [SMALL_STATE(435)] = 23498, + [SMALL_STATE(436)] = 23542, + [SMALL_STATE(437)] = 23578, + [SMALL_STATE(438)] = 23614, + [SMALL_STATE(439)] = 23660, + [SMALL_STATE(440)] = 23696, + [SMALL_STATE(441)] = 23732, + [SMALL_STATE(442)] = 23804, + [SMALL_STATE(443)] = 23840, + [SMALL_STATE(444)] = 23914, + [SMALL_STATE(445)] = 23950, + [SMALL_STATE(446)] = 23986, + [SMALL_STATE(447)] = 24030, + [SMALL_STATE(448)] = 24066, + [SMALL_STATE(449)] = 24102, + [SMALL_STATE(450)] = 24138, + [SMALL_STATE(451)] = 24210, + [SMALL_STATE(452)] = 24254, + [SMALL_STATE(453)] = 24300, + [SMALL_STATE(454)] = 24336, + [SMALL_STATE(455)] = 24372, + [SMALL_STATE(456)] = 24408, + [SMALL_STATE(457)] = 24444, + [SMALL_STATE(458)] = 24480, + [SMALL_STATE(459)] = 24516, + [SMALL_STATE(460)] = 24562, + [SMALL_STATE(461)] = 24598, + [SMALL_STATE(462)] = 24634, + [SMALL_STATE(463)] = 24670, + [SMALL_STATE(464)] = 24706, + [SMALL_STATE(465)] = 24742, + [SMALL_STATE(466)] = 24814, + [SMALL_STATE(467)] = 24886, + [SMALL_STATE(468)] = 24922, + [SMALL_STATE(469)] = 24958, + [SMALL_STATE(470)] = 24994, + [SMALL_STATE(471)] = 25030, + [SMALL_STATE(472)] = 25074, + [SMALL_STATE(473)] = 25110, + [SMALL_STATE(474)] = 25146, + [SMALL_STATE(475)] = 25182, + [SMALL_STATE(476)] = 25254, + [SMALL_STATE(477)] = 25290, + [SMALL_STATE(478)] = 25360, + [SMALL_STATE(479)] = 25396, + [SMALL_STATE(480)] = 25432, + [SMALL_STATE(481)] = 25478, + [SMALL_STATE(482)] = 25514, + [SMALL_STATE(483)] = 25550, + [SMALL_STATE(484)] = 25586, + [SMALL_STATE(485)] = 25632, + [SMALL_STATE(486)] = 25668, + [SMALL_STATE(487)] = 25742, + [SMALL_STATE(488)] = 25814, + [SMALL_STATE(489)] = 25858, + [SMALL_STATE(490)] = 25894, + [SMALL_STATE(491)] = 25964, + [SMALL_STATE(492)] = 26000, + [SMALL_STATE(493)] = 26070, + [SMALL_STATE(494)] = 26106, + [SMALL_STATE(495)] = 26142, + [SMALL_STATE(496)] = 26212, + [SMALL_STATE(497)] = 26284, + [SMALL_STATE(498)] = 26320, + [SMALL_STATE(499)] = 26356, + [SMALL_STATE(500)] = 26426, + [SMALL_STATE(501)] = 26462, + [SMALL_STATE(502)] = 26498, + [SMALL_STATE(503)] = 26542, + [SMALL_STATE(504)] = 26588, + [SMALL_STATE(505)] = 26658, + [SMALL_STATE(506)] = 26694, + [SMALL_STATE(507)] = 26730, + [SMALL_STATE(508)] = 26776, + [SMALL_STATE(509)] = 26812, + [SMALL_STATE(510)] = 26856, + [SMALL_STATE(511)] = 26926, + [SMALL_STATE(512)] = 26962, + [SMALL_STATE(513)] = 27034, + [SMALL_STATE(514)] = 27070, + [SMALL_STATE(515)] = 27106, + [SMALL_STATE(516)] = 27178, + [SMALL_STATE(517)] = 27248, + [SMALL_STATE(518)] = 27294, + [SMALL_STATE(519)] = 27330, + [SMALL_STATE(520)] = 27366, + [SMALL_STATE(521)] = 27402, + [SMALL_STATE(522)] = 27438, + [SMALL_STATE(523)] = 27474, + [SMALL_STATE(524)] = 27510, + [SMALL_STATE(525)] = 27546, + [SMALL_STATE(526)] = 27582, + [SMALL_STATE(527)] = 27618, + [SMALL_STATE(528)] = 27662, + [SMALL_STATE(529)] = 27706, + [SMALL_STATE(530)] = 27742, + [SMALL_STATE(531)] = 27778, + [SMALL_STATE(532)] = 27848, + [SMALL_STATE(533)] = 27892, + [SMALL_STATE(534)] = 27966, + [SMALL_STATE(535)] = 28038, + [SMALL_STATE(536)] = 28074, + [SMALL_STATE(537)] = 28118, + [SMALL_STATE(538)] = 28162, + [SMALL_STATE(539)] = 28206, + [SMALL_STATE(540)] = 28242, + [SMALL_STATE(541)] = 28286, + [SMALL_STATE(542)] = 28330, + [SMALL_STATE(543)] = 28378, + [SMALL_STATE(544)] = 28414, + [SMALL_STATE(545)] = 28458, + [SMALL_STATE(546)] = 28494, + [SMALL_STATE(547)] = 28565, + [SMALL_STATE(548)] = 28610, + [SMALL_STATE(549)] = 28653, + [SMALL_STATE(550)] = 28722, + [SMALL_STATE(551)] = 28793, + [SMALL_STATE(552)] = 28836, + [SMALL_STATE(553)] = 28871, + [SMALL_STATE(554)] = 28906, + [SMALL_STATE(555)] = 28941, + [SMALL_STATE(556)] = 28984, + [SMALL_STATE(557)] = 29019, + [SMALL_STATE(558)] = 29054, + [SMALL_STATE(559)] = 29089, + [SMALL_STATE(560)] = 29132, + [SMALL_STATE(561)] = 29167, + [SMALL_STATE(562)] = 29202, + [SMALL_STATE(563)] = 29237, + [SMALL_STATE(564)] = 29272, + [SMALL_STATE(565)] = 29343, + [SMALL_STATE(566)] = 29378, + [SMALL_STATE(567)] = 29413, + [SMALL_STATE(568)] = 29448, + [SMALL_STATE(569)] = 29483, + [SMALL_STATE(570)] = 29526, + [SMALL_STATE(571)] = 29595, + [SMALL_STATE(572)] = 29630, + [SMALL_STATE(573)] = 29665, + [SMALL_STATE(574)] = 29700, + [SMALL_STATE(575)] = 29771, + [SMALL_STATE(576)] = 29806, + [SMALL_STATE(577)] = 29841, + [SMALL_STATE(578)] = 29876, + [SMALL_STATE(579)] = 29919, + [SMALL_STATE(580)] = 29990, + [SMALL_STATE(581)] = 30033, + [SMALL_STATE(582)] = 30106, + [SMALL_STATE(583)] = 30141, + [SMALL_STATE(584)] = 30176, + [SMALL_STATE(585)] = 30247, + [SMALL_STATE(586)] = 30282, + [SMALL_STATE(587)] = 30327, + [SMALL_STATE(588)] = 30362, + [SMALL_STATE(589)] = 30433, + [SMALL_STATE(590)] = 30478, + [SMALL_STATE(591)] = 30513, + [SMALL_STATE(592)] = 30548, + [SMALL_STATE(593)] = 30619, + [SMALL_STATE(594)] = 30662, + [SMALL_STATE(595)] = 30731, + [SMALL_STATE(596)] = 30766, + [SMALL_STATE(597)] = 30811, + [SMALL_STATE(598)] = 30878, + [SMALL_STATE(599)] = 30913, + [SMALL_STATE(600)] = 30948, + [SMALL_STATE(601)] = 30983, + [SMALL_STATE(602)] = 31028, + [SMALL_STATE(603)] = 31095, + [SMALL_STATE(604)] = 31162, + [SMALL_STATE(605)] = 31197, + [SMALL_STATE(606)] = 31264, + [SMALL_STATE(607)] = 31299, + [SMALL_STATE(608)] = 31344, + [SMALL_STATE(609)] = 31411, + [SMALL_STATE(610)] = 31446, + [SMALL_STATE(611)] = 31481, + [SMALL_STATE(612)] = 31548, + [SMALL_STATE(613)] = 31619, + [SMALL_STATE(614)] = 31654, + [SMALL_STATE(615)] = 31723, + [SMALL_STATE(616)] = 31790, + [SMALL_STATE(617)] = 31861, + [SMALL_STATE(618)] = 31932, + [SMALL_STATE(619)] = 31977, + [SMALL_STATE(620)] = 32012, + [SMALL_STATE(621)] = 32047, + [SMALL_STATE(622)] = 32082, + [SMALL_STATE(623)] = 32127, + [SMALL_STATE(624)] = 32162, + [SMALL_STATE(625)] = 32205, + [SMALL_STATE(626)] = 32248, + [SMALL_STATE(627)] = 32291, + [SMALL_STATE(628)] = 32360, + [SMALL_STATE(629)] = 32403, + [SMALL_STATE(630)] = 32446, + [SMALL_STATE(631)] = 32489, + [SMALL_STATE(632)] = 32560, + [SMALL_STATE(633)] = 32603, + [SMALL_STATE(634)] = 32674, + [SMALL_STATE(635)] = 32743, + [SMALL_STATE(636)] = 32786, + [SMALL_STATE(637)] = 32829, + [SMALL_STATE(638)] = 32872, + [SMALL_STATE(639)] = 32943, + [SMALL_STATE(640)] = 32986, + [SMALL_STATE(641)] = 33055, + [SMALL_STATE(642)] = 33098, + [SMALL_STATE(643)] = 33141, + [SMALL_STATE(644)] = 33212, + [SMALL_STATE(645)] = 33255, + [SMALL_STATE(646)] = 33326, + [SMALL_STATE(647)] = 33373, + [SMALL_STATE(648)] = 33408, + [SMALL_STATE(649)] = 33479, + [SMALL_STATE(650)] = 33550, + [SMALL_STATE(651)] = 33621, + [SMALL_STATE(652)] = 33692, + [SMALL_STATE(653)] = 33761, + [SMALL_STATE(654)] = 33796, + [SMALL_STATE(655)] = 33867, + [SMALL_STATE(656)] = 33936, + [SMALL_STATE(657)] = 34007, + [SMALL_STATE(658)] = 34042, + [SMALL_STATE(659)] = 34113, + [SMALL_STATE(660)] = 34148, + [SMALL_STATE(661)] = 34191, + [SMALL_STATE(662)] = 34260, + [SMALL_STATE(663)] = 34305, + [SMALL_STATE(664)] = 34350, + [SMALL_STATE(665)] = 34385, + [SMALL_STATE(666)] = 34420, + [SMALL_STATE(667)] = 34465, + [SMALL_STATE(668)] = 34500, + [SMALL_STATE(669)] = 34543, + [SMALL_STATE(670)] = 34578, + [SMALL_STATE(671)] = 34621, + [SMALL_STATE(672)] = 34690, + [SMALL_STATE(673)] = 34733, + [SMALL_STATE(674)] = 34776, + [SMALL_STATE(675)] = 34845, + [SMALL_STATE(676)] = 34890, + [SMALL_STATE(677)] = 34925, + [SMALL_STATE(678)] = 34960, + [SMALL_STATE(679)] = 35003, + [SMALL_STATE(680)] = 35038, + [SMALL_STATE(681)] = 35081, + [SMALL_STATE(682)] = 35126, + [SMALL_STATE(683)] = 35169, + [SMALL_STATE(684)] = 35204, + [SMALL_STATE(685)] = 35247, + [SMALL_STATE(686)] = 35316, + [SMALL_STATE(687)] = 35359, + [SMALL_STATE(688)] = 35402, + [SMALL_STATE(689)] = 35437, + [SMALL_STATE(690)] = 35506, + [SMALL_STATE(691)] = 35575, + [SMALL_STATE(692)] = 35618, + [SMALL_STATE(693)] = 35661, + [SMALL_STATE(694)] = 35696, + [SMALL_STATE(695)] = 35765, + [SMALL_STATE(696)] = 35810, + [SMALL_STATE(697)] = 35855, + [SMALL_STATE(698)] = 35900, + [SMALL_STATE(699)] = 35945, + [SMALL_STATE(700)] = 35980, + [SMALL_STATE(701)] = 36025, + [SMALL_STATE(702)] = 36060, + [SMALL_STATE(703)] = 36105, + [SMALL_STATE(704)] = 36150, + [SMALL_STATE(705)] = 36219, + [SMALL_STATE(706)] = 36262, + [SMALL_STATE(707)] = 36307, + [SMALL_STATE(708)] = 36350, + [SMALL_STATE(709)] = 36393, + [SMALL_STATE(710)] = 36462, + [SMALL_STATE(711)] = 36505, + [SMALL_STATE(712)] = 36548, + [SMALL_STATE(713)] = 36591, + [SMALL_STATE(714)] = 36634, + [SMALL_STATE(715)] = 36677, + [SMALL_STATE(716)] = 36720, + [SMALL_STATE(717)] = 36755, + [SMALL_STATE(718)] = 36798, + [SMALL_STATE(719)] = 36841, + [SMALL_STATE(720)] = 36884, + [SMALL_STATE(721)] = 36927, + [SMALL_STATE(722)] = 36970, + [SMALL_STATE(723)] = 37015, + [SMALL_STATE(724)] = 37050, + [SMALL_STATE(725)] = 37092, + [SMALL_STATE(726)] = 37160, + [SMALL_STATE(727)] = 37228, + [SMALL_STATE(728)] = 37296, + [SMALL_STATE(729)] = 37364, + [SMALL_STATE(730)] = 37406, + [SMALL_STATE(731)] = 37474, + [SMALL_STATE(732)] = 37542, + [SMALL_STATE(733)] = 37610, + [SMALL_STATE(734)] = 37652, + [SMALL_STATE(735)] = 37720, + [SMALL_STATE(736)] = 37788, + [SMALL_STATE(737)] = 37856, + [SMALL_STATE(738)] = 37924, + [SMALL_STATE(739)] = 37992, + [SMALL_STATE(740)] = 38034, + [SMALL_STATE(741)] = 38102, + [SMALL_STATE(742)] = 38172, + [SMALL_STATE(743)] = 38240, + [SMALL_STATE(744)] = 38282, + [SMALL_STATE(745)] = 38324, + [SMALL_STATE(746)] = 38394, + [SMALL_STATE(747)] = 38436, + [SMALL_STATE(748)] = 38504, + [SMALL_STATE(749)] = 38546, + [SMALL_STATE(750)] = 38588, + [SMALL_STATE(751)] = 38658, + [SMALL_STATE(752)] = 38700, + [SMALL_STATE(753)] = 38768, + [SMALL_STATE(754)] = 38836, + [SMALL_STATE(755)] = 38878, + [SMALL_STATE(756)] = 38920, + [SMALL_STATE(757)] = 38988, + [SMALL_STATE(758)] = 39030, + [SMALL_STATE(759)] = 39100, + [SMALL_STATE(760)] = 39142, + [SMALL_STATE(761)] = 39210, + [SMALL_STATE(762)] = 39252, + [SMALL_STATE(763)] = 39294, + [SMALL_STATE(764)] = 39336, + [SMALL_STATE(765)] = 39406, + [SMALL_STATE(766)] = 39474, + [SMALL_STATE(767)] = 39544, + [SMALL_STATE(768)] = 39612, + [SMALL_STATE(769)] = 39654, + [SMALL_STATE(770)] = 39724, + [SMALL_STATE(771)] = 39766, + [SMALL_STATE(772)] = 39834, + [SMALL_STATE(773)] = 39876, + [SMALL_STATE(774)] = 39944, + [SMALL_STATE(775)] = 40012, + [SMALL_STATE(776)] = 40054, + [SMALL_STATE(777)] = 40096, + [SMALL_STATE(778)] = 40138, + [SMALL_STATE(779)] = 40182, + [SMALL_STATE(780)] = 40224, + [SMALL_STATE(781)] = 40268, + [SMALL_STATE(782)] = 40312, + [SMALL_STATE(783)] = 40380, + [SMALL_STATE(784)] = 40424, + [SMALL_STATE(785)] = 40492, + [SMALL_STATE(786)] = 40534, + [SMALL_STATE(787)] = 40576, + [SMALL_STATE(788)] = 40644, + [SMALL_STATE(789)] = 40686, + [SMALL_STATE(790)] = 40730, + [SMALL_STATE(791)] = 40772, + [SMALL_STATE(792)] = 40840, + [SMALL_STATE(793)] = 40884, + [SMALL_STATE(794)] = 40926, + [SMALL_STATE(795)] = 40994, + [SMALL_STATE(796)] = 41036, + [SMALL_STATE(797)] = 41104, + [SMALL_STATE(798)] = 41146, + [SMALL_STATE(799)] = 41188, + [SMALL_STATE(800)] = 41256, + [SMALL_STATE(801)] = 41298, + [SMALL_STATE(802)] = 41366, + [SMALL_STATE(803)] = 41434, + [SMALL_STATE(804)] = 41502, + [SMALL_STATE(805)] = 41544, + [SMALL_STATE(806)] = 41612, + [SMALL_STATE(807)] = 41680, + [SMALL_STATE(808)] = 41748, + [SMALL_STATE(809)] = 41790, + [SMALL_STATE(810)] = 41858, + [SMALL_STATE(811)] = 41902, + [SMALL_STATE(812)] = 41970, + [SMALL_STATE(813)] = 42035, + [SMALL_STATE(814)] = 42102, + [SMALL_STATE(815)] = 42169, + [SMALL_STATE(816)] = 42236, + [SMALL_STATE(817)] = 42305, + [SMALL_STATE(818)] = 42372, + [SMALL_STATE(819)] = 42439, + [SMALL_STATE(820)] = 42506, + [SMALL_STATE(821)] = 42573, + [SMALL_STATE(822)] = 42640, + [SMALL_STATE(823)] = 42687, + [SMALL_STATE(824)] = 42754, + [SMALL_STATE(825)] = 42801, + [SMALL_STATE(826)] = 42848, + [SMALL_STATE(827)] = 42915, + [SMALL_STATE(828)] = 42982, + [SMALL_STATE(829)] = 43049, + [SMALL_STATE(830)] = 43116, + [SMALL_STATE(831)] = 43181, + [SMALL_STATE(832)] = 43246, + [SMALL_STATE(833)] = 43311, + [SMALL_STATE(834)] = 43378, + [SMALL_STATE(835)] = 43445, + [SMALL_STATE(836)] = 43512, + [SMALL_STATE(837)] = 43579, + [SMALL_STATE(838)] = 43646, + [SMALL_STATE(839)] = 43715, + [SMALL_STATE(840)] = 43782, + [SMALL_STATE(841)] = 43849, + [SMALL_STATE(842)] = 43916, + [SMALL_STATE(843)] = 43979, + [SMALL_STATE(844)] = 44048, + [SMALL_STATE(845)] = 44115, + [SMALL_STATE(846)] = 44178, + [SMALL_STATE(847)] = 44243, + [SMALL_STATE(848)] = 44306, + [SMALL_STATE(849)] = 44373, + [SMALL_STATE(850)] = 44414, + [SMALL_STATE(851)] = 44481, + [SMALL_STATE(852)] = 44520, + [SMALL_STATE(853)] = 44587, + [SMALL_STATE(854)] = 44628, + [SMALL_STATE(855)] = 44695, + [SMALL_STATE(856)] = 44762, + [SMALL_STATE(857)] = 44829, + [SMALL_STATE(858)] = 44896, + [SMALL_STATE(859)] = 44961, + [SMALL_STATE(860)] = 45028, + [SMALL_STATE(861)] = 45091, + [SMALL_STATE(862)] = 45158, + [SMALL_STATE(863)] = 45199, + [SMALL_STATE(864)] = 45266, + [SMALL_STATE(865)] = 45335, + [SMALL_STATE(866)] = 45374, + [SMALL_STATE(867)] = 45443, + [SMALL_STATE(868)] = 45510, + [SMALL_STATE(869)] = 45549, + [SMALL_STATE(870)] = 45614, + [SMALL_STATE(871)] = 45655, + [SMALL_STATE(872)] = 45722, + [SMALL_STATE(873)] = 45785, + [SMALL_STATE(874)] = 45826, + [SMALL_STATE(875)] = 45889, + [SMALL_STATE(876)] = 45952, + [SMALL_STATE(877)] = 46019, + [SMALL_STATE(878)] = 46060, + [SMALL_STATE(879)] = 46127, + [SMALL_STATE(880)] = 46194, + [SMALL_STATE(881)] = 46261, + [SMALL_STATE(882)] = 46328, + [SMALL_STATE(883)] = 46395, + [SMALL_STATE(884)] = 46460, + [SMALL_STATE(885)] = 46527, + [SMALL_STATE(886)] = 46594, + [SMALL_STATE(887)] = 46635, + [SMALL_STATE(888)] = 46702, + [SMALL_STATE(889)] = 46769, + [SMALL_STATE(890)] = 46808, + [SMALL_STATE(891)] = 46875, + [SMALL_STATE(892)] = 46942, + [SMALL_STATE(893)] = 47009, + [SMALL_STATE(894)] = 47048, + [SMALL_STATE(895)] = 47117, + [SMALL_STATE(896)] = 47180, + [SMALL_STATE(897)] = 47245, + [SMALL_STATE(898)] = 47312, + [SMALL_STATE(899)] = 47375, + [SMALL_STATE(900)] = 47442, + [SMALL_STATE(901)] = 47481, + [SMALL_STATE(902)] = 47548, + [SMALL_STATE(903)] = 47615, + [SMALL_STATE(904)] = 47682, + [SMALL_STATE(905)] = 47749, + [SMALL_STATE(906)] = 47816, + [SMALL_STATE(907)] = 47883, + [SMALL_STATE(908)] = 47950, + [SMALL_STATE(909)] = 48017, + [SMALL_STATE(910)] = 48082, + [SMALL_STATE(911)] = 48149, + [SMALL_STATE(912)] = 48216, + [SMALL_STATE(913)] = 48283, + [SMALL_STATE(914)] = 48350, + [SMALL_STATE(915)] = 48417, + [SMALL_STATE(916)] = 48484, + [SMALL_STATE(917)] = 48551, + [SMALL_STATE(918)] = 48616, + [SMALL_STATE(919)] = 48683, + [SMALL_STATE(920)] = 48750, + [SMALL_STATE(921)] = 48817, + [SMALL_STATE(922)] = 48884, + [SMALL_STATE(923)] = 48949, + [SMALL_STATE(924)] = 49018, + [SMALL_STATE(925)] = 49083, + [SMALL_STATE(926)] = 49150, + [SMALL_STATE(927)] = 49189, + [SMALL_STATE(928)] = 49254, + [SMALL_STATE(929)] = 49293, + [SMALL_STATE(930)] = 49360, + [SMALL_STATE(931)] = 49427, + [SMALL_STATE(932)] = 49494, + [SMALL_STATE(933)] = 49561, + [SMALL_STATE(934)] = 49623, + [SMALL_STATE(935)] = 49685, + [SMALL_STATE(936)] = 49747, + [SMALL_STATE(937)] = 49785, + [SMALL_STATE(938)] = 49847, + [SMALL_STATE(939)] = 49913, + [SMALL_STATE(940)] = 49975, + [SMALL_STATE(941)] = 50041, + [SMALL_STATE(942)] = 50103, + [SMALL_STATE(943)] = 50141, + [SMALL_STATE(944)] = 50203, + [SMALL_STATE(945)] = 50269, + [SMALL_STATE(946)] = 50331, + [SMALL_STATE(947)] = 50369, + [SMALL_STATE(948)] = 50431, + [SMALL_STATE(949)] = 50497, + [SMALL_STATE(950)] = 50559, + [SMALL_STATE(951)] = 50621, + [SMALL_STATE(952)] = 50687, + [SMALL_STATE(953)] = 50753, + [SMALL_STATE(954)] = 50791, + [SMALL_STATE(955)] = 50829, + [SMALL_STATE(956)] = 50867, + [SMALL_STATE(957)] = 50905, + [SMALL_STATE(958)] = 50943, + [SMALL_STATE(959)] = 50981, + [SMALL_STATE(960)] = 51019, + [SMALL_STATE(961)] = 51057, + [SMALL_STATE(962)] = 51119, + [SMALL_STATE(963)] = 51181, + [SMALL_STATE(964)] = 51243, + [SMALL_STATE(965)] = 51309, + [SMALL_STATE(966)] = 51347, + [SMALL_STATE(967)] = 51385, + [SMALL_STATE(968)] = 51451, + [SMALL_STATE(969)] = 51489, + [SMALL_STATE(970)] = 51551, + [SMALL_STATE(971)] = 51589, + [SMALL_STATE(972)] = 51627, + [SMALL_STATE(973)] = 51665, + [SMALL_STATE(974)] = 51703, + [SMALL_STATE(975)] = 51769, + [SMALL_STATE(976)] = 51831, + [SMALL_STATE(977)] = 51893, + [SMALL_STATE(978)] = 51955, + [SMALL_STATE(979)] = 52017, + [SMALL_STATE(980)] = 52079, + [SMALL_STATE(981)] = 52141, + [SMALL_STATE(982)] = 52203, + [SMALL_STATE(983)] = 52247, + [SMALL_STATE(984)] = 52291, + [SMALL_STATE(985)] = 52353, + [SMALL_STATE(986)] = 52415, + [SMALL_STATE(987)] = 52453, + [SMALL_STATE(988)] = 52515, + [SMALL_STATE(989)] = 52577, + [SMALL_STATE(990)] = 52615, + [SMALL_STATE(991)] = 52653, + [SMALL_STATE(992)] = 52715, + [SMALL_STATE(993)] = 52781, + [SMALL_STATE(994)] = 52843, + [SMALL_STATE(995)] = 52905, + [SMALL_STATE(996)] = 52971, + [SMALL_STATE(997)] = 53015, + [SMALL_STATE(998)] = 53077, + [SMALL_STATE(999)] = 53115, + [SMALL_STATE(1000)] = 53181, + [SMALL_STATE(1001)] = 53243, + [SMALL_STATE(1002)] = 53309, + [SMALL_STATE(1003)] = 53371, + [SMALL_STATE(1004)] = 53409, + [SMALL_STATE(1005)] = 53447, + [SMALL_STATE(1006)] = 53485, + [SMALL_STATE(1007)] = 53547, + [SMALL_STATE(1008)] = 53611, + [SMALL_STATE(1009)] = 53673, + [SMALL_STATE(1010)] = 53735, + [SMALL_STATE(1011)] = 53779, + [SMALL_STATE(1012)] = 53823, + [SMALL_STATE(1013)] = 53861, + [SMALL_STATE(1014)] = 53899, + [SMALL_STATE(1015)] = 53937, + [SMALL_STATE(1016)] = 53999, + [SMALL_STATE(1017)] = 54061, + [SMALL_STATE(1018)] = 54105, + [SMALL_STATE(1019)] = 54149, + [SMALL_STATE(1020)] = 54211, + [SMALL_STATE(1021)] = 54277, + [SMALL_STATE(1022)] = 54339, + [SMALL_STATE(1023)] = 54383, + [SMALL_STATE(1024)] = 54427, + [SMALL_STATE(1025)] = 54465, + [SMALL_STATE(1026)] = 54509, + [SMALL_STATE(1027)] = 54547, + [SMALL_STATE(1028)] = 54609, + [SMALL_STATE(1029)] = 54675, + [SMALL_STATE(1030)] = 54713, + [SMALL_STATE(1031)] = 54775, + [SMALL_STATE(1032)] = 54837, + [SMALL_STATE(1033)] = 54881, + [SMALL_STATE(1034)] = 54943, + [SMALL_STATE(1035)] = 54981, + [SMALL_STATE(1036)] = 55025, + [SMALL_STATE(1037)] = 55063, + [SMALL_STATE(1038)] = 55107, + [SMALL_STATE(1039)] = 55145, + [SMALL_STATE(1040)] = 55207, + [SMALL_STATE(1041)] = 55273, + [SMALL_STATE(1042)] = 55335, + [SMALL_STATE(1043)] = 55373, + [SMALL_STATE(1044)] = 55439, + [SMALL_STATE(1045)] = 55477, + [SMALL_STATE(1046)] = 55515, + [SMALL_STATE(1047)] = 55581, + [SMALL_STATE(1048)] = 55625, + [SMALL_STATE(1049)] = 55663, + [SMALL_STATE(1050)] = 55707, + [SMALL_STATE(1051)] = 55751, + [SMALL_STATE(1052)] = 55817, + [SMALL_STATE(1053)] = 55879, + [SMALL_STATE(1054)] = 55917, + [SMALL_STATE(1055)] = 55955, + [SMALL_STATE(1056)] = 55993, + [SMALL_STATE(1057)] = 56031, + [SMALL_STATE(1058)] = 56075, + [SMALL_STATE(1059)] = 56113, + [SMALL_STATE(1060)] = 56175, + [SMALL_STATE(1061)] = 56241, + [SMALL_STATE(1062)] = 56303, + [SMALL_STATE(1063)] = 56365, + [SMALL_STATE(1064)] = 56409, + [SMALL_STATE(1065)] = 56447, + [SMALL_STATE(1066)] = 56485, + [SMALL_STATE(1067)] = 56551, + [SMALL_STATE(1068)] = 56589, + [SMALL_STATE(1069)] = 56651, + [SMALL_STATE(1070)] = 56695, + [SMALL_STATE(1071)] = 56733, + [SMALL_STATE(1072)] = 56795, + [SMALL_STATE(1073)] = 56833, + [SMALL_STATE(1074)] = 56895, + [SMALL_STATE(1075)] = 56957, + [SMALL_STATE(1076)] = 57023, + [SMALL_STATE(1077)] = 57085, + [SMALL_STATE(1078)] = 57122, + [SMALL_STATE(1079)] = 57185, + [SMALL_STATE(1080)] = 57248, + [SMALL_STATE(1081)] = 57311, + [SMALL_STATE(1082)] = 57374, + [SMALL_STATE(1083)] = 57435, + [SMALL_STATE(1084)] = 57498, + [SMALL_STATE(1085)] = 57535, + [SMALL_STATE(1086)] = 57598, + [SMALL_STATE(1087)] = 57635, + [SMALL_STATE(1088)] = 57698, + [SMALL_STATE(1089)] = 57761, + [SMALL_STATE(1090)] = 57822, + [SMALL_STATE(1091)] = 57883, + [SMALL_STATE(1092)] = 57946, + [SMALL_STATE(1093)] = 58007, + [SMALL_STATE(1094)] = 58068, + [SMALL_STATE(1095)] = 58131, + [SMALL_STATE(1096)] = 58192, + [SMALL_STATE(1097)] = 58229, + [SMALL_STATE(1098)] = 58266, + [SMALL_STATE(1099)] = 58329, + [SMALL_STATE(1100)] = 58390, + [SMALL_STATE(1101)] = 58427, + [SMALL_STATE(1102)] = 58488, + [SMALL_STATE(1103)] = 58549, + [SMALL_STATE(1104)] = 58610, + [SMALL_STATE(1105)] = 58671, + [SMALL_STATE(1106)] = 58734, + [SMALL_STATE(1107)] = 58795, + [SMALL_STATE(1108)] = 58856, + [SMALL_STATE(1109)] = 58893, + [SMALL_STATE(1110)] = 58930, + [SMALL_STATE(1111)] = 58993, + [SMALL_STATE(1112)] = 59054, + [SMALL_STATE(1113)] = 59117, + [SMALL_STATE(1114)] = 59178, + [SMALL_STATE(1115)] = 59239, + [SMALL_STATE(1116)] = 59300, + [SMALL_STATE(1117)] = 59363, + [SMALL_STATE(1118)] = 59426, + [SMALL_STATE(1119)] = 59489, + [SMALL_STATE(1120)] = 59552, + [SMALL_STATE(1121)] = 59615, + [SMALL_STATE(1122)] = 59678, + [SMALL_STATE(1123)] = 59741, + [SMALL_STATE(1124)] = 59804, + [SMALL_STATE(1125)] = 59867, + [SMALL_STATE(1126)] = 59930, + [SMALL_STATE(1127)] = 59993, + [SMALL_STATE(1128)] = 60056, + [SMALL_STATE(1129)] = 60119, + [SMALL_STATE(1130)] = 60182, + [SMALL_STATE(1131)] = 60245, + [SMALL_STATE(1132)] = 60308, + [SMALL_STATE(1133)] = 60371, + [SMALL_STATE(1134)] = 60434, + [SMALL_STATE(1135)] = 60497, + [SMALL_STATE(1136)] = 60560, + [SMALL_STATE(1137)] = 60623, + [SMALL_STATE(1138)] = 60686, + [SMALL_STATE(1139)] = 60749, + [SMALL_STATE(1140)] = 60812, + [SMALL_STATE(1141)] = 60879, + [SMALL_STATE(1142)] = 60942, + [SMALL_STATE(1143)] = 61009, + [SMALL_STATE(1144)] = 61076, + [SMALL_STATE(1145)] = 61139, + [SMALL_STATE(1146)] = 61202, + [SMALL_STATE(1147)] = 61239, + [SMALL_STATE(1148)] = 61276, + [SMALL_STATE(1149)] = 61313, + [SMALL_STATE(1150)] = 61350, + [SMALL_STATE(1151)] = 61387, + [SMALL_STATE(1152)] = 61424, + [SMALL_STATE(1153)] = 61461, + [SMALL_STATE(1154)] = 61498, + [SMALL_STATE(1155)] = 61561, + [SMALL_STATE(1156)] = 61624, + [SMALL_STATE(1157)] = 61687, + [SMALL_STATE(1158)] = 61750, + [SMALL_STATE(1159)] = 61813, + [SMALL_STATE(1160)] = 61876, + [SMALL_STATE(1161)] = 61939, + [SMALL_STATE(1162)] = 62002, + [SMALL_STATE(1163)] = 62065, + [SMALL_STATE(1164)] = 62128, + [SMALL_STATE(1165)] = 62191, + [SMALL_STATE(1166)] = 62254, + [SMALL_STATE(1167)] = 62317, + [SMALL_STATE(1168)] = 62380, + [SMALL_STATE(1169)] = 62443, + [SMALL_STATE(1170)] = 62506, + [SMALL_STATE(1171)] = 62569, + [SMALL_STATE(1172)] = 62632, + [SMALL_STATE(1173)] = 62699, + [SMALL_STATE(1174)] = 62766, + [SMALL_STATE(1175)] = 62829, + [SMALL_STATE(1176)] = 62892, + [SMALL_STATE(1177)] = 62955, + [SMALL_STATE(1178)] = 63018, + [SMALL_STATE(1179)] = 63079, + [SMALL_STATE(1180)] = 63146, + [SMALL_STATE(1181)] = 63209, + [SMALL_STATE(1182)] = 63272, + [SMALL_STATE(1183)] = 63335, + [SMALL_STATE(1184)] = 63398, + [SMALL_STATE(1185)] = 63461, + [SMALL_STATE(1186)] = 63524, + [SMALL_STATE(1187)] = 63587, + [SMALL_STATE(1188)] = 63650, + [SMALL_STATE(1189)] = 63713, + [SMALL_STATE(1190)] = 63776, + [SMALL_STATE(1191)] = 63839, + [SMALL_STATE(1192)] = 63902, + [SMALL_STATE(1193)] = 63965, + [SMALL_STATE(1194)] = 64028, + [SMALL_STATE(1195)] = 64091, + [SMALL_STATE(1196)] = 64154, + [SMALL_STATE(1197)] = 64217, + [SMALL_STATE(1198)] = 64280, + [SMALL_STATE(1199)] = 64343, + [SMALL_STATE(1200)] = 64404, + [SMALL_STATE(1201)] = 64467, + [SMALL_STATE(1202)] = 64530, + [SMALL_STATE(1203)] = 64593, + [SMALL_STATE(1204)] = 64656, + [SMALL_STATE(1205)] = 64719, + [SMALL_STATE(1206)] = 64782, + [SMALL_STATE(1207)] = 64845, + [SMALL_STATE(1208)] = 64892, + [SMALL_STATE(1209)] = 64939, + [SMALL_STATE(1210)] = 64986, + [SMALL_STATE(1211)] = 65049, + [SMALL_STATE(1212)] = 65112, + [SMALL_STATE(1213)] = 65175, + [SMALL_STATE(1214)] = 65238, + [SMALL_STATE(1215)] = 65301, + [SMALL_STATE(1216)] = 65364, + [SMALL_STATE(1217)] = 65427, + [SMALL_STATE(1218)] = 65494, + [SMALL_STATE(1219)] = 65561, + [SMALL_STATE(1220)] = 65628, + [SMALL_STATE(1221)] = 65691, + [SMALL_STATE(1222)] = 65754, + [SMALL_STATE(1223)] = 65817, + [SMALL_STATE(1224)] = 65880, + [SMALL_STATE(1225)] = 65943, + [SMALL_STATE(1226)] = 66006, + [SMALL_STATE(1227)] = 66069, + [SMALL_STATE(1228)] = 66132, + [SMALL_STATE(1229)] = 66195, + [SMALL_STATE(1230)] = 66258, + [SMALL_STATE(1231)] = 66321, + [SMALL_STATE(1232)] = 66368, + [SMALL_STATE(1233)] = 66429, + [SMALL_STATE(1234)] = 66476, + [SMALL_STATE(1235)] = 66537, + [SMALL_STATE(1236)] = 66600, + [SMALL_STATE(1237)] = 66647, + [SMALL_STATE(1238)] = 66708, + [SMALL_STATE(1239)] = 66769, + [SMALL_STATE(1240)] = 66830, + [SMALL_STATE(1241)] = 66891, + [SMALL_STATE(1242)] = 66952, + [SMALL_STATE(1243)] = 67015, + [SMALL_STATE(1244)] = 67078, + [SMALL_STATE(1245)] = 67139, + [SMALL_STATE(1246)] = 67200, + [SMALL_STATE(1247)] = 67261, + [SMALL_STATE(1248)] = 67322, + [SMALL_STATE(1249)] = 67385, + [SMALL_STATE(1250)] = 67446, + [SMALL_STATE(1251)] = 67509, + [SMALL_STATE(1252)] = 67570, + [SMALL_STATE(1253)] = 67633, + [SMALL_STATE(1254)] = 67696, + [SMALL_STATE(1255)] = 67759, + [SMALL_STATE(1256)] = 67822, + [SMALL_STATE(1257)] = 67885, + [SMALL_STATE(1258)] = 67948, + [SMALL_STATE(1259)] = 68011, + [SMALL_STATE(1260)] = 68074, + [SMALL_STATE(1261)] = 68137, + [SMALL_STATE(1262)] = 68200, + [SMALL_STATE(1263)] = 68263, + [SMALL_STATE(1264)] = 68326, + [SMALL_STATE(1265)] = 68389, + [SMALL_STATE(1266)] = 68452, + [SMALL_STATE(1267)] = 68515, + [SMALL_STATE(1268)] = 68578, + [SMALL_STATE(1269)] = 68641, + [SMALL_STATE(1270)] = 68704, + [SMALL_STATE(1271)] = 68767, + [SMALL_STATE(1272)] = 68830, + [SMALL_STATE(1273)] = 68893, + [SMALL_STATE(1274)] = 68956, + [SMALL_STATE(1275)] = 69019, + [SMALL_STATE(1276)] = 69082, + [SMALL_STATE(1277)] = 69143, + [SMALL_STATE(1278)] = 69204, + [SMALL_STATE(1279)] = 69265, + [SMALL_STATE(1280)] = 69328, + [SMALL_STATE(1281)] = 69391, + [SMALL_STATE(1282)] = 69452, + [SMALL_STATE(1283)] = 69515, + [SMALL_STATE(1284)] = 69578, + [SMALL_STATE(1285)] = 69641, + [SMALL_STATE(1286)] = 69704, + [SMALL_STATE(1287)] = 69767, + [SMALL_STATE(1288)] = 69830, + [SMALL_STATE(1289)] = 69893, + [SMALL_STATE(1290)] = 69956, + [SMALL_STATE(1291)] = 70019, + [SMALL_STATE(1292)] = 70082, + [SMALL_STATE(1293)] = 70145, + [SMALL_STATE(1294)] = 70208, + [SMALL_STATE(1295)] = 70271, + [SMALL_STATE(1296)] = 70318, + [SMALL_STATE(1297)] = 70381, + [SMALL_STATE(1298)] = 70428, + [SMALL_STATE(1299)] = 70475, + [SMALL_STATE(1300)] = 70538, + [SMALL_STATE(1301)] = 70601, + [SMALL_STATE(1302)] = 70664, + [SMALL_STATE(1303)] = 70727, + [SMALL_STATE(1304)] = 70790, + [SMALL_STATE(1305)] = 70853, + [SMALL_STATE(1306)] = 70916, + [SMALL_STATE(1307)] = 70979, + [SMALL_STATE(1308)] = 71042, + [SMALL_STATE(1309)] = 71105, + [SMALL_STATE(1310)] = 71168, + [SMALL_STATE(1311)] = 71231, + [SMALL_STATE(1312)] = 71294, + [SMALL_STATE(1313)] = 71357, + [SMALL_STATE(1314)] = 71420, + [SMALL_STATE(1315)] = 71483, + [SMALL_STATE(1316)] = 71546, + [SMALL_STATE(1317)] = 71609, + [SMALL_STATE(1318)] = 71646, + [SMALL_STATE(1319)] = 71709, + [SMALL_STATE(1320)] = 71772, + [SMALL_STATE(1321)] = 71835, + [SMALL_STATE(1322)] = 71898, + [SMALL_STATE(1323)] = 71961, + [SMALL_STATE(1324)] = 71998, + [SMALL_STATE(1325)] = 72061, + [SMALL_STATE(1326)] = 72124, + [SMALL_STATE(1327)] = 72187, + [SMALL_STATE(1328)] = 72250, + [SMALL_STATE(1329)] = 72287, + [SMALL_STATE(1330)] = 72350, + [SMALL_STATE(1331)] = 72413, + [SMALL_STATE(1332)] = 72476, + [SMALL_STATE(1333)] = 72513, + [SMALL_STATE(1334)] = 72576, + [SMALL_STATE(1335)] = 72639, + [SMALL_STATE(1336)] = 72676, + [SMALL_STATE(1337)] = 72739, + [SMALL_STATE(1338)] = 72802, + [SMALL_STATE(1339)] = 72865, + [SMALL_STATE(1340)] = 72928, + [SMALL_STATE(1341)] = 72965, + [SMALL_STATE(1342)] = 73026, + [SMALL_STATE(1343)] = 73063, + [SMALL_STATE(1344)] = 73126, + [SMALL_STATE(1345)] = 73189, + [SMALL_STATE(1346)] = 73252, + [SMALL_STATE(1347)] = 73315, + [SMALL_STATE(1348)] = 73352, + [SMALL_STATE(1349)] = 73415, + [SMALL_STATE(1350)] = 73478, + [SMALL_STATE(1351)] = 73539, + [SMALL_STATE(1352)] = 73600, + [SMALL_STATE(1353)] = 73663, + [SMALL_STATE(1354)] = 73726, + [SMALL_STATE(1355)] = 73789, + [SMALL_STATE(1356)] = 73852, + [SMALL_STATE(1357)] = 73915, + [SMALL_STATE(1358)] = 73978, + [SMALL_STATE(1359)] = 74041, + [SMALL_STATE(1360)] = 74102, + [SMALL_STATE(1361)] = 74165, + [SMALL_STATE(1362)] = 74228, + [SMALL_STATE(1363)] = 74289, + [SMALL_STATE(1364)] = 74352, + [SMALL_STATE(1365)] = 74413, + [SMALL_STATE(1366)] = 74476, + [SMALL_STATE(1367)] = 74537, + [SMALL_STATE(1368)] = 74600, + [SMALL_STATE(1369)] = 74663, + [SMALL_STATE(1370)] = 74726, + [SMALL_STATE(1371)] = 74789, + [SMALL_STATE(1372)] = 74852, + [SMALL_STATE(1373)] = 74915, + [SMALL_STATE(1374)] = 74978, + [SMALL_STATE(1375)] = 75015, + [SMALL_STATE(1376)] = 75078, + [SMALL_STATE(1377)] = 75115, + [SMALL_STATE(1378)] = 75176, + [SMALL_STATE(1379)] = 75237, + [SMALL_STATE(1380)] = 75274, + [SMALL_STATE(1381)] = 75311, + [SMALL_STATE(1382)] = 75348, + [SMALL_STATE(1383)] = 75385, + [SMALL_STATE(1384)] = 75448, + [SMALL_STATE(1385)] = 75511, + [SMALL_STATE(1386)] = 75574, + [SMALL_STATE(1387)] = 75611, + [SMALL_STATE(1388)] = 75674, + [SMALL_STATE(1389)] = 75737, + [SMALL_STATE(1390)] = 75774, + [SMALL_STATE(1391)] = 75837, + [SMALL_STATE(1392)] = 75874, + [SMALL_STATE(1393)] = 75937, + [SMALL_STATE(1394)] = 76000, + [SMALL_STATE(1395)] = 76063, + [SMALL_STATE(1396)] = 76100, + [SMALL_STATE(1397)] = 76137, + [SMALL_STATE(1398)] = 76174, + [SMALL_STATE(1399)] = 76211, + [SMALL_STATE(1400)] = 76248, + [SMALL_STATE(1401)] = 76285, + [SMALL_STATE(1402)] = 76348, + [SMALL_STATE(1403)] = 76411, + [SMALL_STATE(1404)] = 76448, + [SMALL_STATE(1405)] = 76511, + [SMALL_STATE(1406)] = 76574, + [SMALL_STATE(1407)] = 76637, + [SMALL_STATE(1408)] = 76700, + [SMALL_STATE(1409)] = 76763, + [SMALL_STATE(1410)] = 76826, + [SMALL_STATE(1411)] = 76889, + [SMALL_STATE(1412)] = 76952, + [SMALL_STATE(1413)] = 77015, + [SMALL_STATE(1414)] = 77078, + [SMALL_STATE(1415)] = 77141, + [SMALL_STATE(1416)] = 77204, + [SMALL_STATE(1417)] = 77267, + [SMALL_STATE(1418)] = 77330, + [SMALL_STATE(1419)] = 77393, + [SMALL_STATE(1420)] = 77456, + [SMALL_STATE(1421)] = 77519, + [SMALL_STATE(1422)] = 77582, + [SMALL_STATE(1423)] = 77645, + [SMALL_STATE(1424)] = 77708, + [SMALL_STATE(1425)] = 77771, + [SMALL_STATE(1426)] = 77834, + [SMALL_STATE(1427)] = 77878, + [SMALL_STATE(1428)] = 77908, + [SMALL_STATE(1429)] = 77952, + [SMALL_STATE(1430)] = 77982, + [SMALL_STATE(1431)] = 78044, + [SMALL_STATE(1432)] = 78088, + [SMALL_STATE(1433)] = 78118, + [SMALL_STATE(1434)] = 78162, + [SMALL_STATE(1435)] = 78192, + [SMALL_STATE(1436)] = 78222, + [SMALL_STATE(1437)] = 78266, + [SMALL_STATE(1438)] = 78296, + [SMALL_STATE(1439)] = 78340, + [SMALL_STATE(1440)] = 78370, + [SMALL_STATE(1441)] = 78416, + [SMALL_STATE(1442)] = 78478, + [SMALL_STATE(1443)] = 78524, + [SMALL_STATE(1444)] = 78586, + [SMALL_STATE(1445)] = 78616, + [SMALL_STATE(1446)] = 78646, + [SMALL_STATE(1447)] = 78708, + [SMALL_STATE(1448)] = 78738, + [SMALL_STATE(1449)] = 78800, + [SMALL_STATE(1450)] = 78862, + [SMALL_STATE(1451)] = 78924, + [SMALL_STATE(1452)] = 78954, + [SMALL_STATE(1453)] = 78984, + [SMALL_STATE(1454)] = 79014, + [SMALL_STATE(1455)] = 79058, + [SMALL_STATE(1456)] = 79122, + [SMALL_STATE(1457)] = 79186, + [SMALL_STATE(1458)] = 79250, + [SMALL_STATE(1459)] = 79314, + [SMALL_STATE(1460)] = 79378, + [SMALL_STATE(1461)] = 79422, + [SMALL_STATE(1462)] = 79486, + [SMALL_STATE(1463)] = 79550, + [SMALL_STATE(1464)] = 79580, + [SMALL_STATE(1465)] = 79626, + [SMALL_STATE(1466)] = 79690, + [SMALL_STATE(1467)] = 79754, + [SMALL_STATE(1468)] = 79818, + [SMALL_STATE(1469)] = 79848, + [SMALL_STATE(1470)] = 79880, + [SMALL_STATE(1471)] = 79944, + [SMALL_STATE(1472)] = 79974, + [SMALL_STATE(1473)] = 80038, + [SMALL_STATE(1474)] = 80102, + [SMALL_STATE(1475)] = 80132, + [SMALL_STATE(1476)] = 80162, + [SMALL_STATE(1477)] = 80192, + [SMALL_STATE(1478)] = 80236, + [SMALL_STATE(1479)] = 80280, + [SMALL_STATE(1480)] = 80324, + [SMALL_STATE(1481)] = 80368, + [SMALL_STATE(1482)] = 80398, + [SMALL_STATE(1483)] = 80428, + [SMALL_STATE(1484)] = 80472, + [SMALL_STATE(1485)] = 80534, + [SMALL_STATE(1486)] = 80578, + [SMALL_STATE(1487)] = 80622, + [SMALL_STATE(1488)] = 80652, + [SMALL_STATE(1489)] = 80682, + [SMALL_STATE(1490)] = 80744, + [SMALL_STATE(1491)] = 80788, + [SMALL_STATE(1492)] = 80818, + [SMALL_STATE(1493)] = 80862, + [SMALL_STATE(1494)] = 80892, + [SMALL_STATE(1495)] = 80922, + [SMALL_STATE(1496)] = 80952, + [SMALL_STATE(1497)] = 80982, + [SMALL_STATE(1498)] = 81026, + [SMALL_STATE(1499)] = 81090, + [SMALL_STATE(1500)] = 81154, + [SMALL_STATE(1501)] = 81184, + [SMALL_STATE(1502)] = 81214, + [SMALL_STATE(1503)] = 81258, + [SMALL_STATE(1504)] = 81302, + [SMALL_STATE(1505)] = 81332, + [SMALL_STATE(1506)] = 81376, + [SMALL_STATE(1507)] = 81420, + [SMALL_STATE(1508)] = 81464, + [SMALL_STATE(1509)] = 81508, + [SMALL_STATE(1510)] = 81570, + [SMALL_STATE(1511)] = 81600, + [SMALL_STATE(1512)] = 81630, + [SMALL_STATE(1513)] = 81660, + [SMALL_STATE(1514)] = 81690, + [SMALL_STATE(1515)] = 81720, + [SMALL_STATE(1516)] = 81782, + [SMALL_STATE(1517)] = 81844, + [SMALL_STATE(1518)] = 81874, + [SMALL_STATE(1519)] = 81904, + [SMALL_STATE(1520)] = 81966, + [SMALL_STATE(1521)] = 81996, + [SMALL_STATE(1522)] = 82026, + [SMALL_STATE(1523)] = 82090, + [SMALL_STATE(1524)] = 82154, + [SMALL_STATE(1525)] = 82184, + [SMALL_STATE(1526)] = 82214, + [SMALL_STATE(1527)] = 82258, + [SMALL_STATE(1528)] = 82288, [SMALL_STATE(1529)] = 82332, - [SMALL_STATE(1530)] = 82391, - [SMALL_STATE(1531)] = 82452, - [SMALL_STATE(1532)] = 82511, - [SMALL_STATE(1533)] = 82570, - [SMALL_STATE(1534)] = 82629, - [SMALL_STATE(1535)] = 82688, - [SMALL_STATE(1536)] = 82747, - [SMALL_STATE(1537)] = 82806, - [SMALL_STATE(1538)] = 82865, - [SMALL_STATE(1539)] = 82924, - [SMALL_STATE(1540)] = 82983, - [SMALL_STATE(1541)] = 83042, - [SMALL_STATE(1542)] = 83101, - [SMALL_STATE(1543)] = 83160, - [SMALL_STATE(1544)] = 83219, - [SMALL_STATE(1545)] = 83278, - [SMALL_STATE(1546)] = 83337, - [SMALL_STATE(1547)] = 83380, - [SMALL_STATE(1548)] = 83423, - [SMALL_STATE(1549)] = 83482, - [SMALL_STATE(1550)] = 83541, - [SMALL_STATE(1551)] = 83600, - [SMALL_STATE(1552)] = 83659, - [SMALL_STATE(1553)] = 83718, - [SMALL_STATE(1554)] = 83779, - [SMALL_STATE(1555)] = 83838, - [SMALL_STATE(1556)] = 83897, - [SMALL_STATE(1557)] = 83958, - [SMALL_STATE(1558)] = 84017, - [SMALL_STATE(1559)] = 84078, - [SMALL_STATE(1560)] = 84139, - [SMALL_STATE(1561)] = 84198, - [SMALL_STATE(1562)] = 84257, - [SMALL_STATE(1563)] = 84316, - [SMALL_STATE(1564)] = 84377, - [SMALL_STATE(1565)] = 84438, - [SMALL_STATE(1566)] = 84497, - [SMALL_STATE(1567)] = 84556, - [SMALL_STATE(1568)] = 84615, - [SMALL_STATE(1569)] = 84676, - [SMALL_STATE(1570)] = 84735, - [SMALL_STATE(1571)] = 84794, - [SMALL_STATE(1572)] = 84855, - [SMALL_STATE(1573)] = 84914, - [SMALL_STATE(1574)] = 84973, - [SMALL_STATE(1575)] = 85032, - [SMALL_STATE(1576)] = 85091, - [SMALL_STATE(1577)] = 85150, - [SMALL_STATE(1578)] = 85209, - [SMALL_STATE(1579)] = 85270, - [SMALL_STATE(1580)] = 85329, - [SMALL_STATE(1581)] = 85388, - [SMALL_STATE(1582)] = 85449, - [SMALL_STATE(1583)] = 85489, - [SMALL_STATE(1584)] = 85529, - [SMALL_STATE(1585)] = 85585, - [SMALL_STATE(1586)] = 85625, - [SMALL_STATE(1587)] = 85655, - [SMALL_STATE(1588)] = 85685, - [SMALL_STATE(1589)] = 85713, - [SMALL_STATE(1590)] = 85753, - [SMALL_STATE(1591)] = 85787, - [SMALL_STATE(1592)] = 85843, - [SMALL_STATE(1593)] = 85883, - [SMALL_STATE(1594)] = 85923, - [SMALL_STATE(1595)] = 85951, - [SMALL_STATE(1596)] = 86007, - [SMALL_STATE(1597)] = 86063, - [SMALL_STATE(1598)] = 86091, - [SMALL_STATE(1599)] = 86147, - [SMALL_STATE(1600)] = 86203, - [SMALL_STATE(1601)] = 86259, - [SMALL_STATE(1602)] = 86315, - [SMALL_STATE(1603)] = 86371, - [SMALL_STATE(1604)] = 86411, - [SMALL_STATE(1605)] = 86467, - [SMALL_STATE(1606)] = 86501, - [SMALL_STATE(1607)] = 86529, - [SMALL_STATE(1608)] = 86563, - [SMALL_STATE(1609)] = 86603, - [SMALL_STATE(1610)] = 86631, - [SMALL_STATE(1611)] = 86659, - [SMALL_STATE(1612)] = 86699, - [SMALL_STATE(1613)] = 86727, - [SMALL_STATE(1614)] = 86755, - [SMALL_STATE(1615)] = 86789, - [SMALL_STATE(1616)] = 86817, - [SMALL_STATE(1617)] = 86857, - [SMALL_STATE(1618)] = 86885, - [SMALL_STATE(1619)] = 86913, - [SMALL_STATE(1620)] = 86953, - [SMALL_STATE(1621)] = 86993, - [SMALL_STATE(1622)] = 87021, - [SMALL_STATE(1623)] = 87051, - [SMALL_STATE(1624)] = 87081, - [SMALL_STATE(1625)] = 87121, - [SMALL_STATE(1626)] = 87179, - [SMALL_STATE(1627)] = 87235, - [SMALL_STATE(1628)] = 87293, - [SMALL_STATE(1629)] = 87351, - [SMALL_STATE(1630)] = 87407, - [SMALL_STATE(1631)] = 87441, - [SMALL_STATE(1632)] = 87475, - [SMALL_STATE(1633)] = 87535, - [SMALL_STATE(1634)] = 87593, - [SMALL_STATE(1635)] = 87627, - [SMALL_STATE(1636)] = 87687, - [SMALL_STATE(1637)] = 87743, - [SMALL_STATE(1638)] = 87783, - [SMALL_STATE(1639)] = 87823, - [SMALL_STATE(1640)] = 87863, - [SMALL_STATE(1641)] = 87921, - [SMALL_STATE(1642)] = 87979, - [SMALL_STATE(1643)] = 88019, - [SMALL_STATE(1644)] = 88053, - [SMALL_STATE(1645)] = 88093, - [SMALL_STATE(1646)] = 88133, - [SMALL_STATE(1647)] = 88173, - [SMALL_STATE(1648)] = 88231, - [SMALL_STATE(1649)] = 88287, - [SMALL_STATE(1650)] = 88327, - [SMALL_STATE(1651)] = 88367, - [SMALL_STATE(1652)] = 88407, - [SMALL_STATE(1653)] = 88447, - [SMALL_STATE(1654)] = 88487, - [SMALL_STATE(1655)] = 88527, - [SMALL_STATE(1656)] = 88567, - [SMALL_STATE(1657)] = 88623, - [SMALL_STATE(1658)] = 88663, - [SMALL_STATE(1659)] = 88703, - [SMALL_STATE(1660)] = 88761, - [SMALL_STATE(1661)] = 88817, - [SMALL_STATE(1662)] = 88873, - [SMALL_STATE(1663)] = 88929, - [SMALL_STATE(1664)] = 88963, - [SMALL_STATE(1665)] = 89019, - [SMALL_STATE(1666)] = 89053, - [SMALL_STATE(1667)] = 89111, - [SMALL_STATE(1668)] = 89141, - [SMALL_STATE(1669)] = 89175, - [SMALL_STATE(1670)] = 89231, - [SMALL_STATE(1671)] = 89287, - [SMALL_STATE(1672)] = 89343, - [SMALL_STATE(1673)] = 89399, - [SMALL_STATE(1674)] = 89455, - [SMALL_STATE(1675)] = 89489, - [SMALL_STATE(1676)] = 89545, - [SMALL_STATE(1677)] = 89579, - [SMALL_STATE(1678)] = 89635, - [SMALL_STATE(1679)] = 89675, - [SMALL_STATE(1680)] = 89715, - [SMALL_STATE(1681)] = 89773, - [SMALL_STATE(1682)] = 89829, - [SMALL_STATE(1683)] = 89885, - [SMALL_STATE(1684)] = 89919, - [SMALL_STATE(1685)] = 89977, - [SMALL_STATE(1686)] = 90033, - [SMALL_STATE(1687)] = 90089, - [SMALL_STATE(1688)] = 90145, - [SMALL_STATE(1689)] = 90179, - [SMALL_STATE(1690)] = 90235, - [SMALL_STATE(1691)] = 90265, - [SMALL_STATE(1692)] = 90321, - [SMALL_STATE(1693)] = 90355, - [SMALL_STATE(1694)] = 90411, - [SMALL_STATE(1695)] = 90445, - [SMALL_STATE(1696)] = 90505, - [SMALL_STATE(1697)] = 90561, - [SMALL_STATE(1698)] = 90617, - [SMALL_STATE(1699)] = 90673, - [SMALL_STATE(1700)] = 90729, - [SMALL_STATE(1701)] = 90763, - [SMALL_STATE(1702)] = 90821, - [SMALL_STATE(1703)] = 90879, - [SMALL_STATE(1704)] = 90937, - [SMALL_STATE(1705)] = 90995, - [SMALL_STATE(1706)] = 91053, - [SMALL_STATE(1707)] = 91109, - [SMALL_STATE(1708)] = 91167, - [SMALL_STATE(1709)] = 91223, - [SMALL_STATE(1710)] = 91279, - [SMALL_STATE(1711)] = 91337, - [SMALL_STATE(1712)] = 91395, - [SMALL_STATE(1713)] = 91451, - [SMALL_STATE(1714)] = 91509, - [SMALL_STATE(1715)] = 91565, - [SMALL_STATE(1716)] = 91621, - [SMALL_STATE(1717)] = 91677, - [SMALL_STATE(1718)] = 91707, - [SMALL_STATE(1719)] = 91763, - [SMALL_STATE(1720)] = 91819, - [SMALL_STATE(1721)] = 91875, - [SMALL_STATE(1722)] = 91935, - [SMALL_STATE(1723)] = 91991, - [SMALL_STATE(1724)] = 92047, - [SMALL_STATE(1725)] = 92103, - [SMALL_STATE(1726)] = 92159, - [SMALL_STATE(1727)] = 92193, - [SMALL_STATE(1728)] = 92249, - [SMALL_STATE(1729)] = 92309, - [SMALL_STATE(1730)] = 92365, - [SMALL_STATE(1731)] = 92405, - [SMALL_STATE(1732)] = 92445, - [SMALL_STATE(1733)] = 92479, - [SMALL_STATE(1734)] = 92535, - [SMALL_STATE(1735)] = 92593, - [SMALL_STATE(1736)] = 92651, - [SMALL_STATE(1737)] = 92691, - [SMALL_STATE(1738)] = 92747, - [SMALL_STATE(1739)] = 92805, - [SMALL_STATE(1740)] = 92861, - [SMALL_STATE(1741)] = 92921, - [SMALL_STATE(1742)] = 92981, - [SMALL_STATE(1743)] = 93037, - [SMALL_STATE(1744)] = 93093, - [SMALL_STATE(1745)] = 93133, - [SMALL_STATE(1746)] = 93173, - [SMALL_STATE(1747)] = 93231, - [SMALL_STATE(1748)] = 93289, - [SMALL_STATE(1749)] = 93347, - [SMALL_STATE(1750)] = 93405, - [SMALL_STATE(1751)] = 93461, - [SMALL_STATE(1752)] = 93519, - [SMALL_STATE(1753)] = 93579, - [SMALL_STATE(1754)] = 93639, - [SMALL_STATE(1755)] = 93695, - [SMALL_STATE(1756)] = 93753, - [SMALL_STATE(1757)] = 93793, - [SMALL_STATE(1758)] = 93853, - [SMALL_STATE(1759)] = 93911, - [SMALL_STATE(1760)] = 93967, - [SMALL_STATE(1761)] = 94025, - [SMALL_STATE(1762)] = 94065, - [SMALL_STATE(1763)] = 94121, - [SMALL_STATE(1764)] = 94179, - [SMALL_STATE(1765)] = 94235, - [SMALL_STATE(1766)] = 94295, - [SMALL_STATE(1767)] = 94335, - [SMALL_STATE(1768)] = 94391, - [SMALL_STATE(1769)] = 94421, - [SMALL_STATE(1770)] = 94479, - [SMALL_STATE(1771)] = 94519, - [SMALL_STATE(1772)] = 94546, - [SMALL_STATE(1773)] = 94573, - [SMALL_STATE(1774)] = 94628, - [SMALL_STATE(1775)] = 94661, - [SMALL_STATE(1776)] = 94694, - [SMALL_STATE(1777)] = 94727, - [SMALL_STATE(1778)] = 94760, - [SMALL_STATE(1779)] = 94815, - [SMALL_STATE(1780)] = 94842, - [SMALL_STATE(1781)] = 94875, - [SMALL_STATE(1782)] = 94908, - [SMALL_STATE(1783)] = 94963, - [SMALL_STATE(1784)] = 94990, - [SMALL_STATE(1785)] = 95017, - [SMALL_STATE(1786)] = 95072, - [SMALL_STATE(1787)] = 95099, - [SMALL_STATE(1788)] = 95154, - [SMALL_STATE(1789)] = 95187, - [SMALL_STATE(1790)] = 95214, - [SMALL_STATE(1791)] = 95241, - [SMALL_STATE(1792)] = 95274, - [SMALL_STATE(1793)] = 95301, - [SMALL_STATE(1794)] = 95356, - [SMALL_STATE(1795)] = 95411, - [SMALL_STATE(1796)] = 95466, - [SMALL_STATE(1797)] = 95521, - [SMALL_STATE(1798)] = 95576, - [SMALL_STATE(1799)] = 95609, - [SMALL_STATE(1800)] = 95636, - [SMALL_STATE(1801)] = 95691, - [SMALL_STATE(1802)] = 95746, - [SMALL_STATE(1803)] = 95801, - [SMALL_STATE(1804)] = 95856, - [SMALL_STATE(1805)] = 95911, - [SMALL_STATE(1806)] = 95966, - [SMALL_STATE(1807)] = 96021, - [SMALL_STATE(1808)] = 96048, - [SMALL_STATE(1809)] = 96103, - [SMALL_STATE(1810)] = 96130, - [SMALL_STATE(1811)] = 96163, - [SMALL_STATE(1812)] = 96196, - [SMALL_STATE(1813)] = 96223, - [SMALL_STATE(1814)] = 96278, - [SMALL_STATE(1815)] = 96307, - [SMALL_STATE(1816)] = 96336, - [SMALL_STATE(1817)] = 96363, - [SMALL_STATE(1818)] = 96390, - [SMALL_STATE(1819)] = 96423, - [SMALL_STATE(1820)] = 96450, - [SMALL_STATE(1821)] = 96505, - [SMALL_STATE(1822)] = 96560, - [SMALL_STATE(1823)] = 96587, - [SMALL_STATE(1824)] = 96614, - [SMALL_STATE(1825)] = 96641, - [SMALL_STATE(1826)] = 96668, - [SMALL_STATE(1827)] = 96695, - [SMALL_STATE(1828)] = 96722, - [SMALL_STATE(1829)] = 96749, - [SMALL_STATE(1830)] = 96776, - [SMALL_STATE(1831)] = 96803, - [SMALL_STATE(1832)] = 96858, - [SMALL_STATE(1833)] = 96913, - [SMALL_STATE(1834)] = 96940, - [SMALL_STATE(1835)] = 96967, - [SMALL_STATE(1836)] = 97022, - [SMALL_STATE(1837)] = 97077, - [SMALL_STATE(1838)] = 97104, - [SMALL_STATE(1839)] = 97131, - [SMALL_STATE(1840)] = 97186, - [SMALL_STATE(1841)] = 97219, - [SMALL_STATE(1842)] = 97246, - [SMALL_STATE(1843)] = 97273, - [SMALL_STATE(1844)] = 97328, - [SMALL_STATE(1845)] = 97355, - [SMALL_STATE(1846)] = 97410, - [SMALL_STATE(1847)] = 97437, - [SMALL_STATE(1848)] = 97492, - [SMALL_STATE(1849)] = 97519, - [SMALL_STATE(1850)] = 97546, - [SMALL_STATE(1851)] = 97601, - [SMALL_STATE(1852)] = 97628, - [SMALL_STATE(1853)] = 97683, - [SMALL_STATE(1854)] = 97710, - [SMALL_STATE(1855)] = 97737, - [SMALL_STATE(1856)] = 97792, - [SMALL_STATE(1857)] = 97819, - [SMALL_STATE(1858)] = 97846, - [SMALL_STATE(1859)] = 97879, - [SMALL_STATE(1860)] = 97912, - [SMALL_STATE(1861)] = 97945, - [SMALL_STATE(1862)] = 98000, - [SMALL_STATE(1863)] = 98055, - [SMALL_STATE(1864)] = 98082, - [SMALL_STATE(1865)] = 98109, - [SMALL_STATE(1866)] = 98164, - [SMALL_STATE(1867)] = 98191, - [SMALL_STATE(1868)] = 98246, - [SMALL_STATE(1869)] = 98273, - [SMALL_STATE(1870)] = 98328, - [SMALL_STATE(1871)] = 98355, - [SMALL_STATE(1872)] = 98382, - [SMALL_STATE(1873)] = 98409, - [SMALL_STATE(1874)] = 98436, - [SMALL_STATE(1875)] = 98491, - [SMALL_STATE(1876)] = 98518, - [SMALL_STATE(1877)] = 98573, - [SMALL_STATE(1878)] = 98600, - [SMALL_STATE(1879)] = 98655, - [SMALL_STATE(1880)] = 98684, - [SMALL_STATE(1881)] = 98713, - [SMALL_STATE(1882)] = 98740, - [SMALL_STATE(1883)] = 98795, - [SMALL_STATE(1884)] = 98850, - [SMALL_STATE(1885)] = 98905, - [SMALL_STATE(1886)] = 98932, - [SMALL_STATE(1887)] = 98959, - [SMALL_STATE(1888)] = 99014, - [SMALL_STATE(1889)] = 99041, - [SMALL_STATE(1890)] = 99068, - [SMALL_STATE(1891)] = 99095, - [SMALL_STATE(1892)] = 99122, - [SMALL_STATE(1893)] = 99149, - [SMALL_STATE(1894)] = 99176, - [SMALL_STATE(1895)] = 99203, - [SMALL_STATE(1896)] = 99230, - [SMALL_STATE(1897)] = 99257, - [SMALL_STATE(1898)] = 99284, - [SMALL_STATE(1899)] = 99311, - [SMALL_STATE(1900)] = 99338, - [SMALL_STATE(1901)] = 99365, - [SMALL_STATE(1902)] = 99392, - [SMALL_STATE(1903)] = 99419, - [SMALL_STATE(1904)] = 99446, - [SMALL_STATE(1905)] = 99473, - [SMALL_STATE(1906)] = 99500, - [SMALL_STATE(1907)] = 99527, - [SMALL_STATE(1908)] = 99554, - [SMALL_STATE(1909)] = 99581, - [SMALL_STATE(1910)] = 99608, - [SMALL_STATE(1911)] = 99635, - [SMALL_STATE(1912)] = 99662, - [SMALL_STATE(1913)] = 99717, - [SMALL_STATE(1914)] = 99744, - [SMALL_STATE(1915)] = 99771, - [SMALL_STATE(1916)] = 99798, - [SMALL_STATE(1917)] = 99853, - [SMALL_STATE(1918)] = 99880, - [SMALL_STATE(1919)] = 99907, - [SMALL_STATE(1920)] = 99934, - [SMALL_STATE(1921)] = 99961, - [SMALL_STATE(1922)] = 100016, - [SMALL_STATE(1923)] = 100043, - [SMALL_STATE(1924)] = 100070, - [SMALL_STATE(1925)] = 100125, - [SMALL_STATE(1926)] = 100152, - [SMALL_STATE(1927)] = 100207, - [SMALL_STATE(1928)] = 100234, - [SMALL_STATE(1929)] = 100261, - [SMALL_STATE(1930)] = 100288, - [SMALL_STATE(1931)] = 100315, - [SMALL_STATE(1932)] = 100370, - [SMALL_STATE(1933)] = 100397, - [SMALL_STATE(1934)] = 100452, - [SMALL_STATE(1935)] = 100507, - [SMALL_STATE(1936)] = 100534, - [SMALL_STATE(1937)] = 100561, - [SMALL_STATE(1938)] = 100587, - [SMALL_STATE(1939)] = 100613, - [SMALL_STATE(1940)] = 100639, - [SMALL_STATE(1941)] = 100665, - [SMALL_STATE(1942)] = 100691, - [SMALL_STATE(1943)] = 100717, - [SMALL_STATE(1944)] = 100773, - [SMALL_STATE(1945)] = 100799, - [SMALL_STATE(1946)] = 100855, - [SMALL_STATE(1947)] = 100881, - [SMALL_STATE(1948)] = 100907, - [SMALL_STATE(1949)] = 100935, - [SMALL_STATE(1950)] = 100963, - [SMALL_STATE(1951)] = 100989, - [SMALL_STATE(1952)] = 101015, - [SMALL_STATE(1953)] = 101071, - [SMALL_STATE(1954)] = 101097, - [SMALL_STATE(1955)] = 101123, - [SMALL_STATE(1956)] = 101149, - [SMALL_STATE(1957)] = 101175, - [SMALL_STATE(1958)] = 101201, - [SMALL_STATE(1959)] = 101229, - [SMALL_STATE(1960)] = 101257, - [SMALL_STATE(1961)] = 101313, - [SMALL_STATE(1962)] = 101369, - [SMALL_STATE(1963)] = 101395, - [SMALL_STATE(1964)] = 101451, - [SMALL_STATE(1965)] = 101477, - [SMALL_STATE(1966)] = 101503, - [SMALL_STATE(1967)] = 101529, - [SMALL_STATE(1968)] = 101555, - [SMALL_STATE(1969)] = 101611, - [SMALL_STATE(1970)] = 101637, - [SMALL_STATE(1971)] = 101663, - [SMALL_STATE(1972)] = 101689, - [SMALL_STATE(1973)] = 101715, - [SMALL_STATE(1974)] = 101741, - [SMALL_STATE(1975)] = 101767, - [SMALL_STATE(1976)] = 101793, - [SMALL_STATE(1977)] = 101819, - [SMALL_STATE(1978)] = 101845, - [SMALL_STATE(1979)] = 101901, - [SMALL_STATE(1980)] = 101927, - [SMALL_STATE(1981)] = 101953, - [SMALL_STATE(1982)] = 101979, - [SMALL_STATE(1983)] = 102005, - [SMALL_STATE(1984)] = 102031, - [SMALL_STATE(1985)] = 102057, - [SMALL_STATE(1986)] = 102113, - [SMALL_STATE(1987)] = 102139, - [SMALL_STATE(1988)] = 102165, - [SMALL_STATE(1989)] = 102191, - [SMALL_STATE(1990)] = 102217, - [SMALL_STATE(1991)] = 102243, - [SMALL_STATE(1992)] = 102269, - [SMALL_STATE(1993)] = 102295, - [SMALL_STATE(1994)] = 102321, - [SMALL_STATE(1995)] = 102347, - [SMALL_STATE(1996)] = 102373, - [SMALL_STATE(1997)] = 102399, - [SMALL_STATE(1998)] = 102425, - [SMALL_STATE(1999)] = 102451, - [SMALL_STATE(2000)] = 102507, - [SMALL_STATE(2001)] = 102533, - [SMALL_STATE(2002)] = 102589, - [SMALL_STATE(2003)] = 102645, - [SMALL_STATE(2004)] = 102671, - [SMALL_STATE(2005)] = 102697, - [SMALL_STATE(2006)] = 102723, - [SMALL_STATE(2007)] = 102749, - [SMALL_STATE(2008)] = 102775, - [SMALL_STATE(2009)] = 102801, - [SMALL_STATE(2010)] = 102857, - [SMALL_STATE(2011)] = 102913, - [SMALL_STATE(2012)] = 102939, - [SMALL_STATE(2013)] = 102995, - [SMALL_STATE(2014)] = 103051, - [SMALL_STATE(2015)] = 103077, - [SMALL_STATE(2016)] = 103103, - [SMALL_STATE(2017)] = 103159, - [SMALL_STATE(2018)] = 103185, - [SMALL_STATE(2019)] = 103241, - [SMALL_STATE(2020)] = 103267, - [SMALL_STATE(2021)] = 103293, - [SMALL_STATE(2022)] = 103349, - [SMALL_STATE(2023)] = 103375, - [SMALL_STATE(2024)] = 103431, - [SMALL_STATE(2025)] = 103457, - [SMALL_STATE(2026)] = 103483, - [SMALL_STATE(2027)] = 103509, - [SMALL_STATE(2028)] = 103535, - [SMALL_STATE(2029)] = 103561, - [SMALL_STATE(2030)] = 103587, - [SMALL_STATE(2031)] = 103643, - [SMALL_STATE(2032)] = 103671, - [SMALL_STATE(2033)] = 103699, - [SMALL_STATE(2034)] = 103725, - [SMALL_STATE(2035)] = 103751, - [SMALL_STATE(2036)] = 103777, - [SMALL_STATE(2037)] = 103833, - [SMALL_STATE(2038)] = 103859, - [SMALL_STATE(2039)] = 103885, - [SMALL_STATE(2040)] = 103911, - [SMALL_STATE(2041)] = 103937, - [SMALL_STATE(2042)] = 103963, - [SMALL_STATE(2043)] = 103989, - [SMALL_STATE(2044)] = 104015, - [SMALL_STATE(2045)] = 104041, - [SMALL_STATE(2046)] = 104067, - [SMALL_STATE(2047)] = 104123, - [SMALL_STATE(2048)] = 104179, - [SMALL_STATE(2049)] = 104205, - [SMALL_STATE(2050)] = 104231, - [SMALL_STATE(2051)] = 104259, - [SMALL_STATE(2052)] = 104285, - [SMALL_STATE(2053)] = 104311, - [SMALL_STATE(2054)] = 104339, - [SMALL_STATE(2055)] = 104365, - [SMALL_STATE(2056)] = 104391, - [SMALL_STATE(2057)] = 104417, - [SMALL_STATE(2058)] = 104443, - [SMALL_STATE(2059)] = 104469, - [SMALL_STATE(2060)] = 104495, - [SMALL_STATE(2061)] = 104521, - [SMALL_STATE(2062)] = 104547, - [SMALL_STATE(2063)] = 104600, - [SMALL_STATE(2064)] = 104653, - [SMALL_STATE(2065)] = 104706, - [SMALL_STATE(2066)] = 104759, - [SMALL_STATE(2067)] = 104812, - [SMALL_STATE(2068)] = 104837, - [SMALL_STATE(2069)] = 104890, - [SMALL_STATE(2070)] = 104943, - [SMALL_STATE(2071)] = 104996, - [SMALL_STATE(2072)] = 105049, - [SMALL_STATE(2073)] = 105102, - [SMALL_STATE(2074)] = 105155, - [SMALL_STATE(2075)] = 105208, - [SMALL_STATE(2076)] = 105261, - [SMALL_STATE(2077)] = 105314, - [SMALL_STATE(2078)] = 105367, - [SMALL_STATE(2079)] = 105420, - [SMALL_STATE(2080)] = 105473, - [SMALL_STATE(2081)] = 105526, - [SMALL_STATE(2082)] = 105579, - [SMALL_STATE(2083)] = 105632, - [SMALL_STATE(2084)] = 105685, - [SMALL_STATE(2085)] = 105738, - [SMALL_STATE(2086)] = 105791, - [SMALL_STATE(2087)] = 105844, - [SMALL_STATE(2088)] = 105897, - [SMALL_STATE(2089)] = 105950, - [SMALL_STATE(2090)] = 106003, - [SMALL_STATE(2091)] = 106056, - [SMALL_STATE(2092)] = 106109, - [SMALL_STATE(2093)] = 106162, - [SMALL_STATE(2094)] = 106215, - [SMALL_STATE(2095)] = 106268, - [SMALL_STATE(2096)] = 106321, - [SMALL_STATE(2097)] = 106374, - [SMALL_STATE(2098)] = 106427, - [SMALL_STATE(2099)] = 106480, - [SMALL_STATE(2100)] = 106533, - [SMALL_STATE(2101)] = 106586, - [SMALL_STATE(2102)] = 106639, - [SMALL_STATE(2103)] = 106692, - [SMALL_STATE(2104)] = 106745, - [SMALL_STATE(2105)] = 106798, - [SMALL_STATE(2106)] = 106851, - [SMALL_STATE(2107)] = 106904, - [SMALL_STATE(2108)] = 106957, - [SMALL_STATE(2109)] = 106982, - [SMALL_STATE(2110)] = 107007, - [SMALL_STATE(2111)] = 107032, - [SMALL_STATE(2112)] = 107085, - [SMALL_STATE(2113)] = 107138, - [SMALL_STATE(2114)] = 107191, - [SMALL_STATE(2115)] = 107244, - [SMALL_STATE(2116)] = 107269, - [SMALL_STATE(2117)] = 107294, - [SMALL_STATE(2118)] = 107347, - [SMALL_STATE(2119)] = 107400, - [SMALL_STATE(2120)] = 107453, - [SMALL_STATE(2121)] = 107506, - [SMALL_STATE(2122)] = 107559, - [SMALL_STATE(2123)] = 107612, - [SMALL_STATE(2124)] = 107665, - [SMALL_STATE(2125)] = 107718, - [SMALL_STATE(2126)] = 107743, - [SMALL_STATE(2127)] = 107796, - [SMALL_STATE(2128)] = 107849, - [SMALL_STATE(2129)] = 107902, - [SMALL_STATE(2130)] = 107955, - [SMALL_STATE(2131)] = 108008, - [SMALL_STATE(2132)] = 108061, - [SMALL_STATE(2133)] = 108086, - [SMALL_STATE(2134)] = 108111, - [SMALL_STATE(2135)] = 108164, - [SMALL_STATE(2136)] = 108217, - [SMALL_STATE(2137)] = 108270, - [SMALL_STATE(2138)] = 108323, - [SMALL_STATE(2139)] = 108376, - [SMALL_STATE(2140)] = 108429, - [SMALL_STATE(2141)] = 108482, - [SMALL_STATE(2142)] = 108535, - [SMALL_STATE(2143)] = 108588, - [SMALL_STATE(2144)] = 108641, - [SMALL_STATE(2145)] = 108666, - [SMALL_STATE(2146)] = 108719, - [SMALL_STATE(2147)] = 108772, - [SMALL_STATE(2148)] = 108825, - [SMALL_STATE(2149)] = 108878, - [SMALL_STATE(2150)] = 108931, - [SMALL_STATE(2151)] = 108956, - [SMALL_STATE(2152)] = 108981, - [SMALL_STATE(2153)] = 109034, - [SMALL_STATE(2154)] = 109087, - [SMALL_STATE(2155)] = 109140, - [SMALL_STATE(2156)] = 109193, - [SMALL_STATE(2157)] = 109246, - [SMALL_STATE(2158)] = 109299, - [SMALL_STATE(2159)] = 109352, - [SMALL_STATE(2160)] = 109405, - [SMALL_STATE(2161)] = 109458, - [SMALL_STATE(2162)] = 109511, - [SMALL_STATE(2163)] = 109564, - [SMALL_STATE(2164)] = 109617, - [SMALL_STATE(2165)] = 109670, - [SMALL_STATE(2166)] = 109723, - [SMALL_STATE(2167)] = 109776, - [SMALL_STATE(2168)] = 109829, - [SMALL_STATE(2169)] = 109882, - [SMALL_STATE(2170)] = 109935, - [SMALL_STATE(2171)] = 109960, - [SMALL_STATE(2172)] = 110013, - [SMALL_STATE(2173)] = 110066, - [SMALL_STATE(2174)] = 110119, - [SMALL_STATE(2175)] = 110172, - [SMALL_STATE(2176)] = 110225, - [SMALL_STATE(2177)] = 110278, - [SMALL_STATE(2178)] = 110331, - [SMALL_STATE(2179)] = 110384, - [SMALL_STATE(2180)] = 110437, - [SMALL_STATE(2181)] = 110490, - [SMALL_STATE(2182)] = 110543, - [SMALL_STATE(2183)] = 110596, - [SMALL_STATE(2184)] = 110649, - [SMALL_STATE(2185)] = 110702, - [SMALL_STATE(2186)] = 110755, - [SMALL_STATE(2187)] = 110808, - [SMALL_STATE(2188)] = 110861, - [SMALL_STATE(2189)] = 110914, - [SMALL_STATE(2190)] = 110967, - [SMALL_STATE(2191)] = 111020, - [SMALL_STATE(2192)] = 111073, - [SMALL_STATE(2193)] = 111098, - [SMALL_STATE(2194)] = 111151, - [SMALL_STATE(2195)] = 111204, - [SMALL_STATE(2196)] = 111257, - [SMALL_STATE(2197)] = 111282, - [SMALL_STATE(2198)] = 111335, - [SMALL_STATE(2199)] = 111360, - [SMALL_STATE(2200)] = 111413, - [SMALL_STATE(2201)] = 111466, - [SMALL_STATE(2202)] = 111519, - [SMALL_STATE(2203)] = 111572, - [SMALL_STATE(2204)] = 111625, - [SMALL_STATE(2205)] = 111678, - [SMALL_STATE(2206)] = 111731, - [SMALL_STATE(2207)] = 111756, - [SMALL_STATE(2208)] = 111809, - [SMALL_STATE(2209)] = 111862, - [SMALL_STATE(2210)] = 111915, - [SMALL_STATE(2211)] = 111968, - [SMALL_STATE(2212)] = 112021, - [SMALL_STATE(2213)] = 112074, - [SMALL_STATE(2214)] = 112127, - [SMALL_STATE(2215)] = 112180, - [SMALL_STATE(2216)] = 112233, - [SMALL_STATE(2217)] = 112286, - [SMALL_STATE(2218)] = 112311, - [SMALL_STATE(2219)] = 112364, - [SMALL_STATE(2220)] = 112417, - [SMALL_STATE(2221)] = 112442, - [SMALL_STATE(2222)] = 112467, - [SMALL_STATE(2223)] = 112492, - [SMALL_STATE(2224)] = 112545, - [SMALL_STATE(2225)] = 112570, - [SMALL_STATE(2226)] = 112595, - [SMALL_STATE(2227)] = 112646, - [SMALL_STATE(2228)] = 112699, - [SMALL_STATE(2229)] = 112752, - [SMALL_STATE(2230)] = 112777, - [SMALL_STATE(2231)] = 112802, - [SMALL_STATE(2232)] = 112827, - [SMALL_STATE(2233)] = 112852, - [SMALL_STATE(2234)] = 112877, - [SMALL_STATE(2235)] = 112902, - [SMALL_STATE(2236)] = 112955, - [SMALL_STATE(2237)] = 112980, - [SMALL_STATE(2238)] = 113005, - [SMALL_STATE(2239)] = 113030, - [SMALL_STATE(2240)] = 113081, - [SMALL_STATE(2241)] = 113134, - [SMALL_STATE(2242)] = 113187, - [SMALL_STATE(2243)] = 113240, - [SMALL_STATE(2244)] = 113265, - [SMALL_STATE(2245)] = 113318, - [SMALL_STATE(2246)] = 113371, - [SMALL_STATE(2247)] = 113424, - [SMALL_STATE(2248)] = 113477, - [SMALL_STATE(2249)] = 113530, - [SMALL_STATE(2250)] = 113583, - [SMALL_STATE(2251)] = 113608, - [SMALL_STATE(2252)] = 113661, - [SMALL_STATE(2253)] = 113712, - [SMALL_STATE(2254)] = 113763, - [SMALL_STATE(2255)] = 113816, - [SMALL_STATE(2256)] = 113869, - [SMALL_STATE(2257)] = 113922, - [SMALL_STATE(2258)] = 113975, - [SMALL_STATE(2259)] = 114028, - [SMALL_STATE(2260)] = 114081, - [SMALL_STATE(2261)] = 114134, - [SMALL_STATE(2262)] = 114187, - [SMALL_STATE(2263)] = 114240, - [SMALL_STATE(2264)] = 114293, - [SMALL_STATE(2265)] = 114318, - [SMALL_STATE(2266)] = 114371, - [SMALL_STATE(2267)] = 114424, - [SMALL_STATE(2268)] = 114477, - [SMALL_STATE(2269)] = 114530, - [SMALL_STATE(2270)] = 114583, - [SMALL_STATE(2271)] = 114636, - [SMALL_STATE(2272)] = 114689, - [SMALL_STATE(2273)] = 114742, - [SMALL_STATE(2274)] = 114793, - [SMALL_STATE(2275)] = 114846, - [SMALL_STATE(2276)] = 114897, - [SMALL_STATE(2277)] = 114950, - [SMALL_STATE(2278)] = 115001, - [SMALL_STATE(2279)] = 115026, - [SMALL_STATE(2280)] = 115077, - [SMALL_STATE(2281)] = 115102, - [SMALL_STATE(2282)] = 115155, - [SMALL_STATE(2283)] = 115208, - [SMALL_STATE(2284)] = 115261, - [SMALL_STATE(2285)] = 115314, - [SMALL_STATE(2286)] = 115367, - [SMALL_STATE(2287)] = 115392, - [SMALL_STATE(2288)] = 115445, - [SMALL_STATE(2289)] = 115498, - [SMALL_STATE(2290)] = 115551, - [SMALL_STATE(2291)] = 115576, - [SMALL_STATE(2292)] = 115629, - [SMALL_STATE(2293)] = 115682, - [SMALL_STATE(2294)] = 115707, - [SMALL_STATE(2295)] = 115732, - [SMALL_STATE(2296)] = 115785, - [SMALL_STATE(2297)] = 115810, - [SMALL_STATE(2298)] = 115835, - [SMALL_STATE(2299)] = 115860, - [SMALL_STATE(2300)] = 115885, - [SMALL_STATE(2301)] = 115938, - [SMALL_STATE(2302)] = 115963, - [SMALL_STATE(2303)] = 115988, - [SMALL_STATE(2304)] = 116013, - [SMALL_STATE(2305)] = 116037, - [SMALL_STATE(2306)] = 116061, - [SMALL_STATE(2307)] = 116085, - [SMALL_STATE(2308)] = 116109, - [SMALL_STATE(2309)] = 116133, - [SMALL_STATE(2310)] = 116157, - [SMALL_STATE(2311)] = 116181, - [SMALL_STATE(2312)] = 116205, - [SMALL_STATE(2313)] = 116229, - [SMALL_STATE(2314)] = 116253, - [SMALL_STATE(2315)] = 116277, - [SMALL_STATE(2316)] = 116301, - [SMALL_STATE(2317)] = 116325, - [SMALL_STATE(2318)] = 116349, - [SMALL_STATE(2319)] = 116373, - [SMALL_STATE(2320)] = 116397, - [SMALL_STATE(2321)] = 116421, - [SMALL_STATE(2322)] = 116445, - [SMALL_STATE(2323)] = 116469, - [SMALL_STATE(2324)] = 116493, - [SMALL_STATE(2325)] = 116517, - [SMALL_STATE(2326)] = 116541, - [SMALL_STATE(2327)] = 116565, - [SMALL_STATE(2328)] = 116589, - [SMALL_STATE(2329)] = 116613, - [SMALL_STATE(2330)] = 116637, - [SMALL_STATE(2331)] = 116663, - [SMALL_STATE(2332)] = 116687, - [SMALL_STATE(2333)] = 116711, - [SMALL_STATE(2334)] = 116738, - [SMALL_STATE(2335)] = 116763, - [SMALL_STATE(2336)] = 116788, - [SMALL_STATE(2337)] = 116813, - [SMALL_STATE(2338)] = 116837, - [SMALL_STATE(2339)] = 116861, - [SMALL_STATE(2340)] = 116885, - [SMALL_STATE(2341)] = 116909, - [SMALL_STATE(2342)] = 116933, - [SMALL_STATE(2343)] = 116957, - [SMALL_STATE(2344)] = 116981, - [SMALL_STATE(2345)] = 117005, - [SMALL_STATE(2346)] = 117029, - [SMALL_STATE(2347)] = 117053, - [SMALL_STATE(2348)] = 117077, - [SMALL_STATE(2349)] = 117101, - [SMALL_STATE(2350)] = 117127, - [SMALL_STATE(2351)] = 117151, - [SMALL_STATE(2352)] = 117175, - [SMALL_STATE(2353)] = 117199, - [SMALL_STATE(2354)] = 117223, - [SMALL_STATE(2355)] = 117247, - [SMALL_STATE(2356)] = 117271, - [SMALL_STATE(2357)] = 117314, - [SMALL_STATE(2358)] = 117357, - [SMALL_STATE(2359)] = 117400, - [SMALL_STATE(2360)] = 117443, - [SMALL_STATE(2361)] = 117486, - [SMALL_STATE(2362)] = 117529, - [SMALL_STATE(2363)] = 117572, - [SMALL_STATE(2364)] = 117615, - [SMALL_STATE(2365)] = 117658, - [SMALL_STATE(2366)] = 117701, - [SMALL_STATE(2367)] = 117744, - [SMALL_STATE(2368)] = 117787, - [SMALL_STATE(2369)] = 117830, - [SMALL_STATE(2370)] = 117873, - [SMALL_STATE(2371)] = 117916, - [SMALL_STATE(2372)] = 117959, - [SMALL_STATE(2373)] = 118002, - [SMALL_STATE(2374)] = 118045, - [SMALL_STATE(2375)] = 118088, - [SMALL_STATE(2376)] = 118131, - [SMALL_STATE(2377)] = 118174, - [SMALL_STATE(2378)] = 118217, - [SMALL_STATE(2379)] = 118260, - [SMALL_STATE(2380)] = 118303, - [SMALL_STATE(2381)] = 118346, - [SMALL_STATE(2382)] = 118389, - [SMALL_STATE(2383)] = 118432, - [SMALL_STATE(2384)] = 118475, - [SMALL_STATE(2385)] = 118518, - [SMALL_STATE(2386)] = 118561, - [SMALL_STATE(2387)] = 118604, - [SMALL_STATE(2388)] = 118647, - [SMALL_STATE(2389)] = 118690, - [SMALL_STATE(2390)] = 118733, - [SMALL_STATE(2391)] = 118776, - [SMALL_STATE(2392)] = 118819, - [SMALL_STATE(2393)] = 118862, - [SMALL_STATE(2394)] = 118905, - [SMALL_STATE(2395)] = 118948, - [SMALL_STATE(2396)] = 118991, - [SMALL_STATE(2397)] = 119034, - [SMALL_STATE(2398)] = 119077, - [SMALL_STATE(2399)] = 119120, - [SMALL_STATE(2400)] = 119163, - [SMALL_STATE(2401)] = 119206, - [SMALL_STATE(2402)] = 119249, - [SMALL_STATE(2403)] = 119292, - [SMALL_STATE(2404)] = 119335, - [SMALL_STATE(2405)] = 119378, - [SMALL_STATE(2406)] = 119421, - [SMALL_STATE(2407)] = 119464, - [SMALL_STATE(2408)] = 119507, - [SMALL_STATE(2409)] = 119550, - [SMALL_STATE(2410)] = 119593, - [SMALL_STATE(2411)] = 119636, - [SMALL_STATE(2412)] = 119679, - [SMALL_STATE(2413)] = 119722, - [SMALL_STATE(2414)] = 119765, - [SMALL_STATE(2415)] = 119808, - [SMALL_STATE(2416)] = 119851, - [SMALL_STATE(2417)] = 119894, - [SMALL_STATE(2418)] = 119917, - [SMALL_STATE(2419)] = 119960, - [SMALL_STATE(2420)] = 120003, - [SMALL_STATE(2421)] = 120046, - [SMALL_STATE(2422)] = 120089, - [SMALL_STATE(2423)] = 120112, - [SMALL_STATE(2424)] = 120155, - [SMALL_STATE(2425)] = 120198, - [SMALL_STATE(2426)] = 120241, - [SMALL_STATE(2427)] = 120284, - [SMALL_STATE(2428)] = 120327, - [SMALL_STATE(2429)] = 120370, - [SMALL_STATE(2430)] = 120413, - [SMALL_STATE(2431)] = 120456, - [SMALL_STATE(2432)] = 120499, - [SMALL_STATE(2433)] = 120542, - [SMALL_STATE(2434)] = 120585, - [SMALL_STATE(2435)] = 120628, - [SMALL_STATE(2436)] = 120671, - [SMALL_STATE(2437)] = 120714, - [SMALL_STATE(2438)] = 120757, - [SMALL_STATE(2439)] = 120800, - [SMALL_STATE(2440)] = 120843, - [SMALL_STATE(2441)] = 120886, - [SMALL_STATE(2442)] = 120929, - [SMALL_STATE(2443)] = 120972, - [SMALL_STATE(2444)] = 121015, - [SMALL_STATE(2445)] = 121058, - [SMALL_STATE(2446)] = 121101, - [SMALL_STATE(2447)] = 121144, - [SMALL_STATE(2448)] = 121187, - [SMALL_STATE(2449)] = 121230, - [SMALL_STATE(2450)] = 121273, - [SMALL_STATE(2451)] = 121316, - [SMALL_STATE(2452)] = 121359, - [SMALL_STATE(2453)] = 121402, - [SMALL_STATE(2454)] = 121445, - [SMALL_STATE(2455)] = 121488, - [SMALL_STATE(2456)] = 121531, - [SMALL_STATE(2457)] = 121574, - [SMALL_STATE(2458)] = 121617, - [SMALL_STATE(2459)] = 121660, - [SMALL_STATE(2460)] = 121703, - [SMALL_STATE(2461)] = 121746, - [SMALL_STATE(2462)] = 121789, - [SMALL_STATE(2463)] = 121832, - [SMALL_STATE(2464)] = 121875, - [SMALL_STATE(2465)] = 121918, - [SMALL_STATE(2466)] = 121961, - [SMALL_STATE(2467)] = 122004, - [SMALL_STATE(2468)] = 122047, - [SMALL_STATE(2469)] = 122090, - [SMALL_STATE(2470)] = 122133, - [SMALL_STATE(2471)] = 122176, - [SMALL_STATE(2472)] = 122219, - [SMALL_STATE(2473)] = 122262, - [SMALL_STATE(2474)] = 122305, - [SMALL_STATE(2475)] = 122348, - [SMALL_STATE(2476)] = 122391, - [SMALL_STATE(2477)] = 122434, - [SMALL_STATE(2478)] = 122477, - [SMALL_STATE(2479)] = 122520, - [SMALL_STATE(2480)] = 122563, - [SMALL_STATE(2481)] = 122606, - [SMALL_STATE(2482)] = 122649, - [SMALL_STATE(2483)] = 122692, - [SMALL_STATE(2484)] = 122735, - [SMALL_STATE(2485)] = 122778, - [SMALL_STATE(2486)] = 122821, - [SMALL_STATE(2487)] = 122864, - [SMALL_STATE(2488)] = 122907, - [SMALL_STATE(2489)] = 122950, - [SMALL_STATE(2490)] = 122993, - [SMALL_STATE(2491)] = 123036, - [SMALL_STATE(2492)] = 123079, - [SMALL_STATE(2493)] = 123122, - [SMALL_STATE(2494)] = 123165, - [SMALL_STATE(2495)] = 123208, - [SMALL_STATE(2496)] = 123251, - [SMALL_STATE(2497)] = 123294, - [SMALL_STATE(2498)] = 123337, - [SMALL_STATE(2499)] = 123380, - [SMALL_STATE(2500)] = 123423, - [SMALL_STATE(2501)] = 123466, - [SMALL_STATE(2502)] = 123509, - [SMALL_STATE(2503)] = 123552, - [SMALL_STATE(2504)] = 123595, - [SMALL_STATE(2505)] = 123638, - [SMALL_STATE(2506)] = 123681, - [SMALL_STATE(2507)] = 123724, - [SMALL_STATE(2508)] = 123767, - [SMALL_STATE(2509)] = 123810, - [SMALL_STATE(2510)] = 123853, - [SMALL_STATE(2511)] = 123896, - [SMALL_STATE(2512)] = 123939, - [SMALL_STATE(2513)] = 123982, - [SMALL_STATE(2514)] = 124025, - [SMALL_STATE(2515)] = 124068, - [SMALL_STATE(2516)] = 124111, - [SMALL_STATE(2517)] = 124154, - [SMALL_STATE(2518)] = 124197, - [SMALL_STATE(2519)] = 124240, - [SMALL_STATE(2520)] = 124283, - [SMALL_STATE(2521)] = 124326, - [SMALL_STATE(2522)] = 124369, - [SMALL_STATE(2523)] = 124412, - [SMALL_STATE(2524)] = 124455, - [SMALL_STATE(2525)] = 124498, - [SMALL_STATE(2526)] = 124541, - [SMALL_STATE(2527)] = 124584, - [SMALL_STATE(2528)] = 124627, - [SMALL_STATE(2529)] = 124670, - [SMALL_STATE(2530)] = 124713, - [SMALL_STATE(2531)] = 124756, - [SMALL_STATE(2532)] = 124799, - [SMALL_STATE(2533)] = 124842, - [SMALL_STATE(2534)] = 124885, - [SMALL_STATE(2535)] = 124928, - [SMALL_STATE(2536)] = 124971, - [SMALL_STATE(2537)] = 125014, - [SMALL_STATE(2538)] = 125057, - [SMALL_STATE(2539)] = 125100, - [SMALL_STATE(2540)] = 125143, - [SMALL_STATE(2541)] = 125186, - [SMALL_STATE(2542)] = 125229, - [SMALL_STATE(2543)] = 125272, - [SMALL_STATE(2544)] = 125315, - [SMALL_STATE(2545)] = 125358, - [SMALL_STATE(2546)] = 125401, - [SMALL_STATE(2547)] = 125442, - [SMALL_STATE(2548)] = 125485, - [SMALL_STATE(2549)] = 125528, - [SMALL_STATE(2550)] = 125571, - [SMALL_STATE(2551)] = 125614, - [SMALL_STATE(2552)] = 125657, - [SMALL_STATE(2553)] = 125700, - [SMALL_STATE(2554)] = 125743, - [SMALL_STATE(2555)] = 125786, - [SMALL_STATE(2556)] = 125829, - [SMALL_STATE(2557)] = 125872, - [SMALL_STATE(2558)] = 125915, - [SMALL_STATE(2559)] = 125958, - [SMALL_STATE(2560)] = 126001, - [SMALL_STATE(2561)] = 126044, - [SMALL_STATE(2562)] = 126087, - [SMALL_STATE(2563)] = 126130, - [SMALL_STATE(2564)] = 126173, - [SMALL_STATE(2565)] = 126216, - [SMALL_STATE(2566)] = 126259, - [SMALL_STATE(2567)] = 126302, - [SMALL_STATE(2568)] = 126345, - [SMALL_STATE(2569)] = 126388, - [SMALL_STATE(2570)] = 126431, - [SMALL_STATE(2571)] = 126474, - [SMALL_STATE(2572)] = 126517, - [SMALL_STATE(2573)] = 126560, - [SMALL_STATE(2574)] = 126603, - [SMALL_STATE(2575)] = 126646, - [SMALL_STATE(2576)] = 126689, - [SMALL_STATE(2577)] = 126732, - [SMALL_STATE(2578)] = 126775, - [SMALL_STATE(2579)] = 126818, - [SMALL_STATE(2580)] = 126861, - [SMALL_STATE(2581)] = 126904, - [SMALL_STATE(2582)] = 126947, - [SMALL_STATE(2583)] = 126990, - [SMALL_STATE(2584)] = 127033, - [SMALL_STATE(2585)] = 127076, - [SMALL_STATE(2586)] = 127119, - [SMALL_STATE(2587)] = 127162, - [SMALL_STATE(2588)] = 127205, - [SMALL_STATE(2589)] = 127248, - [SMALL_STATE(2590)] = 127291, - [SMALL_STATE(2591)] = 127334, - [SMALL_STATE(2592)] = 127377, - [SMALL_STATE(2593)] = 127420, - [SMALL_STATE(2594)] = 127463, - [SMALL_STATE(2595)] = 127506, - [SMALL_STATE(2596)] = 127549, - [SMALL_STATE(2597)] = 127592, - [SMALL_STATE(2598)] = 127635, - [SMALL_STATE(2599)] = 127678, - [SMALL_STATE(2600)] = 127721, - [SMALL_STATE(2601)] = 127764, - [SMALL_STATE(2602)] = 127807, - [SMALL_STATE(2603)] = 127850, - [SMALL_STATE(2604)] = 127893, - [SMALL_STATE(2605)] = 127936, - [SMALL_STATE(2606)] = 127979, - [SMALL_STATE(2607)] = 128022, - [SMALL_STATE(2608)] = 128065, - [SMALL_STATE(2609)] = 128108, - [SMALL_STATE(2610)] = 128151, - [SMALL_STATE(2611)] = 128194, - [SMALL_STATE(2612)] = 128237, - [SMALL_STATE(2613)] = 128280, - [SMALL_STATE(2614)] = 128323, - [SMALL_STATE(2615)] = 128366, - [SMALL_STATE(2616)] = 128409, - [SMALL_STATE(2617)] = 128452, - [SMALL_STATE(2618)] = 128495, - [SMALL_STATE(2619)] = 128538, - [SMALL_STATE(2620)] = 128581, - [SMALL_STATE(2621)] = 128624, - [SMALL_STATE(2622)] = 128667, - [SMALL_STATE(2623)] = 128710, - [SMALL_STATE(2624)] = 128753, - [SMALL_STATE(2625)] = 128796, - [SMALL_STATE(2626)] = 128839, - [SMALL_STATE(2627)] = 128882, - [SMALL_STATE(2628)] = 128925, - [SMALL_STATE(2629)] = 128968, - [SMALL_STATE(2630)] = 129011, - [SMALL_STATE(2631)] = 129054, - [SMALL_STATE(2632)] = 129097, - [SMALL_STATE(2633)] = 129140, - [SMALL_STATE(2634)] = 129183, - [SMALL_STATE(2635)] = 129226, - [SMALL_STATE(2636)] = 129269, - [SMALL_STATE(2637)] = 129312, - [SMALL_STATE(2638)] = 129355, - [SMALL_STATE(2639)] = 129398, - [SMALL_STATE(2640)] = 129441, - [SMALL_STATE(2641)] = 129484, - [SMALL_STATE(2642)] = 129527, - [SMALL_STATE(2643)] = 129570, - [SMALL_STATE(2644)] = 129613, - [SMALL_STATE(2645)] = 129656, - [SMALL_STATE(2646)] = 129699, - [SMALL_STATE(2647)] = 129742, - [SMALL_STATE(2648)] = 129785, - [SMALL_STATE(2649)] = 129828, - [SMALL_STATE(2650)] = 129871, - [SMALL_STATE(2651)] = 129914, - [SMALL_STATE(2652)] = 129957, - [SMALL_STATE(2653)] = 130000, - [SMALL_STATE(2654)] = 130043, - [SMALL_STATE(2655)] = 130086, - [SMALL_STATE(2656)] = 130129, - [SMALL_STATE(2657)] = 130172, - [SMALL_STATE(2658)] = 130215, - [SMALL_STATE(2659)] = 130258, - [SMALL_STATE(2660)] = 130281, - [SMALL_STATE(2661)] = 130324, - [SMALL_STATE(2662)] = 130347, - [SMALL_STATE(2663)] = 130390, - [SMALL_STATE(2664)] = 130433, - [SMALL_STATE(2665)] = 130476, - [SMALL_STATE(2666)] = 130519, - [SMALL_STATE(2667)] = 130562, - [SMALL_STATE(2668)] = 130605, - [SMALL_STATE(2669)] = 130646, - [SMALL_STATE(2670)] = 130689, - [SMALL_STATE(2671)] = 130732, - [SMALL_STATE(2672)] = 130775, - [SMALL_STATE(2673)] = 130818, - [SMALL_STATE(2674)] = 130861, - [SMALL_STATE(2675)] = 130904, - [SMALL_STATE(2676)] = 130947, - [SMALL_STATE(2677)] = 130990, - [SMALL_STATE(2678)] = 131033, - [SMALL_STATE(2679)] = 131076, - [SMALL_STATE(2680)] = 131119, - [SMALL_STATE(2681)] = 131162, - [SMALL_STATE(2682)] = 131205, - [SMALL_STATE(2683)] = 131248, - [SMALL_STATE(2684)] = 131291, - [SMALL_STATE(2685)] = 131334, - [SMALL_STATE(2686)] = 131377, - [SMALL_STATE(2687)] = 131420, - [SMALL_STATE(2688)] = 131463, - [SMALL_STATE(2689)] = 131506, - [SMALL_STATE(2690)] = 131549, - [SMALL_STATE(2691)] = 131592, - [SMALL_STATE(2692)] = 131635, - [SMALL_STATE(2693)] = 131678, - [SMALL_STATE(2694)] = 131721, - [SMALL_STATE(2695)] = 131764, - [SMALL_STATE(2696)] = 131807, - [SMALL_STATE(2697)] = 131850, - [SMALL_STATE(2698)] = 131893, - [SMALL_STATE(2699)] = 131936, - [SMALL_STATE(2700)] = 131979, - [SMALL_STATE(2701)] = 132022, - [SMALL_STATE(2702)] = 132065, - [SMALL_STATE(2703)] = 132108, - [SMALL_STATE(2704)] = 132151, - [SMALL_STATE(2705)] = 132194, - [SMALL_STATE(2706)] = 132237, - [SMALL_STATE(2707)] = 132280, - [SMALL_STATE(2708)] = 132323, - [SMALL_STATE(2709)] = 132366, - [SMALL_STATE(2710)] = 132409, - [SMALL_STATE(2711)] = 132452, - [SMALL_STATE(2712)] = 132495, - [SMALL_STATE(2713)] = 132538, - [SMALL_STATE(2714)] = 132581, - [SMALL_STATE(2715)] = 132604, - [SMALL_STATE(2716)] = 132647, - [SMALL_STATE(2717)] = 132690, - [SMALL_STATE(2718)] = 132733, - [SMALL_STATE(2719)] = 132776, - [SMALL_STATE(2720)] = 132819, - [SMALL_STATE(2721)] = 132842, - [SMALL_STATE(2722)] = 132885, - [SMALL_STATE(2723)] = 132928, - [SMALL_STATE(2724)] = 132971, - [SMALL_STATE(2725)] = 132994, - [SMALL_STATE(2726)] = 133037, - [SMALL_STATE(2727)] = 133080, - [SMALL_STATE(2728)] = 133123, - [SMALL_STATE(2729)] = 133146, - [SMALL_STATE(2730)] = 133189, - [SMALL_STATE(2731)] = 133230, - [SMALL_STATE(2732)] = 133257, - [SMALL_STATE(2733)] = 133300, - [SMALL_STATE(2734)] = 133343, - [SMALL_STATE(2735)] = 133386, - [SMALL_STATE(2736)] = 133429, - [SMALL_STATE(2737)] = 133472, - [SMALL_STATE(2738)] = 133499, - [SMALL_STATE(2739)] = 133542, - [SMALL_STATE(2740)] = 133565, - [SMALL_STATE(2741)] = 133608, - [SMALL_STATE(2742)] = 133651, - [SMALL_STATE(2743)] = 133694, - [SMALL_STATE(2744)] = 133737, - [SMALL_STATE(2745)] = 133760, - [SMALL_STATE(2746)] = 133783, - [SMALL_STATE(2747)] = 133826, - [SMALL_STATE(2748)] = 133869, - [SMALL_STATE(2749)] = 133912, - [SMALL_STATE(2750)] = 133955, - [SMALL_STATE(2751)] = 133998, - [SMALL_STATE(2752)] = 134041, - [SMALL_STATE(2753)] = 134084, - [SMALL_STATE(2754)] = 134127, - [SMALL_STATE(2755)] = 134170, - [SMALL_STATE(2756)] = 134213, - [SMALL_STATE(2757)] = 134256, - [SMALL_STATE(2758)] = 134299, - [SMALL_STATE(2759)] = 134342, - [SMALL_STATE(2760)] = 134385, - [SMALL_STATE(2761)] = 134428, - [SMALL_STATE(2762)] = 134471, - [SMALL_STATE(2763)] = 134514, - [SMALL_STATE(2764)] = 134557, - [SMALL_STATE(2765)] = 134600, - [SMALL_STATE(2766)] = 134623, - [SMALL_STATE(2767)] = 134666, - [SMALL_STATE(2768)] = 134709, - [SMALL_STATE(2769)] = 134752, - [SMALL_STATE(2770)] = 134775, - [SMALL_STATE(2771)] = 134818, - [SMALL_STATE(2772)] = 134841, - [SMALL_STATE(2773)] = 134884, - [SMALL_STATE(2774)] = 134927, - [SMALL_STATE(2775)] = 134947, - [SMALL_STATE(2776)] = 134971, - [SMALL_STATE(2777)] = 135011, - [SMALL_STATE(2778)] = 135031, - [SMALL_STATE(2779)] = 135051, - [SMALL_STATE(2780)] = 135071, - [SMALL_STATE(2781)] = 135111, - [SMALL_STATE(2782)] = 135131, - [SMALL_STATE(2783)] = 135151, - [SMALL_STATE(2784)] = 135171, - [SMALL_STATE(2785)] = 135191, - [SMALL_STATE(2786)] = 135211, - [SMALL_STATE(2787)] = 135231, - [SMALL_STATE(2788)] = 135251, - [SMALL_STATE(2789)] = 135271, - [SMALL_STATE(2790)] = 135291, - [SMALL_STATE(2791)] = 135331, - [SMALL_STATE(2792)] = 135357, - [SMALL_STATE(2793)] = 135377, - [SMALL_STATE(2794)] = 135397, - [SMALL_STATE(2795)] = 135417, - [SMALL_STATE(2796)] = 135437, - [SMALL_STATE(2797)] = 135457, - [SMALL_STATE(2798)] = 135477, - [SMALL_STATE(2799)] = 135497, - [SMALL_STATE(2800)] = 135517, - [SMALL_STATE(2801)] = 135537, - [SMALL_STATE(2802)] = 135557, - [SMALL_STATE(2803)] = 135583, - [SMALL_STATE(2804)] = 135603, - [SMALL_STATE(2805)] = 135623, - [SMALL_STATE(2806)] = 135643, - [SMALL_STATE(2807)] = 135663, - [SMALL_STATE(2808)] = 135683, - [SMALL_STATE(2809)] = 135703, - [SMALL_STATE(2810)] = 135723, - [SMALL_STATE(2811)] = 135743, - [SMALL_STATE(2812)] = 135763, - [SMALL_STATE(2813)] = 135783, - [SMALL_STATE(2814)] = 135803, - [SMALL_STATE(2815)] = 135823, - [SMALL_STATE(2816)] = 135843, - [SMALL_STATE(2817)] = 135863, - [SMALL_STATE(2818)] = 135883, - [SMALL_STATE(2819)] = 135903, - [SMALL_STATE(2820)] = 135923, - [SMALL_STATE(2821)] = 135943, - [SMALL_STATE(2822)] = 135963, - [SMALL_STATE(2823)] = 135983, - [SMALL_STATE(2824)] = 136003, - [SMALL_STATE(2825)] = 136023, - [SMALL_STATE(2826)] = 136043, - [SMALL_STATE(2827)] = 136063, - [SMALL_STATE(2828)] = 136083, - [SMALL_STATE(2829)] = 136103, - [SMALL_STATE(2830)] = 136123, - [SMALL_STATE(2831)] = 136143, - [SMALL_STATE(2832)] = 136163, - [SMALL_STATE(2833)] = 136183, - [SMALL_STATE(2834)] = 136203, - [SMALL_STATE(2835)] = 136223, - [SMALL_STATE(2836)] = 136243, - [SMALL_STATE(2837)] = 136263, - [SMALL_STATE(2838)] = 136283, - [SMALL_STATE(2839)] = 136303, - [SMALL_STATE(2840)] = 136323, - [SMALL_STATE(2841)] = 136347, - [SMALL_STATE(2842)] = 136366, - [SMALL_STATE(2843)] = 136385, - [SMALL_STATE(2844)] = 136404, - [SMALL_STATE(2845)] = 136423, - [SMALL_STATE(2846)] = 136442, - [SMALL_STATE(2847)] = 136461, - [SMALL_STATE(2848)] = 136480, - [SMALL_STATE(2849)] = 136499, - [SMALL_STATE(2850)] = 136518, - [SMALL_STATE(2851)] = 136537, - [SMALL_STATE(2852)] = 136556, - [SMALL_STATE(2853)] = 136575, - [SMALL_STATE(2854)] = 136594, - [SMALL_STATE(2855)] = 136613, - [SMALL_STATE(2856)] = 136632, - [SMALL_STATE(2857)] = 136651, - [SMALL_STATE(2858)] = 136670, - [SMALL_STATE(2859)] = 136689, - [SMALL_STATE(2860)] = 136708, - [SMALL_STATE(2861)] = 136727, - [SMALL_STATE(2862)] = 136746, - [SMALL_STATE(2863)] = 136785, - [SMALL_STATE(2864)] = 136804, - [SMALL_STATE(2865)] = 136843, - [SMALL_STATE(2866)] = 136862, - [SMALL_STATE(2867)] = 136881, - [SMALL_STATE(2868)] = 136900, - [SMALL_STATE(2869)] = 136919, - [SMALL_STATE(2870)] = 136938, - [SMALL_STATE(2871)] = 136957, - [SMALL_STATE(2872)] = 136996, - [SMALL_STATE(2873)] = 137015, - [SMALL_STATE(2874)] = 137034, - [SMALL_STATE(2875)] = 137053, - [SMALL_STATE(2876)] = 137072, - [SMALL_STATE(2877)] = 137091, - [SMALL_STATE(2878)] = 137110, - [SMALL_STATE(2879)] = 137135, - [SMALL_STATE(2880)] = 137154, - [SMALL_STATE(2881)] = 137173, - [SMALL_STATE(2882)] = 137192, - [SMALL_STATE(2883)] = 137211, - [SMALL_STATE(2884)] = 137230, - [SMALL_STATE(2885)] = 137249, - [SMALL_STATE(2886)] = 137268, - [SMALL_STATE(2887)] = 137293, - [SMALL_STATE(2888)] = 137312, - [SMALL_STATE(2889)] = 137331, - [SMALL_STATE(2890)] = 137350, - [SMALL_STATE(2891)] = 137369, - [SMALL_STATE(2892)] = 137388, - [SMALL_STATE(2893)] = 137407, - [SMALL_STATE(2894)] = 137426, - [SMALL_STATE(2895)] = 137456, - [SMALL_STATE(2896)] = 137486, - [SMALL_STATE(2897)] = 137516, - [SMALL_STATE(2898)] = 137551, - [SMALL_STATE(2899)] = 137586, - [SMALL_STATE(2900)] = 137621, - [SMALL_STATE(2901)] = 137656, - [SMALL_STATE(2902)] = 137691, - [SMALL_STATE(2903)] = 137726, - [SMALL_STATE(2904)] = 137761, - [SMALL_STATE(2905)] = 137796, - [SMALL_STATE(2906)] = 137831, - [SMALL_STATE(2907)] = 137866, - [SMALL_STATE(2908)] = 137901, - [SMALL_STATE(2909)] = 137936, - [SMALL_STATE(2910)] = 137971, - [SMALL_STATE(2911)] = 138006, - [SMALL_STATE(2912)] = 138041, - [SMALL_STATE(2913)] = 138076, - [SMALL_STATE(2914)] = 138111, - [SMALL_STATE(2915)] = 138146, - [SMALL_STATE(2916)] = 138181, - [SMALL_STATE(2917)] = 138216, - [SMALL_STATE(2918)] = 138251, - [SMALL_STATE(2919)] = 138286, - [SMALL_STATE(2920)] = 138321, - [SMALL_STATE(2921)] = 138356, - [SMALL_STATE(2922)] = 138391, - [SMALL_STATE(2923)] = 138426, - [SMALL_STATE(2924)] = 138461, - [SMALL_STATE(2925)] = 138496, - [SMALL_STATE(2926)] = 138531, - [SMALL_STATE(2927)] = 138566, - [SMALL_STATE(2928)] = 138601, - [SMALL_STATE(2929)] = 138636, - [SMALL_STATE(2930)] = 138671, - [SMALL_STATE(2931)] = 138706, - [SMALL_STATE(2932)] = 138741, - [SMALL_STATE(2933)] = 138776, - [SMALL_STATE(2934)] = 138811, - [SMALL_STATE(2935)] = 138827, - [SMALL_STATE(2936)] = 138843, - [SMALL_STATE(2937)] = 138859, - [SMALL_STATE(2938)] = 138875, - [SMALL_STATE(2939)] = 138891, - [SMALL_STATE(2940)] = 138907, - [SMALL_STATE(2941)] = 138923, - [SMALL_STATE(2942)] = 138939, - [SMALL_STATE(2943)] = 138954, - [SMALL_STATE(2944)] = 138969, - [SMALL_STATE(2945)] = 138984, - [SMALL_STATE(2946)] = 138999, - [SMALL_STATE(2947)] = 139014, - [SMALL_STATE(2948)] = 139029, - [SMALL_STATE(2949)] = 139044, - [SMALL_STATE(2950)] = 139059, - [SMALL_STATE(2951)] = 139074, - [SMALL_STATE(2952)] = 139089, - [SMALL_STATE(2953)] = 139104, - [SMALL_STATE(2954)] = 139119, - [SMALL_STATE(2955)] = 139134, - [SMALL_STATE(2956)] = 139149, - [SMALL_STATE(2957)] = 139164, - [SMALL_STATE(2958)] = 139179, - [SMALL_STATE(2959)] = 139194, - [SMALL_STATE(2960)] = 139209, - [SMALL_STATE(2961)] = 139224, - [SMALL_STATE(2962)] = 139239, - [SMALL_STATE(2963)] = 139254, - [SMALL_STATE(2964)] = 139269, - [SMALL_STATE(2965)] = 139283, - [SMALL_STATE(2966)] = 139297, - [SMALL_STATE(2967)] = 139311, - [SMALL_STATE(2968)] = 139325, - [SMALL_STATE(2969)] = 139339, - [SMALL_STATE(2970)] = 139361, - [SMALL_STATE(2971)] = 139375, - [SMALL_STATE(2972)] = 139397, - [SMALL_STATE(2973)] = 139411, - [SMALL_STATE(2974)] = 139425, - [SMALL_STATE(2975)] = 139447, - [SMALL_STATE(2976)] = 139469, - [SMALL_STATE(2977)] = 139490, - [SMALL_STATE(2978)] = 139515, - [SMALL_STATE(2979)] = 139540, - [SMALL_STATE(2980)] = 139558, - [SMALL_STATE(2981)] = 139570, - [SMALL_STATE(2982)] = 139588, - [SMALL_STATE(2983)] = 139606, - [SMALL_STATE(2984)] = 139624, - [SMALL_STATE(2985)] = 139642, - [SMALL_STATE(2986)] = 139660, - [SMALL_STATE(2987)] = 139678, - [SMALL_STATE(2988)] = 139696, - [SMALL_STATE(2989)] = 139714, - [SMALL_STATE(2990)] = 139726, - [SMALL_STATE(2991)] = 139742, - [SMALL_STATE(2992)] = 139754, - [SMALL_STATE(2993)] = 139776, - [SMALL_STATE(2994)] = 139794, - [SMALL_STATE(2995)] = 139812, - [SMALL_STATE(2996)] = 139830, - [SMALL_STATE(2997)] = 139848, - [SMALL_STATE(2998)] = 139866, - [SMALL_STATE(2999)] = 139884, - [SMALL_STATE(3000)] = 139896, - [SMALL_STATE(3001)] = 139914, - [SMALL_STATE(3002)] = 139932, - [SMALL_STATE(3003)] = 139950, - [SMALL_STATE(3004)] = 139962, - [SMALL_STATE(3005)] = 139980, - [SMALL_STATE(3006)] = 139996, - [SMALL_STATE(3007)] = 140018, - [SMALL_STATE(3008)] = 140036, - [SMALL_STATE(3009)] = 140048, - [SMALL_STATE(3010)] = 140066, - [SMALL_STATE(3011)] = 140084, - [SMALL_STATE(3012)] = 140106, - [SMALL_STATE(3013)] = 140118, - [SMALL_STATE(3014)] = 140136, - [SMALL_STATE(3015)] = 140148, - [SMALL_STATE(3016)] = 140166, - [SMALL_STATE(3017)] = 140184, - [SMALL_STATE(3018)] = 140202, - [SMALL_STATE(3019)] = 140214, - [SMALL_STATE(3020)] = 140226, - [SMALL_STATE(3021)] = 140244, - [SMALL_STATE(3022)] = 140262, - [SMALL_STATE(3023)] = 140280, - [SMALL_STATE(3024)] = 140299, - [SMALL_STATE(3025)] = 140310, - [SMALL_STATE(3026)] = 140329, - [SMALL_STATE(3027)] = 140348, - [SMALL_STATE(3028)] = 140367, - [SMALL_STATE(3029)] = 140386, - [SMALL_STATE(3030)] = 140405, - [SMALL_STATE(3031)] = 140424, - [SMALL_STATE(3032)] = 140443, - [SMALL_STATE(3033)] = 140462, - [SMALL_STATE(3034)] = 140481, - [SMALL_STATE(3035)] = 140500, - [SMALL_STATE(3036)] = 140519, - [SMALL_STATE(3037)] = 140538, - [SMALL_STATE(3038)] = 140557, - [SMALL_STATE(3039)] = 140576, - [SMALL_STATE(3040)] = 140595, - [SMALL_STATE(3041)] = 140614, - [SMALL_STATE(3042)] = 140633, - [SMALL_STATE(3043)] = 140652, - [SMALL_STATE(3044)] = 140671, - [SMALL_STATE(3045)] = 140690, - [SMALL_STATE(3046)] = 140701, - [SMALL_STATE(3047)] = 140720, - [SMALL_STATE(3048)] = 140739, - [SMALL_STATE(3049)] = 140758, - [SMALL_STATE(3050)] = 140777, - [SMALL_STATE(3051)] = 140796, - [SMALL_STATE(3052)] = 140815, - [SMALL_STATE(3053)] = 140834, - [SMALL_STATE(3054)] = 140853, - [SMALL_STATE(3055)] = 140872, - [SMALL_STATE(3056)] = 140891, - [SMALL_STATE(3057)] = 140910, - [SMALL_STATE(3058)] = 140929, - [SMALL_STATE(3059)] = 140948, - [SMALL_STATE(3060)] = 140967, - [SMALL_STATE(3061)] = 140986, - [SMALL_STATE(3062)] = 140997, - [SMALL_STATE(3063)] = 141016, - [SMALL_STATE(3064)] = 141035, - [SMALL_STATE(3065)] = 141054, - [SMALL_STATE(3066)] = 141073, - [SMALL_STATE(3067)] = 141092, - [SMALL_STATE(3068)] = 141103, - [SMALL_STATE(3069)] = 141122, - [SMALL_STATE(3070)] = 141141, - [SMALL_STATE(3071)] = 141160, - [SMALL_STATE(3072)] = 141179, - [SMALL_STATE(3073)] = 141198, - [SMALL_STATE(3074)] = 141209, - [SMALL_STATE(3075)] = 141228, - [SMALL_STATE(3076)] = 141247, - [SMALL_STATE(3077)] = 141266, - [SMALL_STATE(3078)] = 141285, - [SMALL_STATE(3079)] = 141304, - [SMALL_STATE(3080)] = 141323, - [SMALL_STATE(3081)] = 141342, - [SMALL_STATE(3082)] = 141361, - [SMALL_STATE(3083)] = 141380, - [SMALL_STATE(3084)] = 141391, - [SMALL_STATE(3085)] = 141410, - [SMALL_STATE(3086)] = 141429, - [SMALL_STATE(3087)] = 141448, - [SMALL_STATE(3088)] = 141467, - [SMALL_STATE(3089)] = 141478, - [SMALL_STATE(3090)] = 141497, - [SMALL_STATE(3091)] = 141510, - [SMALL_STATE(3092)] = 141521, - [SMALL_STATE(3093)] = 141532, - [SMALL_STATE(3094)] = 141551, - [SMALL_STATE(3095)] = 141566, - [SMALL_STATE(3096)] = 141585, - [SMALL_STATE(3097)] = 141604, - [SMALL_STATE(3098)] = 141623, - [SMALL_STATE(3099)] = 141642, - [SMALL_STATE(3100)] = 141661, - [SMALL_STATE(3101)] = 141680, - [SMALL_STATE(3102)] = 141699, - [SMALL_STATE(3103)] = 141718, - [SMALL_STATE(3104)] = 141737, - [SMALL_STATE(3105)] = 141756, - [SMALL_STATE(3106)] = 141775, - [SMALL_STATE(3107)] = 141794, - [SMALL_STATE(3108)] = 141813, - [SMALL_STATE(3109)] = 141826, - [SMALL_STATE(3110)] = 141843, - [SMALL_STATE(3111)] = 141862, - [SMALL_STATE(3112)] = 141873, - [SMALL_STATE(3113)] = 141892, - [SMALL_STATE(3114)] = 141911, - [SMALL_STATE(3115)] = 141922, - [SMALL_STATE(3116)] = 141941, - [SMALL_STATE(3117)] = 141952, - [SMALL_STATE(3118)] = 141971, - [SMALL_STATE(3119)] = 141990, - [SMALL_STATE(3120)] = 142009, - [SMALL_STATE(3121)] = 142020, - [SMALL_STATE(3122)] = 142039, - [SMALL_STATE(3123)] = 142050, - [SMALL_STATE(3124)] = 142069, - [SMALL_STATE(3125)] = 142084, - [SMALL_STATE(3126)] = 142103, - [SMALL_STATE(3127)] = 142122, - [SMALL_STATE(3128)] = 142141, - [SMALL_STATE(3129)] = 142160, - [SMALL_STATE(3130)] = 142171, - [SMALL_STATE(3131)] = 142190, - [SMALL_STATE(3132)] = 142209, - [SMALL_STATE(3133)] = 142228, - [SMALL_STATE(3134)] = 142247, - [SMALL_STATE(3135)] = 142266, - [SMALL_STATE(3136)] = 142285, - [SMALL_STATE(3137)] = 142304, - [SMALL_STATE(3138)] = 142323, - [SMALL_STATE(3139)] = 142342, - [SMALL_STATE(3140)] = 142361, - [SMALL_STATE(3141)] = 142380, - [SMALL_STATE(3142)] = 142399, - [SMALL_STATE(3143)] = 142418, - [SMALL_STATE(3144)] = 142437, - [SMALL_STATE(3145)] = 142456, - [SMALL_STATE(3146)] = 142467, - [SMALL_STATE(3147)] = 142486, - [SMALL_STATE(3148)] = 142501, - [SMALL_STATE(3149)] = 142520, - [SMALL_STATE(3150)] = 142539, - [SMALL_STATE(3151)] = 142558, - [SMALL_STATE(3152)] = 142577, - [SMALL_STATE(3153)] = 142596, - [SMALL_STATE(3154)] = 142615, - [SMALL_STATE(3155)] = 142634, - [SMALL_STATE(3156)] = 142653, - [SMALL_STATE(3157)] = 142672, - [SMALL_STATE(3158)] = 142691, - [SMALL_STATE(3159)] = 142710, - [SMALL_STATE(3160)] = 142729, - [SMALL_STATE(3161)] = 142742, - [SMALL_STATE(3162)] = 142761, - [SMALL_STATE(3163)] = 142780, - [SMALL_STATE(3164)] = 142799, - [SMALL_STATE(3165)] = 142818, - [SMALL_STATE(3166)] = 142829, - [SMALL_STATE(3167)] = 142848, - [SMALL_STATE(3168)] = 142867, - [SMALL_STATE(3169)] = 142886, - [SMALL_STATE(3170)] = 142905, - [SMALL_STATE(3171)] = 142916, - [SMALL_STATE(3172)] = 142927, - [SMALL_STATE(3173)] = 142946, - [SMALL_STATE(3174)] = 142965, - [SMALL_STATE(3175)] = 142984, - [SMALL_STATE(3176)] = 143003, - [SMALL_STATE(3177)] = 143022, - [SMALL_STATE(3178)] = 143041, - [SMALL_STATE(3179)] = 143060, - [SMALL_STATE(3180)] = 143075, - [SMALL_STATE(3181)] = 143094, - [SMALL_STATE(3182)] = 143113, - [SMALL_STATE(3183)] = 143132, - [SMALL_STATE(3184)] = 143151, - [SMALL_STATE(3185)] = 143170, - [SMALL_STATE(3186)] = 143181, - [SMALL_STATE(3187)] = 143200, - [SMALL_STATE(3188)] = 143219, - [SMALL_STATE(3189)] = 143238, - [SMALL_STATE(3190)] = 143257, - [SMALL_STATE(3191)] = 143276, - [SMALL_STATE(3192)] = 143287, - [SMALL_STATE(3193)] = 143306, - [SMALL_STATE(3194)] = 143325, - [SMALL_STATE(3195)] = 143344, - [SMALL_STATE(3196)] = 143355, - [SMALL_STATE(3197)] = 143366, - [SMALL_STATE(3198)] = 143385, - [SMALL_STATE(3199)] = 143404, - [SMALL_STATE(3200)] = 143423, - [SMALL_STATE(3201)] = 143442, - [SMALL_STATE(3202)] = 143461, - [SMALL_STATE(3203)] = 143480, - [SMALL_STATE(3204)] = 143499, - [SMALL_STATE(3205)] = 143518, - [SMALL_STATE(3206)] = 143537, - [SMALL_STATE(3207)] = 143556, - [SMALL_STATE(3208)] = 143575, - [SMALL_STATE(3209)] = 143594, - [SMALL_STATE(3210)] = 143613, - [SMALL_STATE(3211)] = 143632, - [SMALL_STATE(3212)] = 143651, - [SMALL_STATE(3213)] = 143670, - [SMALL_STATE(3214)] = 143685, - [SMALL_STATE(3215)] = 143704, - [SMALL_STATE(3216)] = 143723, - [SMALL_STATE(3217)] = 143742, - [SMALL_STATE(3218)] = 143761, - [SMALL_STATE(3219)] = 143780, - [SMALL_STATE(3220)] = 143799, - [SMALL_STATE(3221)] = 143814, - [SMALL_STATE(3222)] = 143833, - [SMALL_STATE(3223)] = 143844, - [SMALL_STATE(3224)] = 143863, - [SMALL_STATE(3225)] = 143882, - [SMALL_STATE(3226)] = 143901, - [SMALL_STATE(3227)] = 143920, - [SMALL_STATE(3228)] = 143939, - [SMALL_STATE(3229)] = 143958, - [SMALL_STATE(3230)] = 143977, - [SMALL_STATE(3231)] = 143996, - [SMALL_STATE(3232)] = 144013, - [SMALL_STATE(3233)] = 144032, - [SMALL_STATE(3234)] = 144047, - [SMALL_STATE(3235)] = 144058, - [SMALL_STATE(3236)] = 144069, - [SMALL_STATE(3237)] = 144088, - [SMALL_STATE(3238)] = 144099, - [SMALL_STATE(3239)] = 144110, - [SMALL_STATE(3240)] = 144121, - [SMALL_STATE(3241)] = 144140, - [SMALL_STATE(3242)] = 144159, - [SMALL_STATE(3243)] = 144178, - [SMALL_STATE(3244)] = 144197, - [SMALL_STATE(3245)] = 144216, - [SMALL_STATE(3246)] = 144235, - [SMALL_STATE(3247)] = 144254, - [SMALL_STATE(3248)] = 144273, - [SMALL_STATE(3249)] = 144292, - [SMALL_STATE(3250)] = 144311, - [SMALL_STATE(3251)] = 144330, - [SMALL_STATE(3252)] = 144349, - [SMALL_STATE(3253)] = 144368, - [SMALL_STATE(3254)] = 144383, - [SMALL_STATE(3255)] = 144394, - [SMALL_STATE(3256)] = 144413, - [SMALL_STATE(3257)] = 144432, - [SMALL_STATE(3258)] = 144451, - [SMALL_STATE(3259)] = 144462, - [SMALL_STATE(3260)] = 144481, - [SMALL_STATE(3261)] = 144492, - [SMALL_STATE(3262)] = 144511, - [SMALL_STATE(3263)] = 144530, - [SMALL_STATE(3264)] = 144541, - [SMALL_STATE(3265)] = 144560, - [SMALL_STATE(3266)] = 144571, - [SMALL_STATE(3267)] = 144582, - [SMALL_STATE(3268)] = 144601, - [SMALL_STATE(3269)] = 144612, - [SMALL_STATE(3270)] = 144631, - [SMALL_STATE(3271)] = 144650, - [SMALL_STATE(3272)] = 144667, - [SMALL_STATE(3273)] = 144682, - [SMALL_STATE(3274)] = 144701, - [SMALL_STATE(3275)] = 144720, - [SMALL_STATE(3276)] = 144739, - [SMALL_STATE(3277)] = 144758, - [SMALL_STATE(3278)] = 144774, - [SMALL_STATE(3279)] = 144786, - [SMALL_STATE(3280)] = 144802, - [SMALL_STATE(3281)] = 144818, - [SMALL_STATE(3282)] = 144834, - [SMALL_STATE(3283)] = 144846, - [SMALL_STATE(3284)] = 144862, - [SMALL_STATE(3285)] = 144876, - [SMALL_STATE(3286)] = 144892, - [SMALL_STATE(3287)] = 144906, - [SMALL_STATE(3288)] = 144922, - [SMALL_STATE(3289)] = 144938, - [SMALL_STATE(3290)] = 144952, - [SMALL_STATE(3291)] = 144968, - [SMALL_STATE(3292)] = 144982, - [SMALL_STATE(3293)] = 144994, - [SMALL_STATE(3294)] = 145006, - [SMALL_STATE(3295)] = 145022, - [SMALL_STATE(3296)] = 145036, - [SMALL_STATE(3297)] = 145048, - [SMALL_STATE(3298)] = 145064, - [SMALL_STATE(3299)] = 145074, - [SMALL_STATE(3300)] = 145090, - [SMALL_STATE(3301)] = 145106, - [SMALL_STATE(3302)] = 145122, - [SMALL_STATE(3303)] = 145134, - [SMALL_STATE(3304)] = 145144, - [SMALL_STATE(3305)] = 145160, - [SMALL_STATE(3306)] = 145174, - [SMALL_STATE(3307)] = 145188, - [SMALL_STATE(3308)] = 145204, - [SMALL_STATE(3309)] = 145220, - [SMALL_STATE(3310)] = 145236, - [SMALL_STATE(3311)] = 145248, - [SMALL_STATE(3312)] = 145264, - [SMALL_STATE(3313)] = 145276, - [SMALL_STATE(3314)] = 145292, - [SMALL_STATE(3315)] = 145308, - [SMALL_STATE(3316)] = 145324, - [SMALL_STATE(3317)] = 145340, - [SMALL_STATE(3318)] = 145352, - [SMALL_STATE(3319)] = 145368, - [SMALL_STATE(3320)] = 145380, - [SMALL_STATE(3321)] = 145396, - [SMALL_STATE(3322)] = 145412, - [SMALL_STATE(3323)] = 145428, - [SMALL_STATE(3324)] = 145444, - [SMALL_STATE(3325)] = 145460, - [SMALL_STATE(3326)] = 145470, - [SMALL_STATE(3327)] = 145484, - [SMALL_STATE(3328)] = 145500, - [SMALL_STATE(3329)] = 145516, - [SMALL_STATE(3330)] = 145532, - [SMALL_STATE(3331)] = 145544, - [SMALL_STATE(3332)] = 145560, - [SMALL_STATE(3333)] = 145576, - [SMALL_STATE(3334)] = 145592, - [SMALL_STATE(3335)] = 145608, - [SMALL_STATE(3336)] = 145624, - [SMALL_STATE(3337)] = 145640, - [SMALL_STATE(3338)] = 145656, - [SMALL_STATE(3339)] = 145668, - [SMALL_STATE(3340)] = 145684, - [SMALL_STATE(3341)] = 145700, - [SMALL_STATE(3342)] = 145716, - [SMALL_STATE(3343)] = 145732, - [SMALL_STATE(3344)] = 145742, - [SMALL_STATE(3345)] = 145754, - [SMALL_STATE(3346)] = 145770, - [SMALL_STATE(3347)] = 145786, - [SMALL_STATE(3348)] = 145802, - [SMALL_STATE(3349)] = 145818, - [SMALL_STATE(3350)] = 145834, - [SMALL_STATE(3351)] = 145850, - [SMALL_STATE(3352)] = 145866, - [SMALL_STATE(3353)] = 145882, - [SMALL_STATE(3354)] = 145898, - [SMALL_STATE(3355)] = 145910, - [SMALL_STATE(3356)] = 145926, - [SMALL_STATE(3357)] = 145938, - [SMALL_STATE(3358)] = 145954, - [SMALL_STATE(3359)] = 145966, - [SMALL_STATE(3360)] = 145976, - [SMALL_STATE(3361)] = 145992, - [SMALL_STATE(3362)] = 146002, - [SMALL_STATE(3363)] = 146016, - [SMALL_STATE(3364)] = 146026, - [SMALL_STATE(3365)] = 146042, - [SMALL_STATE(3366)] = 146058, - [SMALL_STATE(3367)] = 146070, - [SMALL_STATE(3368)] = 146086, - [SMALL_STATE(3369)] = 146102, - [SMALL_STATE(3370)] = 146118, - [SMALL_STATE(3371)] = 146134, - [SMALL_STATE(3372)] = 146146, - [SMALL_STATE(3373)] = 146158, - [SMALL_STATE(3374)] = 146168, - [SMALL_STATE(3375)] = 146184, - [SMALL_STATE(3376)] = 146196, - [SMALL_STATE(3377)] = 146212, - [SMALL_STATE(3378)] = 146228, - [SMALL_STATE(3379)] = 146240, - [SMALL_STATE(3380)] = 146256, - [SMALL_STATE(3381)] = 146270, - [SMALL_STATE(3382)] = 146282, - [SMALL_STATE(3383)] = 146294, - [SMALL_STATE(3384)] = 146310, - [SMALL_STATE(3385)] = 146320, - [SMALL_STATE(3386)] = 146332, - [SMALL_STATE(3387)] = 146344, - [SMALL_STATE(3388)] = 146360, - [SMALL_STATE(3389)] = 146376, - [SMALL_STATE(3390)] = 146392, - [SMALL_STATE(3391)] = 146408, - [SMALL_STATE(3392)] = 146424, - [SMALL_STATE(3393)] = 146440, - [SMALL_STATE(3394)] = 146456, - [SMALL_STATE(3395)] = 146472, - [SMALL_STATE(3396)] = 146486, - [SMALL_STATE(3397)] = 146502, - [SMALL_STATE(3398)] = 146518, - [SMALL_STATE(3399)] = 146532, - [SMALL_STATE(3400)] = 146542, - [SMALL_STATE(3401)] = 146554, - [SMALL_STATE(3402)] = 146570, - [SMALL_STATE(3403)] = 146586, - [SMALL_STATE(3404)] = 146602, - [SMALL_STATE(3405)] = 146614, - [SMALL_STATE(3406)] = 146627, - [SMALL_STATE(3407)] = 146640, - [SMALL_STATE(3408)] = 146653, - [SMALL_STATE(3409)] = 146666, - [SMALL_STATE(3410)] = 146679, - [SMALL_STATE(3411)] = 146692, - [SMALL_STATE(3412)] = 146705, - [SMALL_STATE(3413)] = 146718, - [SMALL_STATE(3414)] = 146731, - [SMALL_STATE(3415)] = 146744, - [SMALL_STATE(3416)] = 146753, - [SMALL_STATE(3417)] = 146766, - [SMALL_STATE(3418)] = 146779, - [SMALL_STATE(3419)] = 146792, - [SMALL_STATE(3420)] = 146805, - [SMALL_STATE(3421)] = 146818, - [SMALL_STATE(3422)] = 146831, - [SMALL_STATE(3423)] = 146844, - [SMALL_STATE(3424)] = 146857, - [SMALL_STATE(3425)] = 146870, - [SMALL_STATE(3426)] = 146883, - [SMALL_STATE(3427)] = 146896, - [SMALL_STATE(3428)] = 146909, - [SMALL_STATE(3429)] = 146922, - [SMALL_STATE(3430)] = 146935, - [SMALL_STATE(3431)] = 146948, - [SMALL_STATE(3432)] = 146961, - [SMALL_STATE(3433)] = 146974, - [SMALL_STATE(3434)] = 146987, - [SMALL_STATE(3435)] = 147000, - [SMALL_STATE(3436)] = 147013, - [SMALL_STATE(3437)] = 147026, - [SMALL_STATE(3438)] = 147039, - [SMALL_STATE(3439)] = 147052, - [SMALL_STATE(3440)] = 147065, - [SMALL_STATE(3441)] = 147078, - [SMALL_STATE(3442)] = 147091, - [SMALL_STATE(3443)] = 147104, - [SMALL_STATE(3444)] = 147117, - [SMALL_STATE(3445)] = 147130, - [SMALL_STATE(3446)] = 147143, - [SMALL_STATE(3447)] = 147156, - [SMALL_STATE(3448)] = 147169, - [SMALL_STATE(3449)] = 147182, - [SMALL_STATE(3450)] = 147195, - [SMALL_STATE(3451)] = 147208, - [SMALL_STATE(3452)] = 147221, - [SMALL_STATE(3453)] = 147234, - [SMALL_STATE(3454)] = 147247, - [SMALL_STATE(3455)] = 147260, - [SMALL_STATE(3456)] = 147273, - [SMALL_STATE(3457)] = 147286, - [SMALL_STATE(3458)] = 147299, - [SMALL_STATE(3459)] = 147312, - [SMALL_STATE(3460)] = 147325, - [SMALL_STATE(3461)] = 147338, - [SMALL_STATE(3462)] = 147351, - [SMALL_STATE(3463)] = 147364, - [SMALL_STATE(3464)] = 147377, - [SMALL_STATE(3465)] = 147390, - [SMALL_STATE(3466)] = 147403, - [SMALL_STATE(3467)] = 147416, - [SMALL_STATE(3468)] = 147429, - [SMALL_STATE(3469)] = 147442, - [SMALL_STATE(3470)] = 147455, - [SMALL_STATE(3471)] = 147468, - [SMALL_STATE(3472)] = 147481, - [SMALL_STATE(3473)] = 147494, - [SMALL_STATE(3474)] = 147507, - [SMALL_STATE(3475)] = 147520, - [SMALL_STATE(3476)] = 147533, - [SMALL_STATE(3477)] = 147546, - [SMALL_STATE(3478)] = 147559, - [SMALL_STATE(3479)] = 147572, - [SMALL_STATE(3480)] = 147585, - [SMALL_STATE(3481)] = 147598, - [SMALL_STATE(3482)] = 147611, - [SMALL_STATE(3483)] = 147624, - [SMALL_STATE(3484)] = 147637, - [SMALL_STATE(3485)] = 147650, - [SMALL_STATE(3486)] = 147663, - [SMALL_STATE(3487)] = 147676, - [SMALL_STATE(3488)] = 147689, - [SMALL_STATE(3489)] = 147702, - [SMALL_STATE(3490)] = 147715, - [SMALL_STATE(3491)] = 147728, - [SMALL_STATE(3492)] = 147741, - [SMALL_STATE(3493)] = 147754, - [SMALL_STATE(3494)] = 147767, - [SMALL_STATE(3495)] = 147780, - [SMALL_STATE(3496)] = 147793, - [SMALL_STATE(3497)] = 147806, - [SMALL_STATE(3498)] = 147819, - [SMALL_STATE(3499)] = 147832, - [SMALL_STATE(3500)] = 147845, - [SMALL_STATE(3501)] = 147858, - [SMALL_STATE(3502)] = 147871, - [SMALL_STATE(3503)] = 147884, - [SMALL_STATE(3504)] = 147897, - [SMALL_STATE(3505)] = 147910, - [SMALL_STATE(3506)] = 147923, - [SMALL_STATE(3507)] = 147936, - [SMALL_STATE(3508)] = 147949, - [SMALL_STATE(3509)] = 147962, - [SMALL_STATE(3510)] = 147975, - [SMALL_STATE(3511)] = 147988, - [SMALL_STATE(3512)] = 148001, - [SMALL_STATE(3513)] = 148014, - [SMALL_STATE(3514)] = 148027, - [SMALL_STATE(3515)] = 148038, - [SMALL_STATE(3516)] = 148051, - [SMALL_STATE(3517)] = 148064, - [SMALL_STATE(3518)] = 148077, - [SMALL_STATE(3519)] = 148090, - [SMALL_STATE(3520)] = 148103, - [SMALL_STATE(3521)] = 148116, - [SMALL_STATE(3522)] = 148129, - [SMALL_STATE(3523)] = 148142, - [SMALL_STATE(3524)] = 148155, - [SMALL_STATE(3525)] = 148168, - [SMALL_STATE(3526)] = 148181, - [SMALL_STATE(3527)] = 148194, - [SMALL_STATE(3528)] = 148207, - [SMALL_STATE(3529)] = 148216, - [SMALL_STATE(3530)] = 148229, - [SMALL_STATE(3531)] = 148242, - [SMALL_STATE(3532)] = 148255, - [SMALL_STATE(3533)] = 148268, - [SMALL_STATE(3534)] = 148281, - [SMALL_STATE(3535)] = 148294, - [SMALL_STATE(3536)] = 148307, - [SMALL_STATE(3537)] = 148320, - [SMALL_STATE(3538)] = 148333, - [SMALL_STATE(3539)] = 148346, - [SMALL_STATE(3540)] = 148359, - [SMALL_STATE(3541)] = 148372, - [SMALL_STATE(3542)] = 148385, - [SMALL_STATE(3543)] = 148398, - [SMALL_STATE(3544)] = 148411, - [SMALL_STATE(3545)] = 148424, - [SMALL_STATE(3546)] = 148437, - [SMALL_STATE(3547)] = 148450, - [SMALL_STATE(3548)] = 148463, - [SMALL_STATE(3549)] = 148476, - [SMALL_STATE(3550)] = 148489, - [SMALL_STATE(3551)] = 148502, - [SMALL_STATE(3552)] = 148515, - [SMALL_STATE(3553)] = 148528, - [SMALL_STATE(3554)] = 148541, - [SMALL_STATE(3555)] = 148554, - [SMALL_STATE(3556)] = 148567, - [SMALL_STATE(3557)] = 148580, - [SMALL_STATE(3558)] = 148593, - [SMALL_STATE(3559)] = 148606, - [SMALL_STATE(3560)] = 148619, - [SMALL_STATE(3561)] = 148632, - [SMALL_STATE(3562)] = 148645, - [SMALL_STATE(3563)] = 148658, - [SMALL_STATE(3564)] = 148671, - [SMALL_STATE(3565)] = 148684, - [SMALL_STATE(3566)] = 148697, - [SMALL_STATE(3567)] = 148710, - [SMALL_STATE(3568)] = 148723, - [SMALL_STATE(3569)] = 148736, - [SMALL_STATE(3570)] = 148749, - [SMALL_STATE(3571)] = 148762, - [SMALL_STATE(3572)] = 148775, - [SMALL_STATE(3573)] = 148786, - [SMALL_STATE(3574)] = 148799, - [SMALL_STATE(3575)] = 148812, - [SMALL_STATE(3576)] = 148825, - [SMALL_STATE(3577)] = 148838, - [SMALL_STATE(3578)] = 148851, - [SMALL_STATE(3579)] = 148864, - [SMALL_STATE(3580)] = 148877, - [SMALL_STATE(3581)] = 148888, - [SMALL_STATE(3582)] = 148901, - [SMALL_STATE(3583)] = 148914, - [SMALL_STATE(3584)] = 148927, - [SMALL_STATE(3585)] = 148940, - [SMALL_STATE(3586)] = 148953, - [SMALL_STATE(3587)] = 148966, - [SMALL_STATE(3588)] = 148979, - [SMALL_STATE(3589)] = 148992, - [SMALL_STATE(3590)] = 149005, - [SMALL_STATE(3591)] = 149018, - [SMALL_STATE(3592)] = 149031, - [SMALL_STATE(3593)] = 149044, - [SMALL_STATE(3594)] = 149057, - [SMALL_STATE(3595)] = 149070, - [SMALL_STATE(3596)] = 149083, - [SMALL_STATE(3597)] = 149096, - [SMALL_STATE(3598)] = 149109, - [SMALL_STATE(3599)] = 149122, - [SMALL_STATE(3600)] = 149135, - [SMALL_STATE(3601)] = 149148, - [SMALL_STATE(3602)] = 149161, - [SMALL_STATE(3603)] = 149170, - [SMALL_STATE(3604)] = 149183, - [SMALL_STATE(3605)] = 149196, - [SMALL_STATE(3606)] = 149209, - [SMALL_STATE(3607)] = 149222, - [SMALL_STATE(3608)] = 149235, - [SMALL_STATE(3609)] = 149248, - [SMALL_STATE(3610)] = 149261, - [SMALL_STATE(3611)] = 149274, - [SMALL_STATE(3612)] = 149287, - [SMALL_STATE(3613)] = 149300, - [SMALL_STATE(3614)] = 149313, - [SMALL_STATE(3615)] = 149326, - [SMALL_STATE(3616)] = 149339, - [SMALL_STATE(3617)] = 149352, - [SMALL_STATE(3618)] = 149365, - [SMALL_STATE(3619)] = 149378, - [SMALL_STATE(3620)] = 149391, - [SMALL_STATE(3621)] = 149404, - [SMALL_STATE(3622)] = 149417, - [SMALL_STATE(3623)] = 149430, - [SMALL_STATE(3624)] = 149443, - [SMALL_STATE(3625)] = 149456, - [SMALL_STATE(3626)] = 149469, - [SMALL_STATE(3627)] = 149482, - [SMALL_STATE(3628)] = 149495, - [SMALL_STATE(3629)] = 149508, - [SMALL_STATE(3630)] = 149521, - [SMALL_STATE(3631)] = 149534, - [SMALL_STATE(3632)] = 149547, - [SMALL_STATE(3633)] = 149560, - [SMALL_STATE(3634)] = 149573, - [SMALL_STATE(3635)] = 149586, - [SMALL_STATE(3636)] = 149599, - [SMALL_STATE(3637)] = 149612, - [SMALL_STATE(3638)] = 149625, - [SMALL_STATE(3639)] = 149634, - [SMALL_STATE(3640)] = 149647, - [SMALL_STATE(3641)] = 149660, - [SMALL_STATE(3642)] = 149673, - [SMALL_STATE(3643)] = 149686, - [SMALL_STATE(3644)] = 149699, - [SMALL_STATE(3645)] = 149712, - [SMALL_STATE(3646)] = 149725, - [SMALL_STATE(3647)] = 149738, - [SMALL_STATE(3648)] = 149751, - [SMALL_STATE(3649)] = 149764, - [SMALL_STATE(3650)] = 149777, - [SMALL_STATE(3651)] = 149790, - [SMALL_STATE(3652)] = 149803, - [SMALL_STATE(3653)] = 149816, - [SMALL_STATE(3654)] = 149829, - [SMALL_STATE(3655)] = 149842, - [SMALL_STATE(3656)] = 149855, - [SMALL_STATE(3657)] = 149868, - [SMALL_STATE(3658)] = 149881, - [SMALL_STATE(3659)] = 149894, - [SMALL_STATE(3660)] = 149907, - [SMALL_STATE(3661)] = 149920, - [SMALL_STATE(3662)] = 149933, - [SMALL_STATE(3663)] = 149946, - [SMALL_STATE(3664)] = 149959, - [SMALL_STATE(3665)] = 149972, - [SMALL_STATE(3666)] = 149985, - [SMALL_STATE(3667)] = 149998, - [SMALL_STATE(3668)] = 150011, - [SMALL_STATE(3669)] = 150024, - [SMALL_STATE(3670)] = 150037, - [SMALL_STATE(3671)] = 150050, - [SMALL_STATE(3672)] = 150063, - [SMALL_STATE(3673)] = 150076, - [SMALL_STATE(3674)] = 150089, - [SMALL_STATE(3675)] = 150102, - [SMALL_STATE(3676)] = 150115, - [SMALL_STATE(3677)] = 150128, - [SMALL_STATE(3678)] = 150141, - [SMALL_STATE(3679)] = 150154, - [SMALL_STATE(3680)] = 150167, - [SMALL_STATE(3681)] = 150180, - [SMALL_STATE(3682)] = 150193, - [SMALL_STATE(3683)] = 150206, - [SMALL_STATE(3684)] = 150219, - [SMALL_STATE(3685)] = 150232, - [SMALL_STATE(3686)] = 150245, - [SMALL_STATE(3687)] = 150258, - [SMALL_STATE(3688)] = 150271, - [SMALL_STATE(3689)] = 150284, - [SMALL_STATE(3690)] = 150297, - [SMALL_STATE(3691)] = 150310, - [SMALL_STATE(3692)] = 150323, - [SMALL_STATE(3693)] = 150336, - [SMALL_STATE(3694)] = 150349, - [SMALL_STATE(3695)] = 150362, - [SMALL_STATE(3696)] = 150375, - [SMALL_STATE(3697)] = 150388, - [SMALL_STATE(3698)] = 150401, - [SMALL_STATE(3699)] = 150414, - [SMALL_STATE(3700)] = 150427, - [SMALL_STATE(3701)] = 150440, - [SMALL_STATE(3702)] = 150453, - [SMALL_STATE(3703)] = 150466, - [SMALL_STATE(3704)] = 150479, - [SMALL_STATE(3705)] = 150492, - [SMALL_STATE(3706)] = 150505, - [SMALL_STATE(3707)] = 150518, - [SMALL_STATE(3708)] = 150531, - [SMALL_STATE(3709)] = 150544, - [SMALL_STATE(3710)] = 150557, - [SMALL_STATE(3711)] = 150570, - [SMALL_STATE(3712)] = 150583, - [SMALL_STATE(3713)] = 150596, - [SMALL_STATE(3714)] = 150609, - [SMALL_STATE(3715)] = 150622, - [SMALL_STATE(3716)] = 150635, - [SMALL_STATE(3717)] = 150648, - [SMALL_STATE(3718)] = 150661, - [SMALL_STATE(3719)] = 150674, - [SMALL_STATE(3720)] = 150687, - [SMALL_STATE(3721)] = 150700, - [SMALL_STATE(3722)] = 150713, - [SMALL_STATE(3723)] = 150726, - [SMALL_STATE(3724)] = 150739, - [SMALL_STATE(3725)] = 150752, - [SMALL_STATE(3726)] = 150765, - [SMALL_STATE(3727)] = 150778, - [SMALL_STATE(3728)] = 150791, - [SMALL_STATE(3729)] = 150804, - [SMALL_STATE(3730)] = 150817, - [SMALL_STATE(3731)] = 150830, - [SMALL_STATE(3732)] = 150843, - [SMALL_STATE(3733)] = 150856, - [SMALL_STATE(3734)] = 150869, - [SMALL_STATE(3735)] = 150882, - [SMALL_STATE(3736)] = 150895, - [SMALL_STATE(3737)] = 150908, - [SMALL_STATE(3738)] = 150921, - [SMALL_STATE(3739)] = 150934, - [SMALL_STATE(3740)] = 150947, - [SMALL_STATE(3741)] = 150960, - [SMALL_STATE(3742)] = 150973, - [SMALL_STATE(3743)] = 150986, - [SMALL_STATE(3744)] = 150999, - [SMALL_STATE(3745)] = 151012, - [SMALL_STATE(3746)] = 151025, - [SMALL_STATE(3747)] = 151038, - [SMALL_STATE(3748)] = 151051, - [SMALL_STATE(3749)] = 151064, - [SMALL_STATE(3750)] = 151077, - [SMALL_STATE(3751)] = 151090, - [SMALL_STATE(3752)] = 151103, - [SMALL_STATE(3753)] = 151116, - [SMALL_STATE(3754)] = 151129, - [SMALL_STATE(3755)] = 151142, - [SMALL_STATE(3756)] = 151155, - [SMALL_STATE(3757)] = 151168, - [SMALL_STATE(3758)] = 151181, - [SMALL_STATE(3759)] = 151194, - [SMALL_STATE(3760)] = 151207, - [SMALL_STATE(3761)] = 151220, - [SMALL_STATE(3762)] = 151233, - [SMALL_STATE(3763)] = 151246, - [SMALL_STATE(3764)] = 151259, - [SMALL_STATE(3765)] = 151272, - [SMALL_STATE(3766)] = 151285, - [SMALL_STATE(3767)] = 151298, - [SMALL_STATE(3768)] = 151311, - [SMALL_STATE(3769)] = 151324, - [SMALL_STATE(3770)] = 151337, - [SMALL_STATE(3771)] = 151350, - [SMALL_STATE(3772)] = 151363, - [SMALL_STATE(3773)] = 151376, - [SMALL_STATE(3774)] = 151389, - [SMALL_STATE(3775)] = 151402, - [SMALL_STATE(3776)] = 151415, - [SMALL_STATE(3777)] = 151428, - [SMALL_STATE(3778)] = 151441, - [SMALL_STATE(3779)] = 151454, - [SMALL_STATE(3780)] = 151467, - [SMALL_STATE(3781)] = 151480, - [SMALL_STATE(3782)] = 151493, - [SMALL_STATE(3783)] = 151506, - [SMALL_STATE(3784)] = 151519, - [SMALL_STATE(3785)] = 151532, - [SMALL_STATE(3786)] = 151545, - [SMALL_STATE(3787)] = 151558, - [SMALL_STATE(3788)] = 151571, - [SMALL_STATE(3789)] = 151584, - [SMALL_STATE(3790)] = 151597, - [SMALL_STATE(3791)] = 151610, - [SMALL_STATE(3792)] = 151623, - [SMALL_STATE(3793)] = 151636, - [SMALL_STATE(3794)] = 151649, - [SMALL_STATE(3795)] = 151662, - [SMALL_STATE(3796)] = 151675, - [SMALL_STATE(3797)] = 151688, - [SMALL_STATE(3798)] = 151701, - [SMALL_STATE(3799)] = 151714, - [SMALL_STATE(3800)] = 151727, - [SMALL_STATE(3801)] = 151740, - [SMALL_STATE(3802)] = 151753, - [SMALL_STATE(3803)] = 151766, - [SMALL_STATE(3804)] = 151779, - [SMALL_STATE(3805)] = 151792, - [SMALL_STATE(3806)] = 151805, - [SMALL_STATE(3807)] = 151818, - [SMALL_STATE(3808)] = 151831, - [SMALL_STATE(3809)] = 151844, - [SMALL_STATE(3810)] = 151857, - [SMALL_STATE(3811)] = 151870, - [SMALL_STATE(3812)] = 151883, - [SMALL_STATE(3813)] = 151896, - [SMALL_STATE(3814)] = 151909, - [SMALL_STATE(3815)] = 151922, - [SMALL_STATE(3816)] = 151935, - [SMALL_STATE(3817)] = 151948, - [SMALL_STATE(3818)] = 151961, - [SMALL_STATE(3819)] = 151974, - [SMALL_STATE(3820)] = 151987, - [SMALL_STATE(3821)] = 152000, - [SMALL_STATE(3822)] = 152013, - [SMALL_STATE(3823)] = 152026, - [SMALL_STATE(3824)] = 152039, - [SMALL_STATE(3825)] = 152052, - [SMALL_STATE(3826)] = 152065, - [SMALL_STATE(3827)] = 152078, - [SMALL_STATE(3828)] = 152091, - [SMALL_STATE(3829)] = 152104, - [SMALL_STATE(3830)] = 152117, - [SMALL_STATE(3831)] = 152130, - [SMALL_STATE(3832)] = 152143, - [SMALL_STATE(3833)] = 152156, - [SMALL_STATE(3834)] = 152169, - [SMALL_STATE(3835)] = 152182, - [SMALL_STATE(3836)] = 152195, - [SMALL_STATE(3837)] = 152208, - [SMALL_STATE(3838)] = 152221, - [SMALL_STATE(3839)] = 152234, - [SMALL_STATE(3840)] = 152247, - [SMALL_STATE(3841)] = 152260, - [SMALL_STATE(3842)] = 152273, - [SMALL_STATE(3843)] = 152286, - [SMALL_STATE(3844)] = 152299, - [SMALL_STATE(3845)] = 152312, - [SMALL_STATE(3846)] = 152325, - [SMALL_STATE(3847)] = 152334, - [SMALL_STATE(3848)] = 152347, - [SMALL_STATE(3849)] = 152360, - [SMALL_STATE(3850)] = 152373, - [SMALL_STATE(3851)] = 152386, - [SMALL_STATE(3852)] = 152399, - [SMALL_STATE(3853)] = 152412, - [SMALL_STATE(3854)] = 152425, - [SMALL_STATE(3855)] = 152438, - [SMALL_STATE(3856)] = 152451, - [SMALL_STATE(3857)] = 152464, - [SMALL_STATE(3858)] = 152473, - [SMALL_STATE(3859)] = 152486, - [SMALL_STATE(3860)] = 152499, - [SMALL_STATE(3861)] = 152512, - [SMALL_STATE(3862)] = 152525, - [SMALL_STATE(3863)] = 152538, - [SMALL_STATE(3864)] = 152551, - [SMALL_STATE(3865)] = 152564, - [SMALL_STATE(3866)] = 152577, - [SMALL_STATE(3867)] = 152590, - [SMALL_STATE(3868)] = 152603, - [SMALL_STATE(3869)] = 152616, - [SMALL_STATE(3870)] = 152629, - [SMALL_STATE(3871)] = 152642, - [SMALL_STATE(3872)] = 152655, - [SMALL_STATE(3873)] = 152668, - [SMALL_STATE(3874)] = 152681, - [SMALL_STATE(3875)] = 152694, - [SMALL_STATE(3876)] = 152707, - [SMALL_STATE(3877)] = 152720, - [SMALL_STATE(3878)] = 152733, - [SMALL_STATE(3879)] = 152746, - [SMALL_STATE(3880)] = 152759, - [SMALL_STATE(3881)] = 152772, - [SMALL_STATE(3882)] = 152785, - [SMALL_STATE(3883)] = 152798, - [SMALL_STATE(3884)] = 152811, - [SMALL_STATE(3885)] = 152824, - [SMALL_STATE(3886)] = 152837, - [SMALL_STATE(3887)] = 152850, - [SMALL_STATE(3888)] = 152863, - [SMALL_STATE(3889)] = 152876, - [SMALL_STATE(3890)] = 152889, - [SMALL_STATE(3891)] = 152902, - [SMALL_STATE(3892)] = 152915, - [SMALL_STATE(3893)] = 152928, - [SMALL_STATE(3894)] = 152941, - [SMALL_STATE(3895)] = 152954, - [SMALL_STATE(3896)] = 152967, - [SMALL_STATE(3897)] = 152980, - [SMALL_STATE(3898)] = 152993, - [SMALL_STATE(3899)] = 153006, - [SMALL_STATE(3900)] = 153019, - [SMALL_STATE(3901)] = 153032, - [SMALL_STATE(3902)] = 153045, - [SMALL_STATE(3903)] = 153058, - [SMALL_STATE(3904)] = 153071, - [SMALL_STATE(3905)] = 153084, - [SMALL_STATE(3906)] = 153097, - [SMALL_STATE(3907)] = 153110, - [SMALL_STATE(3908)] = 153123, - [SMALL_STATE(3909)] = 153136, - [SMALL_STATE(3910)] = 153149, - [SMALL_STATE(3911)] = 153162, - [SMALL_STATE(3912)] = 153175, - [SMALL_STATE(3913)] = 153188, - [SMALL_STATE(3914)] = 153201, - [SMALL_STATE(3915)] = 153214, - [SMALL_STATE(3916)] = 153227, - [SMALL_STATE(3917)] = 153240, - [SMALL_STATE(3918)] = 153253, - [SMALL_STATE(3919)] = 153266, - [SMALL_STATE(3920)] = 153279, - [SMALL_STATE(3921)] = 153292, - [SMALL_STATE(3922)] = 153305, - [SMALL_STATE(3923)] = 153318, - [SMALL_STATE(3924)] = 153331, - [SMALL_STATE(3925)] = 153344, - [SMALL_STATE(3926)] = 153357, - [SMALL_STATE(3927)] = 153370, - [SMALL_STATE(3928)] = 153383, - [SMALL_STATE(3929)] = 153396, - [SMALL_STATE(3930)] = 153409, - [SMALL_STATE(3931)] = 153422, - [SMALL_STATE(3932)] = 153435, - [SMALL_STATE(3933)] = 153444, - [SMALL_STATE(3934)] = 153457, - [SMALL_STATE(3935)] = 153470, - [SMALL_STATE(3936)] = 153483, - [SMALL_STATE(3937)] = 153496, - [SMALL_STATE(3938)] = 153509, - [SMALL_STATE(3939)] = 153522, - [SMALL_STATE(3940)] = 153535, - [SMALL_STATE(3941)] = 153548, - [SMALL_STATE(3942)] = 153561, - [SMALL_STATE(3943)] = 153574, - [SMALL_STATE(3944)] = 153587, - [SMALL_STATE(3945)] = 153600, - [SMALL_STATE(3946)] = 153613, - [SMALL_STATE(3947)] = 153626, - [SMALL_STATE(3948)] = 153639, - [SMALL_STATE(3949)] = 153652, - [SMALL_STATE(3950)] = 153665, - [SMALL_STATE(3951)] = 153678, - [SMALL_STATE(3952)] = 153691, - [SMALL_STATE(3953)] = 153704, - [SMALL_STATE(3954)] = 153717, - [SMALL_STATE(3955)] = 153730, - [SMALL_STATE(3956)] = 153743, - [SMALL_STATE(3957)] = 153756, - [SMALL_STATE(3958)] = 153769, - [SMALL_STATE(3959)] = 153782, - [SMALL_STATE(3960)] = 153795, - [SMALL_STATE(3961)] = 153808, - [SMALL_STATE(3962)] = 153821, - [SMALL_STATE(3963)] = 153834, - [SMALL_STATE(3964)] = 153847, - [SMALL_STATE(3965)] = 153860, - [SMALL_STATE(3966)] = 153873, - [SMALL_STATE(3967)] = 153886, - [SMALL_STATE(3968)] = 153899, - [SMALL_STATE(3969)] = 153912, - [SMALL_STATE(3970)] = 153925, - [SMALL_STATE(3971)] = 153938, - [SMALL_STATE(3972)] = 153951, - [SMALL_STATE(3973)] = 153964, - [SMALL_STATE(3974)] = 153977, - [SMALL_STATE(3975)] = 153990, - [SMALL_STATE(3976)] = 154003, - [SMALL_STATE(3977)] = 154016, - [SMALL_STATE(3978)] = 154029, - [SMALL_STATE(3979)] = 154042, - [SMALL_STATE(3980)] = 154055, - [SMALL_STATE(3981)] = 154068, - [SMALL_STATE(3982)] = 154081, - [SMALL_STATE(3983)] = 154094, - [SMALL_STATE(3984)] = 154107, - [SMALL_STATE(3985)] = 154120, - [SMALL_STATE(3986)] = 154133, - [SMALL_STATE(3987)] = 154146, - [SMALL_STATE(3988)] = 154159, - [SMALL_STATE(3989)] = 154172, - [SMALL_STATE(3990)] = 154185, - [SMALL_STATE(3991)] = 154198, - [SMALL_STATE(3992)] = 154211, - [SMALL_STATE(3993)] = 154224, - [SMALL_STATE(3994)] = 154237, - [SMALL_STATE(3995)] = 154250, - [SMALL_STATE(3996)] = 154263, - [SMALL_STATE(3997)] = 154276, - [SMALL_STATE(3998)] = 154289, - [SMALL_STATE(3999)] = 154302, - [SMALL_STATE(4000)] = 154315, - [SMALL_STATE(4001)] = 154328, - [SMALL_STATE(4002)] = 154341, - [SMALL_STATE(4003)] = 154354, - [SMALL_STATE(4004)] = 154367, - [SMALL_STATE(4005)] = 154380, - [SMALL_STATE(4006)] = 154393, - [SMALL_STATE(4007)] = 154406, - [SMALL_STATE(4008)] = 154419, - [SMALL_STATE(4009)] = 154432, - [SMALL_STATE(4010)] = 154445, - [SMALL_STATE(4011)] = 154458, - [SMALL_STATE(4012)] = 154471, - [SMALL_STATE(4013)] = 154480, - [SMALL_STATE(4014)] = 154493, - [SMALL_STATE(4015)] = 154506, - [SMALL_STATE(4016)] = 154519, - [SMALL_STATE(4017)] = 154532, - [SMALL_STATE(4018)] = 154545, - [SMALL_STATE(4019)] = 154558, - [SMALL_STATE(4020)] = 154571, - [SMALL_STATE(4021)] = 154584, - [SMALL_STATE(4022)] = 154597, - [SMALL_STATE(4023)] = 154610, - [SMALL_STATE(4024)] = 154623, - [SMALL_STATE(4025)] = 154636, - [SMALL_STATE(4026)] = 154649, - [SMALL_STATE(4027)] = 154662, - [SMALL_STATE(4028)] = 154675, - [SMALL_STATE(4029)] = 154688, - [SMALL_STATE(4030)] = 154701, - [SMALL_STATE(4031)] = 154714, - [SMALL_STATE(4032)] = 154727, - [SMALL_STATE(4033)] = 154740, - [SMALL_STATE(4034)] = 154753, - [SMALL_STATE(4035)] = 154766, - [SMALL_STATE(4036)] = 154779, - [SMALL_STATE(4037)] = 154788, - [SMALL_STATE(4038)] = 154801, - [SMALL_STATE(4039)] = 154814, - [SMALL_STATE(4040)] = 154827, - [SMALL_STATE(4041)] = 154840, - [SMALL_STATE(4042)] = 154853, - [SMALL_STATE(4043)] = 154866, - [SMALL_STATE(4044)] = 154879, - [SMALL_STATE(4045)] = 154892, - [SMALL_STATE(4046)] = 154905, - [SMALL_STATE(4047)] = 154918, - [SMALL_STATE(4048)] = 154931, - [SMALL_STATE(4049)] = 154944, - [SMALL_STATE(4050)] = 154957, - [SMALL_STATE(4051)] = 154966, - [SMALL_STATE(4052)] = 154979, - [SMALL_STATE(4053)] = 154992, - [SMALL_STATE(4054)] = 155005, - [SMALL_STATE(4055)] = 155018, - [SMALL_STATE(4056)] = 155027, - [SMALL_STATE(4057)] = 155040, - [SMALL_STATE(4058)] = 155053, - [SMALL_STATE(4059)] = 155066, - [SMALL_STATE(4060)] = 155079, - [SMALL_STATE(4061)] = 155092, - [SMALL_STATE(4062)] = 155105, - [SMALL_STATE(4063)] = 155118, - [SMALL_STATE(4064)] = 155127, - [SMALL_STATE(4065)] = 155140, - [SMALL_STATE(4066)] = 155153, - [SMALL_STATE(4067)] = 155166, - [SMALL_STATE(4068)] = 155179, - [SMALL_STATE(4069)] = 155192, - [SMALL_STATE(4070)] = 155205, - [SMALL_STATE(4071)] = 155218, - [SMALL_STATE(4072)] = 155231, - [SMALL_STATE(4073)] = 155244, - [SMALL_STATE(4074)] = 155257, - [SMALL_STATE(4075)] = 155270, - [SMALL_STATE(4076)] = 155283, - [SMALL_STATE(4077)] = 155296, - [SMALL_STATE(4078)] = 155309, - [SMALL_STATE(4079)] = 155322, - [SMALL_STATE(4080)] = 155335, - [SMALL_STATE(4081)] = 155348, - [SMALL_STATE(4082)] = 155361, - [SMALL_STATE(4083)] = 155374, - [SMALL_STATE(4084)] = 155387, - [SMALL_STATE(4085)] = 155400, - [SMALL_STATE(4086)] = 155413, - [SMALL_STATE(4087)] = 155426, - [SMALL_STATE(4088)] = 155439, - [SMALL_STATE(4089)] = 155452, - [SMALL_STATE(4090)] = 155465, - [SMALL_STATE(4091)] = 155478, - [SMALL_STATE(4092)] = 155491, - [SMALL_STATE(4093)] = 155504, - [SMALL_STATE(4094)] = 155517, - [SMALL_STATE(4095)] = 155530, - [SMALL_STATE(4096)] = 155543, - [SMALL_STATE(4097)] = 155556, - [SMALL_STATE(4098)] = 155569, - [SMALL_STATE(4099)] = 155582, - [SMALL_STATE(4100)] = 155595, - [SMALL_STATE(4101)] = 155608, - [SMALL_STATE(4102)] = 155621, - [SMALL_STATE(4103)] = 155634, - [SMALL_STATE(4104)] = 155647, - [SMALL_STATE(4105)] = 155660, - [SMALL_STATE(4106)] = 155673, - [SMALL_STATE(4107)] = 155686, - [SMALL_STATE(4108)] = 155699, - [SMALL_STATE(4109)] = 155712, - [SMALL_STATE(4110)] = 155725, - [SMALL_STATE(4111)] = 155738, - [SMALL_STATE(4112)] = 155751, - [SMALL_STATE(4113)] = 155764, - [SMALL_STATE(4114)] = 155777, - [SMALL_STATE(4115)] = 155790, - [SMALL_STATE(4116)] = 155803, - [SMALL_STATE(4117)] = 155816, - [SMALL_STATE(4118)] = 155829, - [SMALL_STATE(4119)] = 155838, - [SMALL_STATE(4120)] = 155851, - [SMALL_STATE(4121)] = 155864, - [SMALL_STATE(4122)] = 155877, - [SMALL_STATE(4123)] = 155890, - [SMALL_STATE(4124)] = 155903, - [SMALL_STATE(4125)] = 155916, - [SMALL_STATE(4126)] = 155929, - [SMALL_STATE(4127)] = 155942, - [SMALL_STATE(4128)] = 155955, - [SMALL_STATE(4129)] = 155968, - [SMALL_STATE(4130)] = 155981, - [SMALL_STATE(4131)] = 155994, - [SMALL_STATE(4132)] = 156007, - [SMALL_STATE(4133)] = 156020, - [SMALL_STATE(4134)] = 156033, - [SMALL_STATE(4135)] = 156046, - [SMALL_STATE(4136)] = 156059, - [SMALL_STATE(4137)] = 156072, - [SMALL_STATE(4138)] = 156085, - [SMALL_STATE(4139)] = 156098, - [SMALL_STATE(4140)] = 156111, - [SMALL_STATE(4141)] = 156124, - [SMALL_STATE(4142)] = 156137, - [SMALL_STATE(4143)] = 156150, - [SMALL_STATE(4144)] = 156163, - [SMALL_STATE(4145)] = 156176, - [SMALL_STATE(4146)] = 156189, - [SMALL_STATE(4147)] = 156202, - [SMALL_STATE(4148)] = 156215, - [SMALL_STATE(4149)] = 156228, - [SMALL_STATE(4150)] = 156241, - [SMALL_STATE(4151)] = 156254, - [SMALL_STATE(4152)] = 156267, - [SMALL_STATE(4153)] = 156280, - [SMALL_STATE(4154)] = 156293, - [SMALL_STATE(4155)] = 156306, - [SMALL_STATE(4156)] = 156319, - [SMALL_STATE(4157)] = 156332, - [SMALL_STATE(4158)] = 156345, - [SMALL_STATE(4159)] = 156358, - [SMALL_STATE(4160)] = 156371, - [SMALL_STATE(4161)] = 156384, - [SMALL_STATE(4162)] = 156397, - [SMALL_STATE(4163)] = 156410, - [SMALL_STATE(4164)] = 156423, - [SMALL_STATE(4165)] = 156436, - [SMALL_STATE(4166)] = 156449, - [SMALL_STATE(4167)] = 156462, - [SMALL_STATE(4168)] = 156471, - [SMALL_STATE(4169)] = 156484, - [SMALL_STATE(4170)] = 156497, - [SMALL_STATE(4171)] = 156510, - [SMALL_STATE(4172)] = 156523, - [SMALL_STATE(4173)] = 156536, - [SMALL_STATE(4174)] = 156545, - [SMALL_STATE(4175)] = 156558, - [SMALL_STATE(4176)] = 156571, - [SMALL_STATE(4177)] = 156584, - [SMALL_STATE(4178)] = 156597, - [SMALL_STATE(4179)] = 156606, - [SMALL_STATE(4180)] = 156619, - [SMALL_STATE(4181)] = 156632, - [SMALL_STATE(4182)] = 156645, - [SMALL_STATE(4183)] = 156654, - [SMALL_STATE(4184)] = 156667, - [SMALL_STATE(4185)] = 156680, - [SMALL_STATE(4186)] = 156693, - [SMALL_STATE(4187)] = 156706, - [SMALL_STATE(4188)] = 156719, - [SMALL_STATE(4189)] = 156732, - [SMALL_STATE(4190)] = 156745, - [SMALL_STATE(4191)] = 156758, - [SMALL_STATE(4192)] = 156771, - [SMALL_STATE(4193)] = 156784, - [SMALL_STATE(4194)] = 156797, - [SMALL_STATE(4195)] = 156810, - [SMALL_STATE(4196)] = 156823, - [SMALL_STATE(4197)] = 156836, - [SMALL_STATE(4198)] = 156849, - [SMALL_STATE(4199)] = 156862, - [SMALL_STATE(4200)] = 156875, - [SMALL_STATE(4201)] = 156888, - [SMALL_STATE(4202)] = 156901, - [SMALL_STATE(4203)] = 156914, - [SMALL_STATE(4204)] = 156927, - [SMALL_STATE(4205)] = 156940, - [SMALL_STATE(4206)] = 156953, - [SMALL_STATE(4207)] = 156966, - [SMALL_STATE(4208)] = 156979, - [SMALL_STATE(4209)] = 156992, - [SMALL_STATE(4210)] = 157005, - [SMALL_STATE(4211)] = 157018, - [SMALL_STATE(4212)] = 157031, - [SMALL_STATE(4213)] = 157044, - [SMALL_STATE(4214)] = 157057, - [SMALL_STATE(4215)] = 157070, - [SMALL_STATE(4216)] = 157083, - [SMALL_STATE(4217)] = 157096, - [SMALL_STATE(4218)] = 157109, - [SMALL_STATE(4219)] = 157122, - [SMALL_STATE(4220)] = 157135, - [SMALL_STATE(4221)] = 157148, - [SMALL_STATE(4222)] = 157161, - [SMALL_STATE(4223)] = 157174, - [SMALL_STATE(4224)] = 157187, - [SMALL_STATE(4225)] = 157200, - [SMALL_STATE(4226)] = 157213, - [SMALL_STATE(4227)] = 157226, - [SMALL_STATE(4228)] = 157239, - [SMALL_STATE(4229)] = 157252, - [SMALL_STATE(4230)] = 157265, - [SMALL_STATE(4231)] = 157278, - [SMALL_STATE(4232)] = 157291, - [SMALL_STATE(4233)] = 157304, - [SMALL_STATE(4234)] = 157317, - [SMALL_STATE(4235)] = 157330, - [SMALL_STATE(4236)] = 157343, - [SMALL_STATE(4237)] = 157356, - [SMALL_STATE(4238)] = 157369, - [SMALL_STATE(4239)] = 157382, - [SMALL_STATE(4240)] = 157395, - [SMALL_STATE(4241)] = 157408, - [SMALL_STATE(4242)] = 157421, - [SMALL_STATE(4243)] = 157434, - [SMALL_STATE(4244)] = 157447, - [SMALL_STATE(4245)] = 157460, - [SMALL_STATE(4246)] = 157473, - [SMALL_STATE(4247)] = 157486, - [SMALL_STATE(4248)] = 157499, - [SMALL_STATE(4249)] = 157512, - [SMALL_STATE(4250)] = 157525, - [SMALL_STATE(4251)] = 157538, - [SMALL_STATE(4252)] = 157551, - [SMALL_STATE(4253)] = 157564, - [SMALL_STATE(4254)] = 157577, - [SMALL_STATE(4255)] = 157590, - [SMALL_STATE(4256)] = 157603, - [SMALL_STATE(4257)] = 157616, - [SMALL_STATE(4258)] = 157629, - [SMALL_STATE(4259)] = 157642, - [SMALL_STATE(4260)] = 157655, - [SMALL_STATE(4261)] = 157668, - [SMALL_STATE(4262)] = 157681, - [SMALL_STATE(4263)] = 157694, - [SMALL_STATE(4264)] = 157707, - [SMALL_STATE(4265)] = 157720, - [SMALL_STATE(4266)] = 157733, - [SMALL_STATE(4267)] = 157746, - [SMALL_STATE(4268)] = 157759, - [SMALL_STATE(4269)] = 157772, - [SMALL_STATE(4270)] = 157785, - [SMALL_STATE(4271)] = 157798, - [SMALL_STATE(4272)] = 157811, - [SMALL_STATE(4273)] = 157824, - [SMALL_STATE(4274)] = 157837, - [SMALL_STATE(4275)] = 157850, - [SMALL_STATE(4276)] = 157863, - [SMALL_STATE(4277)] = 157876, - [SMALL_STATE(4278)] = 157889, - [SMALL_STATE(4279)] = 157902, - [SMALL_STATE(4280)] = 157915, - [SMALL_STATE(4281)] = 157928, - [SMALL_STATE(4282)] = 157941, - [SMALL_STATE(4283)] = 157954, - [SMALL_STATE(4284)] = 157967, - [SMALL_STATE(4285)] = 157980, - [SMALL_STATE(4286)] = 157993, - [SMALL_STATE(4287)] = 158006, - [SMALL_STATE(4288)] = 158019, - [SMALL_STATE(4289)] = 158032, - [SMALL_STATE(4290)] = 158045, - [SMALL_STATE(4291)] = 158058, - [SMALL_STATE(4292)] = 158071, - [SMALL_STATE(4293)] = 158084, - [SMALL_STATE(4294)] = 158097, - [SMALL_STATE(4295)] = 158110, - [SMALL_STATE(4296)] = 158123, - [SMALL_STATE(4297)] = 158136, - [SMALL_STATE(4298)] = 158149, - [SMALL_STATE(4299)] = 158162, - [SMALL_STATE(4300)] = 158175, - [SMALL_STATE(4301)] = 158188, - [SMALL_STATE(4302)] = 158201, - [SMALL_STATE(4303)] = 158214, - [SMALL_STATE(4304)] = 158227, - [SMALL_STATE(4305)] = 158240, - [SMALL_STATE(4306)] = 158253, - [SMALL_STATE(4307)] = 158266, - [SMALL_STATE(4308)] = 158279, - [SMALL_STATE(4309)] = 158292, - [SMALL_STATE(4310)] = 158305, - [SMALL_STATE(4311)] = 158318, - [SMALL_STATE(4312)] = 158331, - [SMALL_STATE(4313)] = 158344, - [SMALL_STATE(4314)] = 158357, - [SMALL_STATE(4315)] = 158370, - [SMALL_STATE(4316)] = 158383, - [SMALL_STATE(4317)] = 158396, - [SMALL_STATE(4318)] = 158409, - [SMALL_STATE(4319)] = 158422, - [SMALL_STATE(4320)] = 158435, - [SMALL_STATE(4321)] = 158448, - [SMALL_STATE(4322)] = 158461, - [SMALL_STATE(4323)] = 158474, - [SMALL_STATE(4324)] = 158487, - [SMALL_STATE(4325)] = 158500, - [SMALL_STATE(4326)] = 158509, - [SMALL_STATE(4327)] = 158522, - [SMALL_STATE(4328)] = 158535, - [SMALL_STATE(4329)] = 158548, - [SMALL_STATE(4330)] = 158561, - [SMALL_STATE(4331)] = 158574, - [SMALL_STATE(4332)] = 158587, - [SMALL_STATE(4333)] = 158600, - [SMALL_STATE(4334)] = 158613, - [SMALL_STATE(4335)] = 158626, - [SMALL_STATE(4336)] = 158639, - [SMALL_STATE(4337)] = 158652, - [SMALL_STATE(4338)] = 158665, - [SMALL_STATE(4339)] = 158678, - [SMALL_STATE(4340)] = 158691, - [SMALL_STATE(4341)] = 158704, - [SMALL_STATE(4342)] = 158717, - [SMALL_STATE(4343)] = 158730, - [SMALL_STATE(4344)] = 158743, - [SMALL_STATE(4345)] = 158756, - [SMALL_STATE(4346)] = 158769, - [SMALL_STATE(4347)] = 158782, - [SMALL_STATE(4348)] = 158795, - [SMALL_STATE(4349)] = 158808, - [SMALL_STATE(4350)] = 158821, - [SMALL_STATE(4351)] = 158834, - [SMALL_STATE(4352)] = 158847, - [SMALL_STATE(4353)] = 158860, - [SMALL_STATE(4354)] = 158873, - [SMALL_STATE(4355)] = 158886, - [SMALL_STATE(4356)] = 158899, - [SMALL_STATE(4357)] = 158912, - [SMALL_STATE(4358)] = 158925, - [SMALL_STATE(4359)] = 158938, - [SMALL_STATE(4360)] = 158951, - [SMALL_STATE(4361)] = 158964, - [SMALL_STATE(4362)] = 158977, - [SMALL_STATE(4363)] = 158986, - [SMALL_STATE(4364)] = 158999, - [SMALL_STATE(4365)] = 159008, - [SMALL_STATE(4366)] = 159021, - [SMALL_STATE(4367)] = 159034, - [SMALL_STATE(4368)] = 159043, - [SMALL_STATE(4369)] = 159056, - [SMALL_STATE(4370)] = 159069, - [SMALL_STATE(4371)] = 159082, - [SMALL_STATE(4372)] = 159095, - [SMALL_STATE(4373)] = 159108, - [SMALL_STATE(4374)] = 159121, - [SMALL_STATE(4375)] = 159134, - [SMALL_STATE(4376)] = 159147, - [SMALL_STATE(4377)] = 159160, - [SMALL_STATE(4378)] = 159173, - [SMALL_STATE(4379)] = 159186, - [SMALL_STATE(4380)] = 159199, - [SMALL_STATE(4381)] = 159212, - [SMALL_STATE(4382)] = 159225, - [SMALL_STATE(4383)] = 159238, - [SMALL_STATE(4384)] = 159251, - [SMALL_STATE(4385)] = 159264, - [SMALL_STATE(4386)] = 159277, - [SMALL_STATE(4387)] = 159290, - [SMALL_STATE(4388)] = 159303, - [SMALL_STATE(4389)] = 159316, - [SMALL_STATE(4390)] = 159329, - [SMALL_STATE(4391)] = 159342, - [SMALL_STATE(4392)] = 159355, - [SMALL_STATE(4393)] = 159368, - [SMALL_STATE(4394)] = 159381, - [SMALL_STATE(4395)] = 159394, - [SMALL_STATE(4396)] = 159407, - [SMALL_STATE(4397)] = 159420, - [SMALL_STATE(4398)] = 159433, - [SMALL_STATE(4399)] = 159446, - [SMALL_STATE(4400)] = 159459, - [SMALL_STATE(4401)] = 159472, - [SMALL_STATE(4402)] = 159485, - [SMALL_STATE(4403)] = 159498, - [SMALL_STATE(4404)] = 159511, - [SMALL_STATE(4405)] = 159524, - [SMALL_STATE(4406)] = 159537, - [SMALL_STATE(4407)] = 159550, - [SMALL_STATE(4408)] = 159563, - [SMALL_STATE(4409)] = 159576, - [SMALL_STATE(4410)] = 159589, - [SMALL_STATE(4411)] = 159602, - [SMALL_STATE(4412)] = 159615, - [SMALL_STATE(4413)] = 159628, - [SMALL_STATE(4414)] = 159641, - [SMALL_STATE(4415)] = 159654, - [SMALL_STATE(4416)] = 159667, - [SMALL_STATE(4417)] = 159680, - [SMALL_STATE(4418)] = 159693, - [SMALL_STATE(4419)] = 159706, - [SMALL_STATE(4420)] = 159719, - [SMALL_STATE(4421)] = 159732, - [SMALL_STATE(4422)] = 159745, - [SMALL_STATE(4423)] = 159758, - [SMALL_STATE(4424)] = 159771, - [SMALL_STATE(4425)] = 159784, - [SMALL_STATE(4426)] = 159797, - [SMALL_STATE(4427)] = 159810, - [SMALL_STATE(4428)] = 159823, - [SMALL_STATE(4429)] = 159836, - [SMALL_STATE(4430)] = 159849, - [SMALL_STATE(4431)] = 159862, - [SMALL_STATE(4432)] = 159875, - [SMALL_STATE(4433)] = 159888, - [SMALL_STATE(4434)] = 159901, - [SMALL_STATE(4435)] = 159914, - [SMALL_STATE(4436)] = 159927, - [SMALL_STATE(4437)] = 159940, - [SMALL_STATE(4438)] = 159953, - [SMALL_STATE(4439)] = 159966, - [SMALL_STATE(4440)] = 159979, - [SMALL_STATE(4441)] = 159992, - [SMALL_STATE(4442)] = 160005, - [SMALL_STATE(4443)] = 160018, - [SMALL_STATE(4444)] = 160031, - [SMALL_STATE(4445)] = 160044, - [SMALL_STATE(4446)] = 160057, - [SMALL_STATE(4447)] = 160070, - [SMALL_STATE(4448)] = 160083, - [SMALL_STATE(4449)] = 160096, - [SMALL_STATE(4450)] = 160109, - [SMALL_STATE(4451)] = 160119, - [SMALL_STATE(4452)] = 160129, - [SMALL_STATE(4453)] = 160139, - [SMALL_STATE(4454)] = 160149, - [SMALL_STATE(4455)] = 160159, - [SMALL_STATE(4456)] = 160169, - [SMALL_STATE(4457)] = 160179, - [SMALL_STATE(4458)] = 160189, - [SMALL_STATE(4459)] = 160199, - [SMALL_STATE(4460)] = 160209, - [SMALL_STATE(4461)] = 160219, - [SMALL_STATE(4462)] = 160229, - [SMALL_STATE(4463)] = 160239, - [SMALL_STATE(4464)] = 160249, - [SMALL_STATE(4465)] = 160259, - [SMALL_STATE(4466)] = 160269, - [SMALL_STATE(4467)] = 160279, - [SMALL_STATE(4468)] = 160289, - [SMALL_STATE(4469)] = 160299, - [SMALL_STATE(4470)] = 160309, - [SMALL_STATE(4471)] = 160319, - [SMALL_STATE(4472)] = 160329, - [SMALL_STATE(4473)] = 160339, - [SMALL_STATE(4474)] = 160347, - [SMALL_STATE(4475)] = 160355, - [SMALL_STATE(4476)] = 160365, - [SMALL_STATE(4477)] = 160375, - [SMALL_STATE(4478)] = 160385, - [SMALL_STATE(4479)] = 160395, - [SMALL_STATE(4480)] = 160405, - [SMALL_STATE(4481)] = 160413, - [SMALL_STATE(4482)] = 160423, - [SMALL_STATE(4483)] = 160433, - [SMALL_STATE(4484)] = 160443, - [SMALL_STATE(4485)] = 160453, - [SMALL_STATE(4486)] = 160463, - [SMALL_STATE(4487)] = 160471, - [SMALL_STATE(4488)] = 160481, - [SMALL_STATE(4489)] = 160491, - [SMALL_STATE(4490)] = 160501, - [SMALL_STATE(4491)] = 160511, - [SMALL_STATE(4492)] = 160521, - [SMALL_STATE(4493)] = 160529, - [SMALL_STATE(4494)] = 160539, - [SMALL_STATE(4495)] = 160549, - [SMALL_STATE(4496)] = 160559, - [SMALL_STATE(4497)] = 160567, - [SMALL_STATE(4498)] = 160577, - [SMALL_STATE(4499)] = 160585, - [SMALL_STATE(4500)] = 160595, - [SMALL_STATE(4501)] = 160605, - [SMALL_STATE(4502)] = 160615, - [SMALL_STATE(4503)] = 160625, - [SMALL_STATE(4504)] = 160633, - [SMALL_STATE(4505)] = 160643, - [SMALL_STATE(4506)] = 160651, - [SMALL_STATE(4507)] = 160661, - [SMALL_STATE(4508)] = 160671, - [SMALL_STATE(4509)] = 160681, - [SMALL_STATE(4510)] = 160691, - [SMALL_STATE(4511)] = 160699, - [SMALL_STATE(4512)] = 160709, - [SMALL_STATE(4513)] = 160719, - [SMALL_STATE(4514)] = 160729, - [SMALL_STATE(4515)] = 160737, - [SMALL_STATE(4516)] = 160747, - [SMALL_STATE(4517)] = 160755, - [SMALL_STATE(4518)] = 160765, - [SMALL_STATE(4519)] = 160773, - [SMALL_STATE(4520)] = 160781, - [SMALL_STATE(4521)] = 160791, - [SMALL_STATE(4522)] = 160801, - [SMALL_STATE(4523)] = 160809, - [SMALL_STATE(4524)] = 160819, - [SMALL_STATE(4525)] = 160829, - [SMALL_STATE(4526)] = 160839, - [SMALL_STATE(4527)] = 160849, - [SMALL_STATE(4528)] = 160859, - [SMALL_STATE(4529)] = 160867, - [SMALL_STATE(4530)] = 160877, - [SMALL_STATE(4531)] = 160887, - [SMALL_STATE(4532)] = 160895, - [SMALL_STATE(4533)] = 160905, - [SMALL_STATE(4534)] = 160915, - [SMALL_STATE(4535)] = 160925, - [SMALL_STATE(4536)] = 160933, - [SMALL_STATE(4537)] = 160943, - [SMALL_STATE(4538)] = 160953, - [SMALL_STATE(4539)] = 160963, - [SMALL_STATE(4540)] = 160971, - [SMALL_STATE(4541)] = 160979, - [SMALL_STATE(4542)] = 160989, - [SMALL_STATE(4543)] = 160999, - [SMALL_STATE(4544)] = 161007, - [SMALL_STATE(4545)] = 161017, - [SMALL_STATE(4546)] = 161027, - [SMALL_STATE(4547)] = 161037, - [SMALL_STATE(4548)] = 161047, - [SMALL_STATE(4549)] = 161057, - [SMALL_STATE(4550)] = 161067, - [SMALL_STATE(4551)] = 161077, - [SMALL_STATE(4552)] = 161087, - [SMALL_STATE(4553)] = 161097, - [SMALL_STATE(4554)] = 161107, - [SMALL_STATE(4555)] = 161117, - [SMALL_STATE(4556)] = 161127, - [SMALL_STATE(4557)] = 161135, - [SMALL_STATE(4558)] = 161145, - [SMALL_STATE(4559)] = 161155, - [SMALL_STATE(4560)] = 161165, - [SMALL_STATE(4561)] = 161175, - [SMALL_STATE(4562)] = 161183, - [SMALL_STATE(4563)] = 161193, - [SMALL_STATE(4564)] = 161201, - [SMALL_STATE(4565)] = 161211, - [SMALL_STATE(4566)] = 161221, - [SMALL_STATE(4567)] = 161231, - [SMALL_STATE(4568)] = 161241, - [SMALL_STATE(4569)] = 161249, - [SMALL_STATE(4570)] = 161257, - [SMALL_STATE(4571)] = 161267, - [SMALL_STATE(4572)] = 161275, - [SMALL_STATE(4573)] = 161285, - [SMALL_STATE(4574)] = 161293, - [SMALL_STATE(4575)] = 161303, - [SMALL_STATE(4576)] = 161313, - [SMALL_STATE(4577)] = 161323, - [SMALL_STATE(4578)] = 161333, - [SMALL_STATE(4579)] = 161340, - [SMALL_STATE(4580)] = 161347, - [SMALL_STATE(4581)] = 161354, - [SMALL_STATE(4582)] = 161361, - [SMALL_STATE(4583)] = 161368, - [SMALL_STATE(4584)] = 161375, - [SMALL_STATE(4585)] = 161382, - [SMALL_STATE(4586)] = 161389, - [SMALL_STATE(4587)] = 161396, - [SMALL_STATE(4588)] = 161403, - [SMALL_STATE(4589)] = 161410, - [SMALL_STATE(4590)] = 161417, - [SMALL_STATE(4591)] = 161424, - [SMALL_STATE(4592)] = 161431, - [SMALL_STATE(4593)] = 161438, - [SMALL_STATE(4594)] = 161445, - [SMALL_STATE(4595)] = 161452, - [SMALL_STATE(4596)] = 161459, - [SMALL_STATE(4597)] = 161466, - [SMALL_STATE(4598)] = 161473, - [SMALL_STATE(4599)] = 161480, - [SMALL_STATE(4600)] = 161487, - [SMALL_STATE(4601)] = 161494, - [SMALL_STATE(4602)] = 161501, - [SMALL_STATE(4603)] = 161508, - [SMALL_STATE(4604)] = 161515, - [SMALL_STATE(4605)] = 161522, - [SMALL_STATE(4606)] = 161529, - [SMALL_STATE(4607)] = 161536, - [SMALL_STATE(4608)] = 161543, - [SMALL_STATE(4609)] = 161550, - [SMALL_STATE(4610)] = 161557, - [SMALL_STATE(4611)] = 161564, - [SMALL_STATE(4612)] = 161571, - [SMALL_STATE(4613)] = 161578, - [SMALL_STATE(4614)] = 161585, - [SMALL_STATE(4615)] = 161592, - [SMALL_STATE(4616)] = 161599, - [SMALL_STATE(4617)] = 161606, - [SMALL_STATE(4618)] = 161613, - [SMALL_STATE(4619)] = 161620, - [SMALL_STATE(4620)] = 161627, - [SMALL_STATE(4621)] = 161634, - [SMALL_STATE(4622)] = 161641, - [SMALL_STATE(4623)] = 161648, - [SMALL_STATE(4624)] = 161655, - [SMALL_STATE(4625)] = 161662, - [SMALL_STATE(4626)] = 161669, - [SMALL_STATE(4627)] = 161676, - [SMALL_STATE(4628)] = 161683, - [SMALL_STATE(4629)] = 161690, - [SMALL_STATE(4630)] = 161697, - [SMALL_STATE(4631)] = 161704, - [SMALL_STATE(4632)] = 161711, - [SMALL_STATE(4633)] = 161718, - [SMALL_STATE(4634)] = 161725, - [SMALL_STATE(4635)] = 161732, - [SMALL_STATE(4636)] = 161739, - [SMALL_STATE(4637)] = 161746, - [SMALL_STATE(4638)] = 161753, - [SMALL_STATE(4639)] = 161760, - [SMALL_STATE(4640)] = 161767, - [SMALL_STATE(4641)] = 161774, - [SMALL_STATE(4642)] = 161781, - [SMALL_STATE(4643)] = 161788, - [SMALL_STATE(4644)] = 161795, - [SMALL_STATE(4645)] = 161802, - [SMALL_STATE(4646)] = 161809, - [SMALL_STATE(4647)] = 161816, - [SMALL_STATE(4648)] = 161823, - [SMALL_STATE(4649)] = 161830, - [SMALL_STATE(4650)] = 161837, - [SMALL_STATE(4651)] = 161844, - [SMALL_STATE(4652)] = 161851, - [SMALL_STATE(4653)] = 161858, - [SMALL_STATE(4654)] = 161865, - [SMALL_STATE(4655)] = 161872, - [SMALL_STATE(4656)] = 161879, - [SMALL_STATE(4657)] = 161886, - [SMALL_STATE(4658)] = 161893, - [SMALL_STATE(4659)] = 161900, - [SMALL_STATE(4660)] = 161907, - [SMALL_STATE(4661)] = 161914, - [SMALL_STATE(4662)] = 161921, - [SMALL_STATE(4663)] = 161928, - [SMALL_STATE(4664)] = 161935, - [SMALL_STATE(4665)] = 161942, - [SMALL_STATE(4666)] = 161949, - [SMALL_STATE(4667)] = 161956, - [SMALL_STATE(4668)] = 161963, - [SMALL_STATE(4669)] = 161970, - [SMALL_STATE(4670)] = 161977, - [SMALL_STATE(4671)] = 161984, - [SMALL_STATE(4672)] = 161991, - [SMALL_STATE(4673)] = 161998, - [SMALL_STATE(4674)] = 162005, - [SMALL_STATE(4675)] = 162012, - [SMALL_STATE(4676)] = 162019, - [SMALL_STATE(4677)] = 162026, - [SMALL_STATE(4678)] = 162033, - [SMALL_STATE(4679)] = 162040, - [SMALL_STATE(4680)] = 162047, - [SMALL_STATE(4681)] = 162054, - [SMALL_STATE(4682)] = 162061, - [SMALL_STATE(4683)] = 162068, - [SMALL_STATE(4684)] = 162075, - [SMALL_STATE(4685)] = 162082, - [SMALL_STATE(4686)] = 162089, - [SMALL_STATE(4687)] = 162096, - [SMALL_STATE(4688)] = 162103, - [SMALL_STATE(4689)] = 162110, - [SMALL_STATE(4690)] = 162117, - [SMALL_STATE(4691)] = 162124, - [SMALL_STATE(4692)] = 162131, - [SMALL_STATE(4693)] = 162138, - [SMALL_STATE(4694)] = 162145, - [SMALL_STATE(4695)] = 162152, - [SMALL_STATE(4696)] = 162159, - [SMALL_STATE(4697)] = 162166, - [SMALL_STATE(4698)] = 162173, - [SMALL_STATE(4699)] = 162180, - [SMALL_STATE(4700)] = 162187, - [SMALL_STATE(4701)] = 162194, - [SMALL_STATE(4702)] = 162201, - [SMALL_STATE(4703)] = 162208, - [SMALL_STATE(4704)] = 162215, - [SMALL_STATE(4705)] = 162222, - [SMALL_STATE(4706)] = 162229, - [SMALL_STATE(4707)] = 162236, - [SMALL_STATE(4708)] = 162243, - [SMALL_STATE(4709)] = 162250, - [SMALL_STATE(4710)] = 162257, - [SMALL_STATE(4711)] = 162264, - [SMALL_STATE(4712)] = 162271, - [SMALL_STATE(4713)] = 162278, - [SMALL_STATE(4714)] = 162285, - [SMALL_STATE(4715)] = 162292, - [SMALL_STATE(4716)] = 162299, - [SMALL_STATE(4717)] = 162306, - [SMALL_STATE(4718)] = 162313, - [SMALL_STATE(4719)] = 162320, - [SMALL_STATE(4720)] = 162327, - [SMALL_STATE(4721)] = 162334, - [SMALL_STATE(4722)] = 162341, - [SMALL_STATE(4723)] = 162348, - [SMALL_STATE(4724)] = 162355, - [SMALL_STATE(4725)] = 162362, - [SMALL_STATE(4726)] = 162369, - [SMALL_STATE(4727)] = 162376, - [SMALL_STATE(4728)] = 162383, - [SMALL_STATE(4729)] = 162390, - [SMALL_STATE(4730)] = 162397, - [SMALL_STATE(4731)] = 162404, - [SMALL_STATE(4732)] = 162411, - [SMALL_STATE(4733)] = 162418, - [SMALL_STATE(4734)] = 162425, - [SMALL_STATE(4735)] = 162432, - [SMALL_STATE(4736)] = 162439, - [SMALL_STATE(4737)] = 162446, - [SMALL_STATE(4738)] = 162453, - [SMALL_STATE(4739)] = 162460, - [SMALL_STATE(4740)] = 162467, - [SMALL_STATE(4741)] = 162474, - [SMALL_STATE(4742)] = 162481, - [SMALL_STATE(4743)] = 162488, - [SMALL_STATE(4744)] = 162495, - [SMALL_STATE(4745)] = 162502, - [SMALL_STATE(4746)] = 162509, - [SMALL_STATE(4747)] = 162516, - [SMALL_STATE(4748)] = 162523, - [SMALL_STATE(4749)] = 162530, - [SMALL_STATE(4750)] = 162537, - [SMALL_STATE(4751)] = 162544, - [SMALL_STATE(4752)] = 162551, - [SMALL_STATE(4753)] = 162558, - [SMALL_STATE(4754)] = 162565, - [SMALL_STATE(4755)] = 162572, - [SMALL_STATE(4756)] = 162579, - [SMALL_STATE(4757)] = 162586, - [SMALL_STATE(4758)] = 162593, - [SMALL_STATE(4759)] = 162600, - [SMALL_STATE(4760)] = 162607, - [SMALL_STATE(4761)] = 162614, - [SMALL_STATE(4762)] = 162621, - [SMALL_STATE(4763)] = 162628, - [SMALL_STATE(4764)] = 162635, - [SMALL_STATE(4765)] = 162642, - [SMALL_STATE(4766)] = 162649, - [SMALL_STATE(4767)] = 162656, - [SMALL_STATE(4768)] = 162663, - [SMALL_STATE(4769)] = 162670, - [SMALL_STATE(4770)] = 162677, - [SMALL_STATE(4771)] = 162684, - [SMALL_STATE(4772)] = 162691, - [SMALL_STATE(4773)] = 162698, - [SMALL_STATE(4774)] = 162705, - [SMALL_STATE(4775)] = 162712, - [SMALL_STATE(4776)] = 162719, - [SMALL_STATE(4777)] = 162726, - [SMALL_STATE(4778)] = 162733, - [SMALL_STATE(4779)] = 162740, - [SMALL_STATE(4780)] = 162747, - [SMALL_STATE(4781)] = 162754, - [SMALL_STATE(4782)] = 162761, - [SMALL_STATE(4783)] = 162768, - [SMALL_STATE(4784)] = 162775, - [SMALL_STATE(4785)] = 162782, - [SMALL_STATE(4786)] = 162789, - [SMALL_STATE(4787)] = 162796, - [SMALL_STATE(4788)] = 162803, - [SMALL_STATE(4789)] = 162810, - [SMALL_STATE(4790)] = 162817, - [SMALL_STATE(4791)] = 162824, - [SMALL_STATE(4792)] = 162831, - [SMALL_STATE(4793)] = 162838, - [SMALL_STATE(4794)] = 162845, - [SMALL_STATE(4795)] = 162852, - [SMALL_STATE(4796)] = 162859, - [SMALL_STATE(4797)] = 162866, - [SMALL_STATE(4798)] = 162873, - [SMALL_STATE(4799)] = 162880, - [SMALL_STATE(4800)] = 162887, - [SMALL_STATE(4801)] = 162894, - [SMALL_STATE(4802)] = 162901, - [SMALL_STATE(4803)] = 162908, - [SMALL_STATE(4804)] = 162915, - [SMALL_STATE(4805)] = 162922, - [SMALL_STATE(4806)] = 162929, - [SMALL_STATE(4807)] = 162936, - [SMALL_STATE(4808)] = 162943, - [SMALL_STATE(4809)] = 162950, - [SMALL_STATE(4810)] = 162957, - [SMALL_STATE(4811)] = 162964, - [SMALL_STATE(4812)] = 162971, - [SMALL_STATE(4813)] = 162978, - [SMALL_STATE(4814)] = 162985, - [SMALL_STATE(4815)] = 162992, - [SMALL_STATE(4816)] = 162999, - [SMALL_STATE(4817)] = 163006, - [SMALL_STATE(4818)] = 163013, - [SMALL_STATE(4819)] = 163020, - [SMALL_STATE(4820)] = 163027, - [SMALL_STATE(4821)] = 163034, - [SMALL_STATE(4822)] = 163041, - [SMALL_STATE(4823)] = 163048, - [SMALL_STATE(4824)] = 163055, - [SMALL_STATE(4825)] = 163062, - [SMALL_STATE(4826)] = 163069, - [SMALL_STATE(4827)] = 163076, - [SMALL_STATE(4828)] = 163083, - [SMALL_STATE(4829)] = 163090, - [SMALL_STATE(4830)] = 163097, - [SMALL_STATE(4831)] = 163104, - [SMALL_STATE(4832)] = 163111, - [SMALL_STATE(4833)] = 163118, - [SMALL_STATE(4834)] = 163125, - [SMALL_STATE(4835)] = 163132, - [SMALL_STATE(4836)] = 163139, - [SMALL_STATE(4837)] = 163146, - [SMALL_STATE(4838)] = 163153, - [SMALL_STATE(4839)] = 163160, - [SMALL_STATE(4840)] = 163167, - [SMALL_STATE(4841)] = 163174, - [SMALL_STATE(4842)] = 163181, + [SMALL_STATE(1530)] = 82396, + [SMALL_STATE(1531)] = 82426, + [SMALL_STATE(1532)] = 82470, + [SMALL_STATE(1533)] = 82500, + [SMALL_STATE(1534)] = 82564, + [SMALL_STATE(1535)] = 82628, + [SMALL_STATE(1536)] = 82658, + [SMALL_STATE(1537)] = 82688, + [SMALL_STATE(1538)] = 82752, + [SMALL_STATE(1539)] = 82796, + [SMALL_STATE(1540)] = 82858, + [SMALL_STATE(1541)] = 82888, + [SMALL_STATE(1542)] = 82918, + [SMALL_STATE(1543)] = 82982, + [SMALL_STATE(1544)] = 83044, + [SMALL_STATE(1545)] = 83106, + [SMALL_STATE(1546)] = 83168, + [SMALL_STATE(1547)] = 83230, + [SMALL_STATE(1548)] = 83260, + [SMALL_STATE(1549)] = 83324, + [SMALL_STATE(1550)] = 83386, + [SMALL_STATE(1551)] = 83416, + [SMALL_STATE(1552)] = 83446, + [SMALL_STATE(1553)] = 83476, + [SMALL_STATE(1554)] = 83538, + [SMALL_STATE(1555)] = 83600, + [SMALL_STATE(1556)] = 83662, + [SMALL_STATE(1557)] = 83692, + [SMALL_STATE(1558)] = 83754, + [SMALL_STATE(1559)] = 83816, + [SMALL_STATE(1560)] = 83880, + [SMALL_STATE(1561)] = 83942, + [SMALL_STATE(1562)] = 84006, + [SMALL_STATE(1563)] = 84070, + [SMALL_STATE(1564)] = 84100, + [SMALL_STATE(1565)] = 84164, + [SMALL_STATE(1566)] = 84194, + [SMALL_STATE(1567)] = 84226, + [SMALL_STATE(1568)] = 84258, + [SMALL_STATE(1569)] = 84322, + [SMALL_STATE(1570)] = 84366, + [SMALL_STATE(1571)] = 84428, + [SMALL_STATE(1572)] = 84490, + [SMALL_STATE(1573)] = 84552, + [SMALL_STATE(1574)] = 84614, + [SMALL_STATE(1575)] = 84646, + [SMALL_STATE(1576)] = 84710, + [SMALL_STATE(1577)] = 84774, + [SMALL_STATE(1578)] = 84818, + [SMALL_STATE(1579)] = 84880, + [SMALL_STATE(1580)] = 84910, + [SMALL_STATE(1581)] = 84939, + [SMALL_STATE(1582)] = 85000, + [SMALL_STATE(1583)] = 85061, + [SMALL_STATE(1584)] = 85104, + [SMALL_STATE(1585)] = 85133, + [SMALL_STATE(1586)] = 85194, + [SMALL_STATE(1587)] = 85255, + [SMALL_STATE(1588)] = 85284, + [SMALL_STATE(1589)] = 85345, + [SMALL_STATE(1590)] = 85374, + [SMALL_STATE(1591)] = 85403, + [SMALL_STATE(1592)] = 85432, + [SMALL_STATE(1593)] = 85461, + [SMALL_STATE(1594)] = 85490, + [SMALL_STATE(1595)] = 85519, + [SMALL_STATE(1596)] = 85548, + [SMALL_STATE(1597)] = 85609, + [SMALL_STATE(1598)] = 85638, + [SMALL_STATE(1599)] = 85667, + [SMALL_STATE(1600)] = 85696, + [SMALL_STATE(1601)] = 85739, + [SMALL_STATE(1602)] = 85768, + [SMALL_STATE(1603)] = 85797, + [SMALL_STATE(1604)] = 85826, + [SMALL_STATE(1605)] = 85867, + [SMALL_STATE(1606)] = 85928, + [SMALL_STATE(1607)] = 85957, + [SMALL_STATE(1608)] = 85986, + [SMALL_STATE(1609)] = 86027, + [SMALL_STATE(1610)] = 86056, + [SMALL_STATE(1611)] = 86085, + [SMALL_STATE(1612)] = 86126, + [SMALL_STATE(1613)] = 86155, + [SMALL_STATE(1614)] = 86184, + [SMALL_STATE(1615)] = 86225, + [SMALL_STATE(1616)] = 86254, + [SMALL_STATE(1617)] = 86295, + [SMALL_STATE(1618)] = 86324, + [SMALL_STATE(1619)] = 86365, + [SMALL_STATE(1620)] = 86394, + [SMALL_STATE(1621)] = 86423, + [SMALL_STATE(1622)] = 86452, + [SMALL_STATE(1623)] = 86493, + [SMALL_STATE(1624)] = 86534, + [SMALL_STATE(1625)] = 86563, + [SMALL_STATE(1626)] = 86592, + [SMALL_STATE(1627)] = 86621, + [SMALL_STATE(1628)] = 86662, + [SMALL_STATE(1629)] = 86691, + [SMALL_STATE(1630)] = 86720, + [SMALL_STATE(1631)] = 86749, + [SMALL_STATE(1632)] = 86778, + [SMALL_STATE(1633)] = 86807, + [SMALL_STATE(1634)] = 86836, + [SMALL_STATE(1635)] = 86879, + [SMALL_STATE(1636)] = 86908, + [SMALL_STATE(1637)] = 86937, + [SMALL_STATE(1638)] = 86966, + [SMALL_STATE(1639)] = 86995, + [SMALL_STATE(1640)] = 87038, + [SMALL_STATE(1641)] = 87079, + [SMALL_STATE(1642)] = 87120, + [SMALL_STATE(1643)] = 87149, + [SMALL_STATE(1644)] = 87190, + [SMALL_STATE(1645)] = 87219, + [SMALL_STATE(1646)] = 87248, + [SMALL_STATE(1647)] = 87279, + [SMALL_STATE(1648)] = 87310, + [SMALL_STATE(1649)] = 87371, + [SMALL_STATE(1650)] = 87430, + [SMALL_STATE(1651)] = 87459, + [SMALL_STATE(1652)] = 87518, + [SMALL_STATE(1653)] = 87577, + [SMALL_STATE(1654)] = 87638, + [SMALL_STATE(1655)] = 87667, + [SMALL_STATE(1656)] = 87696, + [SMALL_STATE(1657)] = 87725, + [SMALL_STATE(1658)] = 87754, + [SMALL_STATE(1659)] = 87813, + [SMALL_STATE(1660)] = 87874, + [SMALL_STATE(1661)] = 87933, + [SMALL_STATE(1662)] = 87962, + [SMALL_STATE(1663)] = 87991, + [SMALL_STATE(1664)] = 88050, + [SMALL_STATE(1665)] = 88111, + [SMALL_STATE(1666)] = 88140, + [SMALL_STATE(1667)] = 88169, + [SMALL_STATE(1668)] = 88198, + [SMALL_STATE(1669)] = 88241, + [SMALL_STATE(1670)] = 88284, + [SMALL_STATE(1671)] = 88343, + [SMALL_STATE(1672)] = 88372, + [SMALL_STATE(1673)] = 88431, + [SMALL_STATE(1674)] = 88492, + [SMALL_STATE(1675)] = 88521, + [SMALL_STATE(1676)] = 88550, + [SMALL_STATE(1677)] = 88579, + [SMALL_STATE(1678)] = 88608, + [SMALL_STATE(1679)] = 88649, + [SMALL_STATE(1680)] = 88708, + [SMALL_STATE(1681)] = 88769, + [SMALL_STATE(1682)] = 88798, + [SMALL_STATE(1683)] = 88827, + [SMALL_STATE(1684)] = 88868, + [SMALL_STATE(1685)] = 88909, + [SMALL_STATE(1686)] = 88950, + [SMALL_STATE(1687)] = 89011, + [SMALL_STATE(1688)] = 89072, + [SMALL_STATE(1689)] = 89101, + [SMALL_STATE(1690)] = 89130, + [SMALL_STATE(1691)] = 89191, + [SMALL_STATE(1692)] = 89220, + [SMALL_STATE(1693)] = 89249, + [SMALL_STATE(1694)] = 89290, + [SMALL_STATE(1695)] = 89319, + [SMALL_STATE(1696)] = 89348, + [SMALL_STATE(1697)] = 89377, + [SMALL_STATE(1698)] = 89418, + [SMALL_STATE(1699)] = 89479, + [SMALL_STATE(1700)] = 89508, + [SMALL_STATE(1701)] = 89569, + [SMALL_STATE(1702)] = 89630, + [SMALL_STATE(1703)] = 89691, + [SMALL_STATE(1704)] = 89752, + [SMALL_STATE(1705)] = 89781, + [SMALL_STATE(1706)] = 89842, + [SMALL_STATE(1707)] = 89903, + [SMALL_STATE(1708)] = 89932, + [SMALL_STATE(1709)] = 89973, + [SMALL_STATE(1710)] = 90002, + [SMALL_STATE(1711)] = 90043, + [SMALL_STATE(1712)] = 90084, + [SMALL_STATE(1713)] = 90145, + [SMALL_STATE(1714)] = 90186, + [SMALL_STATE(1715)] = 90247, + [SMALL_STATE(1716)] = 90308, + [SMALL_STATE(1717)] = 90369, + [SMALL_STATE(1718)] = 90410, + [SMALL_STATE(1719)] = 90471, + [SMALL_STATE(1720)] = 90532, + [SMALL_STATE(1721)] = 90561, + [SMALL_STATE(1722)] = 90622, + [SMALL_STATE(1723)] = 90683, + [SMALL_STATE(1724)] = 90712, + [SMALL_STATE(1725)] = 90753, + [SMALL_STATE(1726)] = 90794, + [SMALL_STATE(1727)] = 90823, + [SMALL_STATE(1728)] = 90864, + [SMALL_STATE(1729)] = 90905, + [SMALL_STATE(1730)] = 90946, + [SMALL_STATE(1731)] = 90987, + [SMALL_STATE(1732)] = 91016, + [SMALL_STATE(1733)] = 91077, + [SMALL_STATE(1734)] = 91106, + [SMALL_STATE(1735)] = 91135, + [SMALL_STATE(1736)] = 91164, + [SMALL_STATE(1737)] = 91193, + [SMALL_STATE(1738)] = 91222, + [SMALL_STATE(1739)] = 91251, + [SMALL_STATE(1740)] = 91280, + [SMALL_STATE(1741)] = 91321, + [SMALL_STATE(1742)] = 91350, + [SMALL_STATE(1743)] = 91379, + [SMALL_STATE(1744)] = 91408, + [SMALL_STATE(1745)] = 91469, + [SMALL_STATE(1746)] = 91510, + [SMALL_STATE(1747)] = 91551, + [SMALL_STATE(1748)] = 91592, + [SMALL_STATE(1749)] = 91633, + [SMALL_STATE(1750)] = 91662, + [SMALL_STATE(1751)] = 91691, + [SMALL_STATE(1752)] = 91720, + [SMALL_STATE(1753)] = 91761, + [SMALL_STATE(1754)] = 91790, + [SMALL_STATE(1755)] = 91831, + [SMALL_STATE(1756)] = 91892, + [SMALL_STATE(1757)] = 91921, + [SMALL_STATE(1758)] = 91950, + [SMALL_STATE(1759)] = 91979, + [SMALL_STATE(1760)] = 92008, + [SMALL_STATE(1761)] = 92037, + [SMALL_STATE(1762)] = 92066, + [SMALL_STATE(1763)] = 92095, + [SMALL_STATE(1764)] = 92136, + [SMALL_STATE(1765)] = 92177, + [SMALL_STATE(1766)] = 92206, + [SMALL_STATE(1767)] = 92235, + [SMALL_STATE(1768)] = 92296, + [SMALL_STATE(1769)] = 92357, + [SMALL_STATE(1770)] = 92386, + [SMALL_STATE(1771)] = 92415, + [SMALL_STATE(1772)] = 92444, + [SMALL_STATE(1773)] = 92485, + [SMALL_STATE(1774)] = 92514, + [SMALL_STATE(1775)] = 92543, + [SMALL_STATE(1776)] = 92584, + [SMALL_STATE(1777)] = 92645, + [SMALL_STATE(1778)] = 92674, + [SMALL_STATE(1779)] = 92703, + [SMALL_STATE(1780)] = 92732, + [SMALL_STATE(1781)] = 92773, + [SMALL_STATE(1782)] = 92814, + [SMALL_STATE(1783)] = 92857, + [SMALL_STATE(1784)] = 92888, + [SMALL_STATE(1785)] = 92919, + [SMALL_STATE(1786)] = 92948, + [SMALL_STATE(1787)] = 92977, + [SMALL_STATE(1788)] = 93006, + [SMALL_STATE(1789)] = 93067, + [SMALL_STATE(1790)] = 93128, + [SMALL_STATE(1791)] = 93171, + [SMALL_STATE(1792)] = 93212, + [SMALL_STATE(1793)] = 93253, + [SMALL_STATE(1794)] = 93314, + [SMALL_STATE(1795)] = 93355, + [SMALL_STATE(1796)] = 93416, + [SMALL_STATE(1797)] = 93457, + [SMALL_STATE(1798)] = 93486, + [SMALL_STATE(1799)] = 93547, + [SMALL_STATE(1800)] = 93588, + [SMALL_STATE(1801)] = 93629, + [SMALL_STATE(1802)] = 93670, + [SMALL_STATE(1803)] = 93713, + [SMALL_STATE(1804)] = 93743, + [SMALL_STATE(1805)] = 93771, + [SMALL_STATE(1806)] = 93811, + [SMALL_STATE(1807)] = 93839, + [SMALL_STATE(1808)] = 93867, + [SMALL_STATE(1809)] = 93895, + [SMALL_STATE(1810)] = 93935, + [SMALL_STATE(1811)] = 93963, + [SMALL_STATE(1812)] = 93991, + [SMALL_STATE(1813)] = 94019, + [SMALL_STATE(1814)] = 94047, + [SMALL_STATE(1815)] = 94075, + [SMALL_STATE(1816)] = 94103, + [SMALL_STATE(1817)] = 94161, + [SMALL_STATE(1818)] = 94189, + [SMALL_STATE(1819)] = 94217, + [SMALL_STATE(1820)] = 94245, + [SMALL_STATE(1821)] = 94273, + [SMALL_STATE(1822)] = 94301, + [SMALL_STATE(1823)] = 94329, + [SMALL_STATE(1824)] = 94357, + [SMALL_STATE(1825)] = 94385, + [SMALL_STATE(1826)] = 94413, + [SMALL_STATE(1827)] = 94443, + [SMALL_STATE(1828)] = 94473, + [SMALL_STATE(1829)] = 94501, + [SMALL_STATE(1830)] = 94531, + [SMALL_STATE(1831)] = 94559, + [SMALL_STATE(1832)] = 94587, + [SMALL_STATE(1833)] = 94617, + [SMALL_STATE(1834)] = 94645, + [SMALL_STATE(1835)] = 94685, + [SMALL_STATE(1836)] = 94713, + [SMALL_STATE(1837)] = 94753, + [SMALL_STATE(1838)] = 94793, + [SMALL_STATE(1839)] = 94821, + [SMALL_STATE(1840)] = 94861, + [SMALL_STATE(1841)] = 94889, + [SMALL_STATE(1842)] = 94917, + [SMALL_STATE(1843)] = 94945, + [SMALL_STATE(1844)] = 94973, + [SMALL_STATE(1845)] = 95001, + [SMALL_STATE(1846)] = 95029, + [SMALL_STATE(1847)] = 95057, + [SMALL_STATE(1848)] = 95085, + [SMALL_STATE(1849)] = 95143, + [SMALL_STATE(1850)] = 95171, + [SMALL_STATE(1851)] = 95199, + [SMALL_STATE(1852)] = 95227, + [SMALL_STATE(1853)] = 95255, + [SMALL_STATE(1854)] = 95285, + [SMALL_STATE(1855)] = 95343, + [SMALL_STATE(1856)] = 95373, + [SMALL_STATE(1857)] = 95403, + [SMALL_STATE(1858)] = 95461, + [SMALL_STATE(1859)] = 95501, + [SMALL_STATE(1860)] = 95529, + [SMALL_STATE(1861)] = 95557, + [SMALL_STATE(1862)] = 95615, + [SMALL_STATE(1863)] = 95673, + [SMALL_STATE(1864)] = 95701, + [SMALL_STATE(1865)] = 95729, + [SMALL_STATE(1866)] = 95787, + [SMALL_STATE(1867)] = 95845, + [SMALL_STATE(1868)] = 95873, + [SMALL_STATE(1869)] = 95901, + [SMALL_STATE(1870)] = 95959, + [SMALL_STATE(1871)] = 95987, + [SMALL_STATE(1872)] = 96015, + [SMALL_STATE(1873)] = 96045, + [SMALL_STATE(1874)] = 96075, + [SMALL_STATE(1875)] = 96103, + [SMALL_STATE(1876)] = 96161, + [SMALL_STATE(1877)] = 96191, + [SMALL_STATE(1878)] = 96221, + [SMALL_STATE(1879)] = 96279, + [SMALL_STATE(1880)] = 96307, + [SMALL_STATE(1881)] = 96335, + [SMALL_STATE(1882)] = 96363, + [SMALL_STATE(1883)] = 96391, + [SMALL_STATE(1884)] = 96431, + [SMALL_STATE(1885)] = 96471, + [SMALL_STATE(1886)] = 96499, + [SMALL_STATE(1887)] = 96539, + [SMALL_STATE(1888)] = 96567, + [SMALL_STATE(1889)] = 96595, + [SMALL_STATE(1890)] = 96623, + [SMALL_STATE(1891)] = 96651, + [SMALL_STATE(1892)] = 96679, + [SMALL_STATE(1893)] = 96707, + [SMALL_STATE(1894)] = 96735, + [SMALL_STATE(1895)] = 96763, + [SMALL_STATE(1896)] = 96791, + [SMALL_STATE(1897)] = 96818, + [SMALL_STATE(1898)] = 96845, + [SMALL_STATE(1899)] = 96900, + [SMALL_STATE(1900)] = 96927, + [SMALL_STATE(1901)] = 96954, + [SMALL_STATE(1902)] = 96983, + [SMALL_STATE(1903)] = 97012, + [SMALL_STATE(1904)] = 97039, + [SMALL_STATE(1905)] = 97094, + [SMALL_STATE(1906)] = 97149, + [SMALL_STATE(1907)] = 97176, + [SMALL_STATE(1908)] = 97203, + [SMALL_STATE(1909)] = 97230, + [SMALL_STATE(1910)] = 97257, + [SMALL_STATE(1911)] = 97284, + [SMALL_STATE(1912)] = 97311, + [SMALL_STATE(1913)] = 97338, + [SMALL_STATE(1914)] = 97365, + [SMALL_STATE(1915)] = 97392, + [SMALL_STATE(1916)] = 97447, + [SMALL_STATE(1917)] = 97476, + [SMALL_STATE(1918)] = 97505, + [SMALL_STATE(1919)] = 97532, + [SMALL_STATE(1920)] = 97559, + [SMALL_STATE(1921)] = 97586, + [SMALL_STATE(1922)] = 97613, + [SMALL_STATE(1923)] = 97640, + [SMALL_STATE(1924)] = 97667, + [SMALL_STATE(1925)] = 97694, + [SMALL_STATE(1926)] = 97721, + [SMALL_STATE(1927)] = 97748, + [SMALL_STATE(1928)] = 97775, + [SMALL_STATE(1929)] = 97802, + [SMALL_STATE(1930)] = 97829, + [SMALL_STATE(1931)] = 97856, + [SMALL_STATE(1932)] = 97883, + [SMALL_STATE(1933)] = 97910, + [SMALL_STATE(1934)] = 97937, + [SMALL_STATE(1935)] = 97964, + [SMALL_STATE(1936)] = 97991, + [SMALL_STATE(1937)] = 98018, + [SMALL_STATE(1938)] = 98045, + [SMALL_STATE(1939)] = 98072, + [SMALL_STATE(1940)] = 98099, + [SMALL_STATE(1941)] = 98126, + [SMALL_STATE(1942)] = 98153, + [SMALL_STATE(1943)] = 98180, + [SMALL_STATE(1944)] = 98207, + [SMALL_STATE(1945)] = 98234, + [SMALL_STATE(1946)] = 98261, + [SMALL_STATE(1947)] = 98288, + [SMALL_STATE(1948)] = 98315, + [SMALL_STATE(1949)] = 98370, + [SMALL_STATE(1950)] = 98425, + [SMALL_STATE(1951)] = 98452, + [SMALL_STATE(1952)] = 98507, + [SMALL_STATE(1953)] = 98562, + [SMALL_STATE(1954)] = 98617, + [SMALL_STATE(1955)] = 98644, + [SMALL_STATE(1956)] = 98699, + [SMALL_STATE(1957)] = 98726, + [SMALL_STATE(1958)] = 98753, + [SMALL_STATE(1959)] = 98808, + [SMALL_STATE(1960)] = 98835, + [SMALL_STATE(1961)] = 98862, + [SMALL_STATE(1962)] = 98889, + [SMALL_STATE(1963)] = 98916, + [SMALL_STATE(1964)] = 98943, + [SMALL_STATE(1965)] = 98970, + [SMALL_STATE(1966)] = 98997, + [SMALL_STATE(1967)] = 99052, + [SMALL_STATE(1968)] = 99107, + [SMALL_STATE(1969)] = 99134, + [SMALL_STATE(1970)] = 99189, + [SMALL_STATE(1971)] = 99244, + [SMALL_STATE(1972)] = 99271, + [SMALL_STATE(1973)] = 99326, + [SMALL_STATE(1974)] = 99353, + [SMALL_STATE(1975)] = 99380, + [SMALL_STATE(1976)] = 99407, + [SMALL_STATE(1977)] = 99462, + [SMALL_STATE(1978)] = 99489, + [SMALL_STATE(1979)] = 99544, + [SMALL_STATE(1980)] = 99571, + [SMALL_STATE(1981)] = 99598, + [SMALL_STATE(1982)] = 99653, + [SMALL_STATE(1983)] = 99680, + [SMALL_STATE(1984)] = 99707, + [SMALL_STATE(1985)] = 99734, + [SMALL_STATE(1986)] = 99761, + [SMALL_STATE(1987)] = 99816, + [SMALL_STATE(1988)] = 99843, + [SMALL_STATE(1989)] = 99898, + [SMALL_STATE(1990)] = 99925, + [SMALL_STATE(1991)] = 99952, + [SMALL_STATE(1992)] = 99979, + [SMALL_STATE(1993)] = 100034, + [SMALL_STATE(1994)] = 100089, + [SMALL_STATE(1995)] = 100116, + [SMALL_STATE(1996)] = 100143, + [SMALL_STATE(1997)] = 100198, + [SMALL_STATE(1998)] = 100225, + [SMALL_STATE(1999)] = 100252, + [SMALL_STATE(2000)] = 100279, + [SMALL_STATE(2001)] = 100306, + [SMALL_STATE(2002)] = 100361, + [SMALL_STATE(2003)] = 100388, + [SMALL_STATE(2004)] = 100415, + [SMALL_STATE(2005)] = 100470, + [SMALL_STATE(2006)] = 100497, + [SMALL_STATE(2007)] = 100524, + [SMALL_STATE(2008)] = 100551, + [SMALL_STATE(2009)] = 100578, + [SMALL_STATE(2010)] = 100633, + [SMALL_STATE(2011)] = 100660, + [SMALL_STATE(2012)] = 100687, + [SMALL_STATE(2013)] = 100742, + [SMALL_STATE(2014)] = 100769, + [SMALL_STATE(2015)] = 100796, + [SMALL_STATE(2016)] = 100823, + [SMALL_STATE(2017)] = 100850, + [SMALL_STATE(2018)] = 100877, + [SMALL_STATE(2019)] = 100904, + [SMALL_STATE(2020)] = 100931, + [SMALL_STATE(2021)] = 100958, + [SMALL_STATE(2022)] = 100985, + [SMALL_STATE(2023)] = 101012, + [SMALL_STATE(2024)] = 101039, + [SMALL_STATE(2025)] = 101066, + [SMALL_STATE(2026)] = 101093, + [SMALL_STATE(2027)] = 101148, + [SMALL_STATE(2028)] = 101175, + [SMALL_STATE(2029)] = 101202, + [SMALL_STATE(2030)] = 101229, + [SMALL_STATE(2031)] = 101256, + [SMALL_STATE(2032)] = 101283, + [SMALL_STATE(2033)] = 101310, + [SMALL_STATE(2034)] = 101337, + [SMALL_STATE(2035)] = 101364, + [SMALL_STATE(2036)] = 101419, + [SMALL_STATE(2037)] = 101446, + [SMALL_STATE(2038)] = 101473, + [SMALL_STATE(2039)] = 101500, + [SMALL_STATE(2040)] = 101526, + [SMALL_STATE(2041)] = 101552, + [SMALL_STATE(2042)] = 101608, + [SMALL_STATE(2043)] = 101634, + [SMALL_STATE(2044)] = 101690, + [SMALL_STATE(2045)] = 101746, + [SMALL_STATE(2046)] = 101802, + [SMALL_STATE(2047)] = 101858, + [SMALL_STATE(2048)] = 101914, + [SMALL_STATE(2049)] = 101940, + [SMALL_STATE(2050)] = 101996, + [SMALL_STATE(2051)] = 102052, + [SMALL_STATE(2052)] = 102108, + [SMALL_STATE(2053)] = 102164, + [SMALL_STATE(2054)] = 102220, + [SMALL_STATE(2055)] = 102276, + [SMALL_STATE(2056)] = 102332, + [SMALL_STATE(2057)] = 102358, + [SMALL_STATE(2058)] = 102384, + [SMALL_STATE(2059)] = 102440, + [SMALL_STATE(2060)] = 102496, + [SMALL_STATE(2061)] = 102552, + [SMALL_STATE(2062)] = 102578, + [SMALL_STATE(2063)] = 102604, + [SMALL_STATE(2064)] = 102660, + [SMALL_STATE(2065)] = 102686, + [SMALL_STATE(2066)] = 102712, + [SMALL_STATE(2067)] = 102768, + [SMALL_STATE(2068)] = 102824, + [SMALL_STATE(2069)] = 102880, + [SMALL_STATE(2070)] = 102936, + [SMALL_STATE(2071)] = 102962, + [SMALL_STATE(2072)] = 103018, + [SMALL_STATE(2073)] = 103074, + [SMALL_STATE(2074)] = 103130, + [SMALL_STATE(2075)] = 103186, + [SMALL_STATE(2076)] = 103242, + [SMALL_STATE(2077)] = 103268, + [SMALL_STATE(2078)] = 103324, + [SMALL_STATE(2079)] = 103376, + [SMALL_STATE(2080)] = 103432, + [SMALL_STATE(2081)] = 103488, + [SMALL_STATE(2082)] = 103514, + [SMALL_STATE(2083)] = 103570, + [SMALL_STATE(2084)] = 103596, + [SMALL_STATE(2085)] = 103622, + [SMALL_STATE(2086)] = 103678, + [SMALL_STATE(2087)] = 103734, + [SMALL_STATE(2088)] = 103790, + [SMALL_STATE(2089)] = 103846, + [SMALL_STATE(2090)] = 103902, + [SMALL_STATE(2091)] = 103928, + [SMALL_STATE(2092)] = 103954, + [SMALL_STATE(2093)] = 104010, + [SMALL_STATE(2094)] = 104036, + [SMALL_STATE(2095)] = 104092, + [SMALL_STATE(2096)] = 104148, + [SMALL_STATE(2097)] = 104204, + [SMALL_STATE(2098)] = 104230, + [SMALL_STATE(2099)] = 104286, + [SMALL_STATE(2100)] = 104312, + [SMALL_STATE(2101)] = 104368, + [SMALL_STATE(2102)] = 104424, + [SMALL_STATE(2103)] = 104480, + [SMALL_STATE(2104)] = 104536, + [SMALL_STATE(2105)] = 104592, + [SMALL_STATE(2106)] = 104648, + [SMALL_STATE(2107)] = 104704, + [SMALL_STATE(2108)] = 104760, + [SMALL_STATE(2109)] = 104816, + [SMALL_STATE(2110)] = 104872, + [SMALL_STATE(2111)] = 104928, + [SMALL_STATE(2112)] = 104984, + [SMALL_STATE(2113)] = 105040, + [SMALL_STATE(2114)] = 105096, + [SMALL_STATE(2115)] = 105152, + [SMALL_STATE(2116)] = 105208, + [SMALL_STATE(2117)] = 105264, + [SMALL_STATE(2118)] = 105320, + [SMALL_STATE(2119)] = 105376, + [SMALL_STATE(2120)] = 105432, + [SMALL_STATE(2121)] = 105488, + [SMALL_STATE(2122)] = 105544, + [SMALL_STATE(2123)] = 105570, + [SMALL_STATE(2124)] = 105626, + [SMALL_STATE(2125)] = 105682, + [SMALL_STATE(2126)] = 105708, + [SMALL_STATE(2127)] = 105764, + [SMALL_STATE(2128)] = 105820, + [SMALL_STATE(2129)] = 105846, + [SMALL_STATE(2130)] = 105872, + [SMALL_STATE(2131)] = 105928, + [SMALL_STATE(2132)] = 105954, + [SMALL_STATE(2133)] = 105980, + [SMALL_STATE(2134)] = 106036, + [SMALL_STATE(2135)] = 106092, + [SMALL_STATE(2136)] = 106118, + [SMALL_STATE(2137)] = 106144, + [SMALL_STATE(2138)] = 106200, + [SMALL_STATE(2139)] = 106226, + [SMALL_STATE(2140)] = 106282, + [SMALL_STATE(2141)] = 106308, + [SMALL_STATE(2142)] = 106364, + [SMALL_STATE(2143)] = 106390, + [SMALL_STATE(2144)] = 106446, + [SMALL_STATE(2145)] = 106472, + [SMALL_STATE(2146)] = 106528, + [SMALL_STATE(2147)] = 106584, + [SMALL_STATE(2148)] = 106610, + [SMALL_STATE(2149)] = 106666, + [SMALL_STATE(2150)] = 106722, + [SMALL_STATE(2151)] = 106778, + [SMALL_STATE(2152)] = 106834, + [SMALL_STATE(2153)] = 106860, + [SMALL_STATE(2154)] = 106916, + [SMALL_STATE(2155)] = 106972, + [SMALL_STATE(2156)] = 107028, + [SMALL_STATE(2157)] = 107084, + [SMALL_STATE(2158)] = 107140, + [SMALL_STATE(2159)] = 107196, + [SMALL_STATE(2160)] = 107222, + [SMALL_STATE(2161)] = 107278, + [SMALL_STATE(2162)] = 107334, + [SMALL_STATE(2163)] = 107360, + [SMALL_STATE(2164)] = 107416, + [SMALL_STATE(2165)] = 107472, + [SMALL_STATE(2166)] = 107528, + [SMALL_STATE(2167)] = 107584, + [SMALL_STATE(2168)] = 107640, + [SMALL_STATE(2169)] = 107696, + [SMALL_STATE(2170)] = 107752, + [SMALL_STATE(2171)] = 107808, + [SMALL_STATE(2172)] = 107864, + [SMALL_STATE(2173)] = 107920, + [SMALL_STATE(2174)] = 107946, + [SMALL_STATE(2175)] = 107998, + [SMALL_STATE(2176)] = 108024, + [SMALL_STATE(2177)] = 108050, + [SMALL_STATE(2178)] = 108106, + [SMALL_STATE(2179)] = 108132, + [SMALL_STATE(2180)] = 108158, + [SMALL_STATE(2181)] = 108184, + [SMALL_STATE(2182)] = 108210, + [SMALL_STATE(2183)] = 108266, + [SMALL_STATE(2184)] = 108292, + [SMALL_STATE(2185)] = 108348, + [SMALL_STATE(2186)] = 108404, + [SMALL_STATE(2187)] = 108460, + [SMALL_STATE(2188)] = 108516, + [SMALL_STATE(2189)] = 108542, + [SMALL_STATE(2190)] = 108568, + [SMALL_STATE(2191)] = 108624, + [SMALL_STATE(2192)] = 108650, + [SMALL_STATE(2193)] = 108676, + [SMALL_STATE(2194)] = 108732, + [SMALL_STATE(2195)] = 108758, + [SMALL_STATE(2196)] = 108784, + [SMALL_STATE(2197)] = 108840, + [SMALL_STATE(2198)] = 108866, + [SMALL_STATE(2199)] = 108892, + [SMALL_STATE(2200)] = 108918, + [SMALL_STATE(2201)] = 108944, + [SMALL_STATE(2202)] = 108970, + [SMALL_STATE(2203)] = 109019, + [SMALL_STATE(2204)] = 109068, + [SMALL_STATE(2205)] = 109117, + [SMALL_STATE(2206)] = 109166, + [SMALL_STATE(2207)] = 109215, + [SMALL_STATE(2208)] = 109264, + [SMALL_STATE(2209)] = 109313, + [SMALL_STATE(2210)] = 109362, + [SMALL_STATE(2211)] = 109411, + [SMALL_STATE(2212)] = 109460, + [SMALL_STATE(2213)] = 109509, + [SMALL_STATE(2214)] = 109558, + [SMALL_STATE(2215)] = 109607, + [SMALL_STATE(2216)] = 109656, + [SMALL_STATE(2217)] = 109705, + [SMALL_STATE(2218)] = 109754, + [SMALL_STATE(2219)] = 109803, + [SMALL_STATE(2220)] = 109852, + [SMALL_STATE(2221)] = 109901, + [SMALL_STATE(2222)] = 109950, + [SMALL_STATE(2223)] = 109999, + [SMALL_STATE(2224)] = 110048, + [SMALL_STATE(2225)] = 110097, + [SMALL_STATE(2226)] = 110146, + [SMALL_STATE(2227)] = 110195, + [SMALL_STATE(2228)] = 110244, + [SMALL_STATE(2229)] = 110293, + [SMALL_STATE(2230)] = 110342, + [SMALL_STATE(2231)] = 110391, + [SMALL_STATE(2232)] = 110440, + [SMALL_STATE(2233)] = 110489, + [SMALL_STATE(2234)] = 110538, + [SMALL_STATE(2235)] = 110587, + [SMALL_STATE(2236)] = 110636, + [SMALL_STATE(2237)] = 110685, + [SMALL_STATE(2238)] = 110734, + [SMALL_STATE(2239)] = 110783, + [SMALL_STATE(2240)] = 110832, + [SMALL_STATE(2241)] = 110881, + [SMALL_STATE(2242)] = 110930, + [SMALL_STATE(2243)] = 110979, + [SMALL_STATE(2244)] = 111028, + [SMALL_STATE(2245)] = 111077, + [SMALL_STATE(2246)] = 111126, + [SMALL_STATE(2247)] = 111175, + [SMALL_STATE(2248)] = 111224, + [SMALL_STATE(2249)] = 111273, + [SMALL_STATE(2250)] = 111322, + [SMALL_STATE(2251)] = 111371, + [SMALL_STATE(2252)] = 111420, + [SMALL_STATE(2253)] = 111469, + [SMALL_STATE(2254)] = 111518, + [SMALL_STATE(2255)] = 111567, + [SMALL_STATE(2256)] = 111616, + [SMALL_STATE(2257)] = 111665, + [SMALL_STATE(2258)] = 111714, + [SMALL_STATE(2259)] = 111763, + [SMALL_STATE(2260)] = 111812, + [SMALL_STATE(2261)] = 111861, + [SMALL_STATE(2262)] = 111910, + [SMALL_STATE(2263)] = 111959, + [SMALL_STATE(2264)] = 112008, + [SMALL_STATE(2265)] = 112057, + [SMALL_STATE(2266)] = 112106, + [SMALL_STATE(2267)] = 112155, + [SMALL_STATE(2268)] = 112204, + [SMALL_STATE(2269)] = 112253, + [SMALL_STATE(2270)] = 112302, + [SMALL_STATE(2271)] = 112351, + [SMALL_STATE(2272)] = 112400, + [SMALL_STATE(2273)] = 112449, + [SMALL_STATE(2274)] = 112498, + [SMALL_STATE(2275)] = 112547, + [SMALL_STATE(2276)] = 112596, + [SMALL_STATE(2277)] = 112645, + [SMALL_STATE(2278)] = 112694, + [SMALL_STATE(2279)] = 112743, + [SMALL_STATE(2280)] = 112792, + [SMALL_STATE(2281)] = 112841, + [SMALL_STATE(2282)] = 112890, + [SMALL_STATE(2283)] = 112939, + [SMALL_STATE(2284)] = 112988, + [SMALL_STATE(2285)] = 113041, + [SMALL_STATE(2286)] = 113090, + [SMALL_STATE(2287)] = 113139, + [SMALL_STATE(2288)] = 113188, + [SMALL_STATE(2289)] = 113237, + [SMALL_STATE(2290)] = 113286, + [SMALL_STATE(2291)] = 113335, + [SMALL_STATE(2292)] = 113384, + [SMALL_STATE(2293)] = 113433, + [SMALL_STATE(2294)] = 113482, + [SMALL_STATE(2295)] = 113531, + [SMALL_STATE(2296)] = 113580, + [SMALL_STATE(2297)] = 113629, + [SMALL_STATE(2298)] = 113678, + [SMALL_STATE(2299)] = 113727, + [SMALL_STATE(2300)] = 113776, + [SMALL_STATE(2301)] = 113825, + [SMALL_STATE(2302)] = 113874, + [SMALL_STATE(2303)] = 113923, + [SMALL_STATE(2304)] = 113972, + [SMALL_STATE(2305)] = 114021, + [SMALL_STATE(2306)] = 114070, + [SMALL_STATE(2307)] = 114119, + [SMALL_STATE(2308)] = 114168, + [SMALL_STATE(2309)] = 114217, + [SMALL_STATE(2310)] = 114266, + [SMALL_STATE(2311)] = 114315, + [SMALL_STATE(2312)] = 114364, + [SMALL_STATE(2313)] = 114413, + [SMALL_STATE(2314)] = 114462, + [SMALL_STATE(2315)] = 114511, + [SMALL_STATE(2316)] = 114560, + [SMALL_STATE(2317)] = 114609, + [SMALL_STATE(2318)] = 114658, + [SMALL_STATE(2319)] = 114707, + [SMALL_STATE(2320)] = 114756, + [SMALL_STATE(2321)] = 114805, + [SMALL_STATE(2322)] = 114854, + [SMALL_STATE(2323)] = 114903, + [SMALL_STATE(2324)] = 114952, + [SMALL_STATE(2325)] = 115001, + [SMALL_STATE(2326)] = 115026, + [SMALL_STATE(2327)] = 115051, + [SMALL_STATE(2328)] = 115076, + [SMALL_STATE(2329)] = 115101, + [SMALL_STATE(2330)] = 115126, + [SMALL_STATE(2331)] = 115151, + [SMALL_STATE(2332)] = 115200, + [SMALL_STATE(2333)] = 115225, + [SMALL_STATE(2334)] = 115274, + [SMALL_STATE(2335)] = 115323, + [SMALL_STATE(2336)] = 115372, + [SMALL_STATE(2337)] = 115421, + [SMALL_STATE(2338)] = 115470, + [SMALL_STATE(2339)] = 115519, + [SMALL_STATE(2340)] = 115568, + [SMALL_STATE(2341)] = 115617, + [SMALL_STATE(2342)] = 115666, + [SMALL_STATE(2343)] = 115715, + [SMALL_STATE(2344)] = 115764, + [SMALL_STATE(2345)] = 115813, + [SMALL_STATE(2346)] = 115862, + [SMALL_STATE(2347)] = 115911, + [SMALL_STATE(2348)] = 115960, + [SMALL_STATE(2349)] = 116009, + [SMALL_STATE(2350)] = 116058, + [SMALL_STATE(2351)] = 116107, + [SMALL_STATE(2352)] = 116160, + [SMALL_STATE(2353)] = 116209, + [SMALL_STATE(2354)] = 116258, + [SMALL_STATE(2355)] = 116307, + [SMALL_STATE(2356)] = 116356, + [SMALL_STATE(2357)] = 116405, + [SMALL_STATE(2358)] = 116454, + [SMALL_STATE(2359)] = 116503, + [SMALL_STATE(2360)] = 116552, + [SMALL_STATE(2361)] = 116601, + [SMALL_STATE(2362)] = 116650, + [SMALL_STATE(2363)] = 116699, + [SMALL_STATE(2364)] = 116748, + [SMALL_STATE(2365)] = 116797, + [SMALL_STATE(2366)] = 116846, + [SMALL_STATE(2367)] = 116895, + [SMALL_STATE(2368)] = 116944, + [SMALL_STATE(2369)] = 116993, + [SMALL_STATE(2370)] = 117042, + [SMALL_STATE(2371)] = 117091, + [SMALL_STATE(2372)] = 117140, + [SMALL_STATE(2373)] = 117189, + [SMALL_STATE(2374)] = 117238, + [SMALL_STATE(2375)] = 117287, + [SMALL_STATE(2376)] = 117336, + [SMALL_STATE(2377)] = 117385, + [SMALL_STATE(2378)] = 117434, + [SMALL_STATE(2379)] = 117483, + [SMALL_STATE(2380)] = 117532, + [SMALL_STATE(2381)] = 117581, + [SMALL_STATE(2382)] = 117630, + [SMALL_STATE(2383)] = 117679, + [SMALL_STATE(2384)] = 117728, + [SMALL_STATE(2385)] = 117777, + [SMALL_STATE(2386)] = 117826, + [SMALL_STATE(2387)] = 117875, + [SMALL_STATE(2388)] = 117924, + [SMALL_STATE(2389)] = 117973, + [SMALL_STATE(2390)] = 118022, + [SMALL_STATE(2391)] = 118071, + [SMALL_STATE(2392)] = 118120, + [SMALL_STATE(2393)] = 118169, + [SMALL_STATE(2394)] = 118218, + [SMALL_STATE(2395)] = 118267, + [SMALL_STATE(2396)] = 118316, + [SMALL_STATE(2397)] = 118365, + [SMALL_STATE(2398)] = 118414, + [SMALL_STATE(2399)] = 118463, + [SMALL_STATE(2400)] = 118512, + [SMALL_STATE(2401)] = 118561, + [SMALL_STATE(2402)] = 118610, + [SMALL_STATE(2403)] = 118659, + [SMALL_STATE(2404)] = 118708, + [SMALL_STATE(2405)] = 118757, + [SMALL_STATE(2406)] = 118806, + [SMALL_STATE(2407)] = 118859, + [SMALL_STATE(2408)] = 118908, + [SMALL_STATE(2409)] = 118957, + [SMALL_STATE(2410)] = 119006, + [SMALL_STATE(2411)] = 119055, + [SMALL_STATE(2412)] = 119104, + [SMALL_STATE(2413)] = 119153, + [SMALL_STATE(2414)] = 119202, + [SMALL_STATE(2415)] = 119251, + [SMALL_STATE(2416)] = 119300, + [SMALL_STATE(2417)] = 119349, + [SMALL_STATE(2418)] = 119398, + [SMALL_STATE(2419)] = 119447, + [SMALL_STATE(2420)] = 119496, + [SMALL_STATE(2421)] = 119545, + [SMALL_STATE(2422)] = 119594, + [SMALL_STATE(2423)] = 119643, + [SMALL_STATE(2424)] = 119692, + [SMALL_STATE(2425)] = 119741, + [SMALL_STATE(2426)] = 119790, + [SMALL_STATE(2427)] = 119839, + [SMALL_STATE(2428)] = 119888, + [SMALL_STATE(2429)] = 119937, + [SMALL_STATE(2430)] = 119986, + [SMALL_STATE(2431)] = 120035, + [SMALL_STATE(2432)] = 120084, + [SMALL_STATE(2433)] = 120133, + [SMALL_STATE(2434)] = 120182, + [SMALL_STATE(2435)] = 120231, + [SMALL_STATE(2436)] = 120280, + [SMALL_STATE(2437)] = 120329, + [SMALL_STATE(2438)] = 120378, + [SMALL_STATE(2439)] = 120427, + [SMALL_STATE(2440)] = 120476, + [SMALL_STATE(2441)] = 120525, + [SMALL_STATE(2442)] = 120574, + [SMALL_STATE(2443)] = 120623, + [SMALL_STATE(2444)] = 120672, + [SMALL_STATE(2445)] = 120721, + [SMALL_STATE(2446)] = 120770, + [SMALL_STATE(2447)] = 120819, + [SMALL_STATE(2448)] = 120868, + [SMALL_STATE(2449)] = 120917, + [SMALL_STATE(2450)] = 120970, + [SMALL_STATE(2451)] = 121019, + [SMALL_STATE(2452)] = 121068, + [SMALL_STATE(2453)] = 121117, + [SMALL_STATE(2454)] = 121166, + [SMALL_STATE(2455)] = 121215, + [SMALL_STATE(2456)] = 121268, + [SMALL_STATE(2457)] = 121317, + [SMALL_STATE(2458)] = 121366, + [SMALL_STATE(2459)] = 121415, + [SMALL_STATE(2460)] = 121464, + [SMALL_STATE(2461)] = 121513, + [SMALL_STATE(2462)] = 121562, + [SMALL_STATE(2463)] = 121615, + [SMALL_STATE(2464)] = 121664, + [SMALL_STATE(2465)] = 121717, + [SMALL_STATE(2466)] = 121766, + [SMALL_STATE(2467)] = 121815, + [SMALL_STATE(2468)] = 121864, + [SMALL_STATE(2469)] = 121913, + [SMALL_STATE(2470)] = 121962, + [SMALL_STATE(2471)] = 122011, + [SMALL_STATE(2472)] = 122060, + [SMALL_STATE(2473)] = 122109, + [SMALL_STATE(2474)] = 122158, + [SMALL_STATE(2475)] = 122207, + [SMALL_STATE(2476)] = 122256, + [SMALL_STATE(2477)] = 122305, + [SMALL_STATE(2478)] = 122354, + [SMALL_STATE(2479)] = 122403, + [SMALL_STATE(2480)] = 122452, + [SMALL_STATE(2481)] = 122501, + [SMALL_STATE(2482)] = 122550, + [SMALL_STATE(2483)] = 122603, + [SMALL_STATE(2484)] = 122652, + [SMALL_STATE(2485)] = 122701, + [SMALL_STATE(2486)] = 122750, + [SMALL_STATE(2487)] = 122799, + [SMALL_STATE(2488)] = 122848, + [SMALL_STATE(2489)] = 122897, + [SMALL_STATE(2490)] = 122946, + [SMALL_STATE(2491)] = 122995, + [SMALL_STATE(2492)] = 123044, + [SMALL_STATE(2493)] = 123093, + [SMALL_STATE(2494)] = 123142, + [SMALL_STATE(2495)] = 123191, + [SMALL_STATE(2496)] = 123240, + [SMALL_STATE(2497)] = 123289, + [SMALL_STATE(2498)] = 123338, + [SMALL_STATE(2499)] = 123387, + [SMALL_STATE(2500)] = 123436, + [SMALL_STATE(2501)] = 123485, + [SMALL_STATE(2502)] = 123534, + [SMALL_STATE(2503)] = 123587, + [SMALL_STATE(2504)] = 123636, + [SMALL_STATE(2505)] = 123663, + [SMALL_STATE(2506)] = 123712, + [SMALL_STATE(2507)] = 123761, + [SMALL_STATE(2508)] = 123810, + [SMALL_STATE(2509)] = 123859, + [SMALL_STATE(2510)] = 123908, + [SMALL_STATE(2511)] = 123957, + [SMALL_STATE(2512)] = 124010, + [SMALL_STATE(2513)] = 124063, + [SMALL_STATE(2514)] = 124112, + [SMALL_STATE(2515)] = 124161, + [SMALL_STATE(2516)] = 124210, + [SMALL_STATE(2517)] = 124259, + [SMALL_STATE(2518)] = 124308, + [SMALL_STATE(2519)] = 124357, + [SMALL_STATE(2520)] = 124406, + [SMALL_STATE(2521)] = 124455, + [SMALL_STATE(2522)] = 124504, + [SMALL_STATE(2523)] = 124553, + [SMALL_STATE(2524)] = 124602, + [SMALL_STATE(2525)] = 124651, + [SMALL_STATE(2526)] = 124700, + [SMALL_STATE(2527)] = 124749, + [SMALL_STATE(2528)] = 124798, + [SMALL_STATE(2529)] = 124847, + [SMALL_STATE(2530)] = 124896, + [SMALL_STATE(2531)] = 124945, + [SMALL_STATE(2532)] = 124994, + [SMALL_STATE(2533)] = 125043, + [SMALL_STATE(2534)] = 125092, + [SMALL_STATE(2535)] = 125141, + [SMALL_STATE(2536)] = 125190, + [SMALL_STATE(2537)] = 125239, + [SMALL_STATE(2538)] = 125288, + [SMALL_STATE(2539)] = 125337, + [SMALL_STATE(2540)] = 125386, + [SMALL_STATE(2541)] = 125435, + [SMALL_STATE(2542)] = 125484, + [SMALL_STATE(2543)] = 125533, + [SMALL_STATE(2544)] = 125582, + [SMALL_STATE(2545)] = 125631, + [SMALL_STATE(2546)] = 125680, + [SMALL_STATE(2547)] = 125729, + [SMALL_STATE(2548)] = 125778, + [SMALL_STATE(2549)] = 125827, + [SMALL_STATE(2550)] = 125876, + [SMALL_STATE(2551)] = 125925, + [SMALL_STATE(2552)] = 125974, + [SMALL_STATE(2553)] = 126023, + [SMALL_STATE(2554)] = 126072, + [SMALL_STATE(2555)] = 126121, + [SMALL_STATE(2556)] = 126170, + [SMALL_STATE(2557)] = 126219, + [SMALL_STATE(2558)] = 126268, + [SMALL_STATE(2559)] = 126317, + [SMALL_STATE(2560)] = 126366, + [SMALL_STATE(2561)] = 126419, + [SMALL_STATE(2562)] = 126468, + [SMALL_STATE(2563)] = 126517, + [SMALL_STATE(2564)] = 126566, + [SMALL_STATE(2565)] = 126619, + [SMALL_STATE(2566)] = 126668, + [SMALL_STATE(2567)] = 126717, + [SMALL_STATE(2568)] = 126766, + [SMALL_STATE(2569)] = 126815, + [SMALL_STATE(2570)] = 126864, + [SMALL_STATE(2571)] = 126913, + [SMALL_STATE(2572)] = 126962, + [SMALL_STATE(2573)] = 127011, + [SMALL_STATE(2574)] = 127060, + [SMALL_STATE(2575)] = 127109, + [SMALL_STATE(2576)] = 127158, + [SMALL_STATE(2577)] = 127207, + [SMALL_STATE(2578)] = 127256, + [SMALL_STATE(2579)] = 127305, + [SMALL_STATE(2580)] = 127354, + [SMALL_STATE(2581)] = 127403, + [SMALL_STATE(2582)] = 127452, + [SMALL_STATE(2583)] = 127501, + [SMALL_STATE(2584)] = 127550, + [SMALL_STATE(2585)] = 127599, + [SMALL_STATE(2586)] = 127648, + [SMALL_STATE(2587)] = 127697, + [SMALL_STATE(2588)] = 127746, + [SMALL_STATE(2589)] = 127795, + [SMALL_STATE(2590)] = 127844, + [SMALL_STATE(2591)] = 127893, + [SMALL_STATE(2592)] = 127942, + [SMALL_STATE(2593)] = 127991, + [SMALL_STATE(2594)] = 128040, + [SMALL_STATE(2595)] = 128089, + [SMALL_STATE(2596)] = 128138, + [SMALL_STATE(2597)] = 128187, + [SMALL_STATE(2598)] = 128236, + [SMALL_STATE(2599)] = 128285, + [SMALL_STATE(2600)] = 128334, + [SMALL_STATE(2601)] = 128383, + [SMALL_STATE(2602)] = 128432, + [SMALL_STATE(2603)] = 128481, + [SMALL_STATE(2604)] = 128530, + [SMALL_STATE(2605)] = 128579, + [SMALL_STATE(2606)] = 128628, + [SMALL_STATE(2607)] = 128677, + [SMALL_STATE(2608)] = 128726, + [SMALL_STATE(2609)] = 128775, + [SMALL_STATE(2610)] = 128824, + [SMALL_STATE(2611)] = 128873, + [SMALL_STATE(2612)] = 128922, + [SMALL_STATE(2613)] = 128971, + [SMALL_STATE(2614)] = 129020, + [SMALL_STATE(2615)] = 129069, + [SMALL_STATE(2616)] = 129118, + [SMALL_STATE(2617)] = 129167, + [SMALL_STATE(2618)] = 129216, + [SMALL_STATE(2619)] = 129269, + [SMALL_STATE(2620)] = 129318, + [SMALL_STATE(2621)] = 129367, + [SMALL_STATE(2622)] = 129420, + [SMALL_STATE(2623)] = 129469, + [SMALL_STATE(2624)] = 129518, + [SMALL_STATE(2625)] = 129567, + [SMALL_STATE(2626)] = 129616, + [SMALL_STATE(2627)] = 129665, + [SMALL_STATE(2628)] = 129714, + [SMALL_STATE(2629)] = 129763, + [SMALL_STATE(2630)] = 129812, + [SMALL_STATE(2631)] = 129861, + [SMALL_STATE(2632)] = 129910, + [SMALL_STATE(2633)] = 129959, + [SMALL_STATE(2634)] = 130008, + [SMALL_STATE(2635)] = 130057, + [SMALL_STATE(2636)] = 130106, + [SMALL_STATE(2637)] = 130159, + [SMALL_STATE(2638)] = 130208, + [SMALL_STATE(2639)] = 130257, + [SMALL_STATE(2640)] = 130306, + [SMALL_STATE(2641)] = 130355, + [SMALL_STATE(2642)] = 130404, + [SMALL_STATE(2643)] = 130453, + [SMALL_STATE(2644)] = 130502, + [SMALL_STATE(2645)] = 130551, + [SMALL_STATE(2646)] = 130600, + [SMALL_STATE(2647)] = 130649, + [SMALL_STATE(2648)] = 130698, + [SMALL_STATE(2649)] = 130747, + [SMALL_STATE(2650)] = 130796, + [SMALL_STATE(2651)] = 130845, + [SMALL_STATE(2652)] = 130894, + [SMALL_STATE(2653)] = 130943, + [SMALL_STATE(2654)] = 130992, + [SMALL_STATE(2655)] = 131041, + [SMALL_STATE(2656)] = 131090, + [SMALL_STATE(2657)] = 131139, + [SMALL_STATE(2658)] = 131188, + [SMALL_STATE(2659)] = 131237, + [SMALL_STATE(2660)] = 131286, + [SMALL_STATE(2661)] = 131335, + [SMALL_STATE(2662)] = 131384, + [SMALL_STATE(2663)] = 131433, + [SMALL_STATE(2664)] = 131482, + [SMALL_STATE(2665)] = 131531, + [SMALL_STATE(2666)] = 131580, + [SMALL_STATE(2667)] = 131629, + [SMALL_STATE(2668)] = 131678, + [SMALL_STATE(2669)] = 131727, + [SMALL_STATE(2670)] = 131776, + [SMALL_STATE(2671)] = 131825, + [SMALL_STATE(2672)] = 131874, + [SMALL_STATE(2673)] = 131923, + [SMALL_STATE(2674)] = 131972, + [SMALL_STATE(2675)] = 132021, + [SMALL_STATE(2676)] = 132070, + [SMALL_STATE(2677)] = 132119, + [SMALL_STATE(2678)] = 132168, + [SMALL_STATE(2679)] = 132217, + [SMALL_STATE(2680)] = 132266, + [SMALL_STATE(2681)] = 132319, + [SMALL_STATE(2682)] = 132368, + [SMALL_STATE(2683)] = 132417, + [SMALL_STATE(2684)] = 132466, + [SMALL_STATE(2685)] = 132515, + [SMALL_STATE(2686)] = 132564, + [SMALL_STATE(2687)] = 132613, + [SMALL_STATE(2688)] = 132662, + [SMALL_STATE(2689)] = 132711, + [SMALL_STATE(2690)] = 132760, + [SMALL_STATE(2691)] = 132809, + [SMALL_STATE(2692)] = 132858, + [SMALL_STATE(2693)] = 132907, + [SMALL_STATE(2694)] = 132956, + [SMALL_STATE(2695)] = 133005, + [SMALL_STATE(2696)] = 133054, + [SMALL_STATE(2697)] = 133103, + [SMALL_STATE(2698)] = 133152, + [SMALL_STATE(2699)] = 133201, + [SMALL_STATE(2700)] = 133250, + [SMALL_STATE(2701)] = 133299, + [SMALL_STATE(2702)] = 133348, + [SMALL_STATE(2703)] = 133397, + [SMALL_STATE(2704)] = 133450, + [SMALL_STATE(2705)] = 133499, + [SMALL_STATE(2706)] = 133548, + [SMALL_STATE(2707)] = 133597, + [SMALL_STATE(2708)] = 133646, + [SMALL_STATE(2709)] = 133699, + [SMALL_STATE(2710)] = 133748, + [SMALL_STATE(2711)] = 133797, + [SMALL_STATE(2712)] = 133846, + [SMALL_STATE(2713)] = 133895, + [SMALL_STATE(2714)] = 133944, + [SMALL_STATE(2715)] = 133993, + [SMALL_STATE(2716)] = 134042, + [SMALL_STATE(2717)] = 134091, + [SMALL_STATE(2718)] = 134140, + [SMALL_STATE(2719)] = 134189, + [SMALL_STATE(2720)] = 134238, + [SMALL_STATE(2721)] = 134287, + [SMALL_STATE(2722)] = 134336, + [SMALL_STATE(2723)] = 134385, + [SMALL_STATE(2724)] = 134434, + [SMALL_STATE(2725)] = 134483, + [SMALL_STATE(2726)] = 134532, + [SMALL_STATE(2727)] = 134581, + [SMALL_STATE(2728)] = 134630, + [SMALL_STATE(2729)] = 134683, + [SMALL_STATE(2730)] = 134732, + [SMALL_STATE(2731)] = 134781, + [SMALL_STATE(2732)] = 134830, + [SMALL_STATE(2733)] = 134879, + [SMALL_STATE(2734)] = 134928, + [SMALL_STATE(2735)] = 134981, + [SMALL_STATE(2736)] = 135030, + [SMALL_STATE(2737)] = 135079, + [SMALL_STATE(2738)] = 135128, + [SMALL_STATE(2739)] = 135154, + [SMALL_STATE(2740)] = 135182, + [SMALL_STATE(2741)] = 135208, + [SMALL_STATE(2742)] = 135234, + [SMALL_STATE(2743)] = 135257, + [SMALL_STATE(2744)] = 135280, + [SMALL_STATE(2745)] = 135305, + [SMALL_STATE(2746)] = 135330, + [SMALL_STATE(2747)] = 135355, + [SMALL_STATE(2748)] = 135380, + [SMALL_STATE(2749)] = 135405, + [SMALL_STATE(2750)] = 135430, + [SMALL_STATE(2751)] = 135455, + [SMALL_STATE(2752)] = 135480, + [SMALL_STATE(2753)] = 135505, + [SMALL_STATE(2754)] = 135530, + [SMALL_STATE(2755)] = 135553, + [SMALL_STATE(2756)] = 135576, + [SMALL_STATE(2757)] = 135601, + [SMALL_STATE(2758)] = 135624, + [SMALL_STATE(2759)] = 135647, + [SMALL_STATE(2760)] = 135672, + [SMALL_STATE(2761)] = 135695, + [SMALL_STATE(2762)] = 135718, + [SMALL_STATE(2763)] = 135741, + [SMALL_STATE(2764)] = 135764, + [SMALL_STATE(2765)] = 135787, + [SMALL_STATE(2766)] = 135810, + [SMALL_STATE(2767)] = 135833, + [SMALL_STATE(2768)] = 135856, + [SMALL_STATE(2769)] = 135879, + [SMALL_STATE(2770)] = 135902, + [SMALL_STATE(2771)] = 135925, + [SMALL_STATE(2772)] = 135948, + [SMALL_STATE(2773)] = 135971, + [SMALL_STATE(2774)] = 135996, + [SMALL_STATE(2775)] = 136021, + [SMALL_STATE(2776)] = 136043, + [SMALL_STATE(2777)] = 136065, + [SMALL_STATE(2778)] = 136087, + [SMALL_STATE(2779)] = 136109, + [SMALL_STATE(2780)] = 136131, + [SMALL_STATE(2781)] = 136153, + [SMALL_STATE(2782)] = 136175, + [SMALL_STATE(2783)] = 136197, + [SMALL_STATE(2784)] = 136219, + [SMALL_STATE(2785)] = 136245, + [SMALL_STATE(2786)] = 136267, + [SMALL_STATE(2787)] = 136289, + [SMALL_STATE(2788)] = 136311, + [SMALL_STATE(2789)] = 136333, + [SMALL_STATE(2790)] = 136355, + [SMALL_STATE(2791)] = 136377, + [SMALL_STATE(2792)] = 136399, + [SMALL_STATE(2793)] = 136421, + [SMALL_STATE(2794)] = 136443, + [SMALL_STATE(2795)] = 136465, + [SMALL_STATE(2796)] = 136487, + [SMALL_STATE(2797)] = 136509, + [SMALL_STATE(2798)] = 136531, + [SMALL_STATE(2799)] = 136553, + [SMALL_STATE(2800)] = 136575, + [SMALL_STATE(2801)] = 136597, + [SMALL_STATE(2802)] = 136619, + [SMALL_STATE(2803)] = 136641, + [SMALL_STATE(2804)] = 136663, + [SMALL_STATE(2805)] = 136685, + [SMALL_STATE(2806)] = 136707, + [SMALL_STATE(2807)] = 136729, + [SMALL_STATE(2808)] = 136751, + [SMALL_STATE(2809)] = 136773, + [SMALL_STATE(2810)] = 136795, + [SMALL_STATE(2811)] = 136817, + [SMALL_STATE(2812)] = 136839, + [SMALL_STATE(2813)] = 136861, + [SMALL_STATE(2814)] = 136883, + [SMALL_STATE(2815)] = 136905, + [SMALL_STATE(2816)] = 136927, + [SMALL_STATE(2817)] = 136949, + [SMALL_STATE(2818)] = 136971, + [SMALL_STATE(2819)] = 136993, + [SMALL_STATE(2820)] = 137015, + [SMALL_STATE(2821)] = 137037, + [SMALL_STATE(2822)] = 137059, + [SMALL_STATE(2823)] = 137081, + [SMALL_STATE(2824)] = 137103, + [SMALL_STATE(2825)] = 137125, + [SMALL_STATE(2826)] = 137147, + [SMALL_STATE(2827)] = 137169, + [SMALL_STATE(2828)] = 137191, + [SMALL_STATE(2829)] = 137213, + [SMALL_STATE(2830)] = 137235, + [SMALL_STATE(2831)] = 137257, + [SMALL_STATE(2832)] = 137279, + [SMALL_STATE(2833)] = 137301, + [SMALL_STATE(2834)] = 137323, + [SMALL_STATE(2835)] = 137345, + [SMALL_STATE(2836)] = 137367, + [SMALL_STATE(2837)] = 137389, + [SMALL_STATE(2838)] = 137411, + [SMALL_STATE(2839)] = 137433, + [SMALL_STATE(2840)] = 137457, + [SMALL_STATE(2841)] = 137479, + [SMALL_STATE(2842)] = 137501, + [SMALL_STATE(2843)] = 137523, + [SMALL_STATE(2844)] = 137545, + [SMALL_STATE(2845)] = 137567, + [SMALL_STATE(2846)] = 137589, + [SMALL_STATE(2847)] = 137611, + [SMALL_STATE(2848)] = 137633, + [SMALL_STATE(2849)] = 137655, + [SMALL_STATE(2850)] = 137677, + [SMALL_STATE(2851)] = 137699, + [SMALL_STATE(2852)] = 137721, + [SMALL_STATE(2853)] = 137743, + [SMALL_STATE(2854)] = 137765, + [SMALL_STATE(2855)] = 137787, + [SMALL_STATE(2856)] = 137809, + [SMALL_STATE(2857)] = 137831, + [SMALL_STATE(2858)] = 137853, + [SMALL_STATE(2859)] = 137875, + [SMALL_STATE(2860)] = 137897, + [SMALL_STATE(2861)] = 137919, + [SMALL_STATE(2862)] = 137941, + [SMALL_STATE(2863)] = 137963, + [SMALL_STATE(2864)] = 137985, + [SMALL_STATE(2865)] = 138007, + [SMALL_STATE(2866)] = 138029, + [SMALL_STATE(2867)] = 138051, + [SMALL_STATE(2868)] = 138073, + [SMALL_STATE(2869)] = 138095, + [SMALL_STATE(2870)] = 138117, + [SMALL_STATE(2871)] = 138139, + [SMALL_STATE(2872)] = 138161, + [SMALL_STATE(2873)] = 138183, + [SMALL_STATE(2874)] = 138205, + [SMALL_STATE(2875)] = 138227, + [SMALL_STATE(2876)] = 138249, + [SMALL_STATE(2877)] = 138271, + [SMALL_STATE(2878)] = 138293, + [SMALL_STATE(2879)] = 138315, + [SMALL_STATE(2880)] = 138337, + [SMALL_STATE(2881)] = 138359, + [SMALL_STATE(2882)] = 138381, + [SMALL_STATE(2883)] = 138403, + [SMALL_STATE(2884)] = 138425, + [SMALL_STATE(2885)] = 138447, + [SMALL_STATE(2886)] = 138469, + [SMALL_STATE(2887)] = 138491, + [SMALL_STATE(2888)] = 138513, + [SMALL_STATE(2889)] = 138535, + [SMALL_STATE(2890)] = 138557, + [SMALL_STATE(2891)] = 138579, + [SMALL_STATE(2892)] = 138605, + [SMALL_STATE(2893)] = 138626, + [SMALL_STATE(2894)] = 138647, + [SMALL_STATE(2895)] = 138668, + [SMALL_STATE(2896)] = 138689, + [SMALL_STATE(2897)] = 138710, + [SMALL_STATE(2898)] = 138731, + [SMALL_STATE(2899)] = 138752, + [SMALL_STATE(2900)] = 138773, + [SMALL_STATE(2901)] = 138794, + [SMALL_STATE(2902)] = 138815, + [SMALL_STATE(2903)] = 138836, + [SMALL_STATE(2904)] = 138857, + [SMALL_STATE(2905)] = 138878, + [SMALL_STATE(2906)] = 138899, + [SMALL_STATE(2907)] = 138920, + [SMALL_STATE(2908)] = 138941, + [SMALL_STATE(2909)] = 138962, + [SMALL_STATE(2910)] = 138983, + [SMALL_STATE(2911)] = 139004, + [SMALL_STATE(2912)] = 139025, + [SMALL_STATE(2913)] = 139046, + [SMALL_STATE(2914)] = 139067, + [SMALL_STATE(2915)] = 139088, + [SMALL_STATE(2916)] = 139109, + [SMALL_STATE(2917)] = 139130, + [SMALL_STATE(2918)] = 139151, + [SMALL_STATE(2919)] = 139172, + [SMALL_STATE(2920)] = 139193, + [SMALL_STATE(2921)] = 139214, + [SMALL_STATE(2922)] = 139235, + [SMALL_STATE(2923)] = 139256, + [SMALL_STATE(2924)] = 139277, + [SMALL_STATE(2925)] = 139298, + [SMALL_STATE(2926)] = 139319, + [SMALL_STATE(2927)] = 139340, + [SMALL_STATE(2928)] = 139361, + [SMALL_STATE(2929)] = 139382, + [SMALL_STATE(2930)] = 139409, + [SMALL_STATE(2931)] = 139430, + [SMALL_STATE(2932)] = 139451, + [SMALL_STATE(2933)] = 139472, + [SMALL_STATE(2934)] = 139493, + [SMALL_STATE(2935)] = 139514, + [SMALL_STATE(2936)] = 139535, + [SMALL_STATE(2937)] = 139556, + [SMALL_STATE(2938)] = 139579, + [SMALL_STATE(2939)] = 139600, + [SMALL_STATE(2940)] = 139623, + [SMALL_STATE(2941)] = 139644, + [SMALL_STATE(2942)] = 139665, + [SMALL_STATE(2943)] = 139686, + [SMALL_STATE(2944)] = 139707, + [SMALL_STATE(2945)] = 139728, + [SMALL_STATE(2946)] = 139769, + [SMALL_STATE(2947)] = 139790, + [SMALL_STATE(2948)] = 139811, + [SMALL_STATE(2949)] = 139832, + [SMALL_STATE(2950)] = 139853, + [SMALL_STATE(2951)] = 139874, + [SMALL_STATE(2952)] = 139895, + [SMALL_STATE(2953)] = 139916, + [SMALL_STATE(2954)] = 139937, + [SMALL_STATE(2955)] = 139958, + [SMALL_STATE(2956)] = 139979, + [SMALL_STATE(2957)] = 140000, + [SMALL_STATE(2958)] = 140021, + [SMALL_STATE(2959)] = 140042, + [SMALL_STATE(2960)] = 140063, + [SMALL_STATE(2961)] = 140088, + [SMALL_STATE(2962)] = 140109, + [SMALL_STATE(2963)] = 140130, + [SMALL_STATE(2964)] = 140153, + [SMALL_STATE(2965)] = 140174, + [SMALL_STATE(2966)] = 140195, + [SMALL_STATE(2967)] = 140216, + [SMALL_STATE(2968)] = 140237, + [SMALL_STATE(2969)] = 140258, + [SMALL_STATE(2970)] = 140279, + [SMALL_STATE(2971)] = 140300, + [SMALL_STATE(2972)] = 140321, + [SMALL_STATE(2973)] = 140342, + [SMALL_STATE(2974)] = 140363, + [SMALL_STATE(2975)] = 140384, + [SMALL_STATE(2976)] = 140405, + [SMALL_STATE(2977)] = 140428, + [SMALL_STATE(2978)] = 140449, + [SMALL_STATE(2979)] = 140470, + [SMALL_STATE(2980)] = 140491, + [SMALL_STATE(2981)] = 140512, + [SMALL_STATE(2982)] = 140533, + [SMALL_STATE(2983)] = 140554, + [SMALL_STATE(2984)] = 140575, + [SMALL_STATE(2985)] = 140596, + [SMALL_STATE(2986)] = 140637, + [SMALL_STATE(2987)] = 140658, + [SMALL_STATE(2988)] = 140679, + [SMALL_STATE(2989)] = 140700, + [SMALL_STATE(2990)] = 140721, + [SMALL_STATE(2991)] = 140742, + [SMALL_STATE(2992)] = 140783, + [SMALL_STATE(2993)] = 140804, + [SMALL_STATE(2994)] = 140825, + [SMALL_STATE(2995)] = 140846, + [SMALL_STATE(2996)] = 140873, + [SMALL_STATE(2997)] = 140894, + [SMALL_STATE(2998)] = 140916, + [SMALL_STATE(2999)] = 140938, + [SMALL_STATE(3000)] = 140960, + [SMALL_STATE(3001)] = 141000, + [SMALL_STATE(3002)] = 141022, + [SMALL_STATE(3003)] = 141044, + [SMALL_STATE(3004)] = 141066, + [SMALL_STATE(3005)] = 141088, + [SMALL_STATE(3006)] = 141110, + [SMALL_STATE(3007)] = 141132, + [SMALL_STATE(3008)] = 141154, + [SMALL_STATE(3009)] = 141176, + [SMALL_STATE(3010)] = 141210, + [SMALL_STATE(3011)] = 141232, + [SMALL_STATE(3012)] = 141254, + [SMALL_STATE(3013)] = 141280, + [SMALL_STATE(3014)] = 141302, + [SMALL_STATE(3015)] = 141342, + [SMALL_STATE(3016)] = 141368, + [SMALL_STATE(3017)] = 141402, + [SMALL_STATE(3018)] = 141442, + [SMALL_STATE(3019)] = 141476, + [SMALL_STATE(3020)] = 141515, + [SMALL_STATE(3021)] = 141554, + [SMALL_STATE(3022)] = 141579, + [SMALL_STATE(3023)] = 141604, + [SMALL_STATE(3024)] = 141643, + [SMALL_STATE(3025)] = 141678, + [SMALL_STATE(3026)] = 141713, + [SMALL_STATE(3027)] = 141748, + [SMALL_STATE(3028)] = 141783, + [SMALL_STATE(3029)] = 141818, + [SMALL_STATE(3030)] = 141853, + [SMALL_STATE(3031)] = 141870, + [SMALL_STATE(3032)] = 141887, + [SMALL_STATE(3033)] = 141922, + [SMALL_STATE(3034)] = 141957, + [SMALL_STATE(3035)] = 141992, + [SMALL_STATE(3036)] = 142027, + [SMALL_STATE(3037)] = 142062, + [SMALL_STATE(3038)] = 142097, + [SMALL_STATE(3039)] = 142132, + [SMALL_STATE(3040)] = 142167, + [SMALL_STATE(3041)] = 142202, + [SMALL_STATE(3042)] = 142219, + [SMALL_STATE(3043)] = 142254, + [SMALL_STATE(3044)] = 142289, + [SMALL_STATE(3045)] = 142324, + [SMALL_STATE(3046)] = 142359, + [SMALL_STATE(3047)] = 142394, + [SMALL_STATE(3048)] = 142429, + [SMALL_STATE(3049)] = 142464, + [SMALL_STATE(3050)] = 142499, + [SMALL_STATE(3051)] = 142534, + [SMALL_STATE(3052)] = 142569, + [SMALL_STATE(3053)] = 142604, + [SMALL_STATE(3054)] = 142639, + [SMALL_STATE(3055)] = 142674, + [SMALL_STATE(3056)] = 142709, + [SMALL_STATE(3057)] = 142726, + [SMALL_STATE(3058)] = 142761, + [SMALL_STATE(3059)] = 142796, + [SMALL_STATE(3060)] = 142831, + [SMALL_STATE(3061)] = 142866, + [SMALL_STATE(3062)] = 142901, + [SMALL_STATE(3063)] = 142936, + [SMALL_STATE(3064)] = 142971, + [SMALL_STATE(3065)] = 142988, + [SMALL_STATE(3066)] = 143023, + [SMALL_STATE(3067)] = 143058, + [SMALL_STATE(3068)] = 143075, + [SMALL_STATE(3069)] = 143092, + [SMALL_STATE(3070)] = 143127, + [SMALL_STATE(3071)] = 143162, + [SMALL_STATE(3072)] = 143178, + [SMALL_STATE(3073)] = 143194, + [SMALL_STATE(3074)] = 143210, + [SMALL_STATE(3075)] = 143226, + [SMALL_STATE(3076)] = 143242, + [SMALL_STATE(3077)] = 143258, + [SMALL_STATE(3078)] = 143274, + [SMALL_STATE(3079)] = 143290, + [SMALL_STATE(3080)] = 143305, + [SMALL_STATE(3081)] = 143320, + [SMALL_STATE(3082)] = 143335, + [SMALL_STATE(3083)] = 143350, + [SMALL_STATE(3084)] = 143365, + [SMALL_STATE(3085)] = 143380, + [SMALL_STATE(3086)] = 143395, + [SMALL_STATE(3087)] = 143410, + [SMALL_STATE(3088)] = 143424, + [SMALL_STATE(3089)] = 143438, + [SMALL_STATE(3090)] = 143452, + [SMALL_STATE(3091)] = 143474, + [SMALL_STATE(3092)] = 143488, + [SMALL_STATE(3093)] = 143502, + [SMALL_STATE(3094)] = 143524, + [SMALL_STATE(3095)] = 143538, + [SMALL_STATE(3096)] = 143552, + [SMALL_STATE(3097)] = 143574, + [SMALL_STATE(3098)] = 143596, + [SMALL_STATE(3099)] = 143610, + [SMALL_STATE(3100)] = 143635, + [SMALL_STATE(3101)] = 143656, + [SMALL_STATE(3102)] = 143681, + [SMALL_STATE(3103)] = 143693, + [SMALL_STATE(3104)] = 143705, + [SMALL_STATE(3105)] = 143727, + [SMALL_STATE(3106)] = 143739, + [SMALL_STATE(3107)] = 143751, + [SMALL_STATE(3108)] = 143773, + [SMALL_STATE(3109)] = 143785, + [SMALL_STATE(3110)] = 143797, + [SMALL_STATE(3111)] = 143809, + [SMALL_STATE(3112)] = 143827, + [SMALL_STATE(3113)] = 143839, + [SMALL_STATE(3114)] = 143851, + [SMALL_STATE(3115)] = 143873, + [SMALL_STATE(3116)] = 143885, + [SMALL_STATE(3117)] = 143897, + [SMALL_STATE(3118)] = 143909, + [SMALL_STATE(3119)] = 143921, + [SMALL_STATE(3120)] = 143933, + [SMALL_STATE(3121)] = 143945, + [SMALL_STATE(3122)] = 143957, + [SMALL_STATE(3123)] = 143969, + [SMALL_STATE(3124)] = 143981, + [SMALL_STATE(3125)] = 143993, + [SMALL_STATE(3126)] = 144011, + [SMALL_STATE(3127)] = 144023, + [SMALL_STATE(3128)] = 144035, + [SMALL_STATE(3129)] = 144047, + [SMALL_STATE(3130)] = 144059, + [SMALL_STATE(3131)] = 144071, + [SMALL_STATE(3132)] = 144083, + [SMALL_STATE(3133)] = 144095, + [SMALL_STATE(3134)] = 144107, + [SMALL_STATE(3135)] = 144119, + [SMALL_STATE(3136)] = 144131, + [SMALL_STATE(3137)] = 144147, + [SMALL_STATE(3138)] = 144159, + [SMALL_STATE(3139)] = 144171, + [SMALL_STATE(3140)] = 144183, + [SMALL_STATE(3141)] = 144195, + [SMALL_STATE(3142)] = 144207, + [SMALL_STATE(3143)] = 144219, + [SMALL_STATE(3144)] = 144231, + [SMALL_STATE(3145)] = 144243, + [SMALL_STATE(3146)] = 144255, + [SMALL_STATE(3147)] = 144267, + [SMALL_STATE(3148)] = 144279, + [SMALL_STATE(3149)] = 144291, + [SMALL_STATE(3150)] = 144303, + [SMALL_STATE(3151)] = 144315, + [SMALL_STATE(3152)] = 144327, + [SMALL_STATE(3153)] = 144343, + [SMALL_STATE(3154)] = 144361, + [SMALL_STATE(3155)] = 144373, + [SMALL_STATE(3156)] = 144385, + [SMALL_STATE(3157)] = 144397, + [SMALL_STATE(3158)] = 144409, + [SMALL_STATE(3159)] = 144421, + [SMALL_STATE(3160)] = 144433, + [SMALL_STATE(3161)] = 144452, + [SMALL_STATE(3162)] = 144465, + [SMALL_STATE(3163)] = 144480, + [SMALL_STATE(3164)] = 144495, + [SMALL_STATE(3165)] = 144514, + [SMALL_STATE(3166)] = 144533, + [SMALL_STATE(3167)] = 144552, + [SMALL_STATE(3168)] = 144571, + [SMALL_STATE(3169)] = 144590, + [SMALL_STATE(3170)] = 144605, + [SMALL_STATE(3171)] = 144624, + [SMALL_STATE(3172)] = 144643, + [SMALL_STATE(3173)] = 144656, + [SMALL_STATE(3174)] = 144675, + [SMALL_STATE(3175)] = 144694, + [SMALL_STATE(3176)] = 144713, + [SMALL_STATE(3177)] = 144732, + [SMALL_STATE(3178)] = 144751, + [SMALL_STATE(3179)] = 144766, + [SMALL_STATE(3180)] = 144785, + [SMALL_STATE(3181)] = 144800, + [SMALL_STATE(3182)] = 144819, + [SMALL_STATE(3183)] = 144838, + [SMALL_STATE(3184)] = 144857, + [SMALL_STATE(3185)] = 144876, + [SMALL_STATE(3186)] = 144891, + [SMALL_STATE(3187)] = 144910, + [SMALL_STATE(3188)] = 144925, + [SMALL_STATE(3189)] = 144944, + [SMALL_STATE(3190)] = 144959, + [SMALL_STATE(3191)] = 144978, + [SMALL_STATE(3192)] = 144997, + [SMALL_STATE(3193)] = 145016, + [SMALL_STATE(3194)] = 145035, + [SMALL_STATE(3195)] = 145050, + [SMALL_STATE(3196)] = 145065, + [SMALL_STATE(3197)] = 145080, + [SMALL_STATE(3198)] = 145099, + [SMALL_STATE(3199)] = 145118, + [SMALL_STATE(3200)] = 145133, + [SMALL_STATE(3201)] = 145148, + [SMALL_STATE(3202)] = 145167, + [SMALL_STATE(3203)] = 145186, + [SMALL_STATE(3204)] = 145205, + [SMALL_STATE(3205)] = 145222, + [SMALL_STATE(3206)] = 145241, + [SMALL_STATE(3207)] = 145260, + [SMALL_STATE(3208)] = 145275, + [SMALL_STATE(3209)] = 145290, + [SMALL_STATE(3210)] = 145307, + [SMALL_STATE(3211)] = 145322, + [SMALL_STATE(3212)] = 145337, + [SMALL_STATE(3213)] = 145356, + [SMALL_STATE(3214)] = 145371, + [SMALL_STATE(3215)] = 145390, + [SMALL_STATE(3216)] = 145409, + [SMALL_STATE(3217)] = 145428, + [SMALL_STATE(3218)] = 145443, + [SMALL_STATE(3219)] = 145462, + [SMALL_STATE(3220)] = 145481, + [SMALL_STATE(3221)] = 145496, + [SMALL_STATE(3222)] = 145515, + [SMALL_STATE(3223)] = 145534, + [SMALL_STATE(3224)] = 145553, + [SMALL_STATE(3225)] = 145564, + [SMALL_STATE(3226)] = 145579, + [SMALL_STATE(3227)] = 145598, + [SMALL_STATE(3228)] = 145613, + [SMALL_STATE(3229)] = 145632, + [SMALL_STATE(3230)] = 145647, + [SMALL_STATE(3231)] = 145666, + [SMALL_STATE(3232)] = 145685, + [SMALL_STATE(3233)] = 145704, + [SMALL_STATE(3234)] = 145723, + [SMALL_STATE(3235)] = 145742, + [SMALL_STATE(3236)] = 145757, + [SMALL_STATE(3237)] = 145776, + [SMALL_STATE(3238)] = 145795, + [SMALL_STATE(3239)] = 145810, + [SMALL_STATE(3240)] = 145829, + [SMALL_STATE(3241)] = 145848, + [SMALL_STATE(3242)] = 145867, + [SMALL_STATE(3243)] = 145886, + [SMALL_STATE(3244)] = 145905, + [SMALL_STATE(3245)] = 145920, + [SMALL_STATE(3246)] = 145935, + [SMALL_STATE(3247)] = 145954, + [SMALL_STATE(3248)] = 145973, + [SMALL_STATE(3249)] = 145988, + [SMALL_STATE(3250)] = 146005, + [SMALL_STATE(3251)] = 146024, + [SMALL_STATE(3252)] = 146043, + [SMALL_STATE(3253)] = 146062, + [SMALL_STATE(3254)] = 146081, + [SMALL_STATE(3255)] = 146100, + [SMALL_STATE(3256)] = 146115, + [SMALL_STATE(3257)] = 146130, + [SMALL_STATE(3258)] = 146145, + [SMALL_STATE(3259)] = 146164, + [SMALL_STATE(3260)] = 146179, + [SMALL_STATE(3261)] = 146198, + [SMALL_STATE(3262)] = 146217, + [SMALL_STATE(3263)] = 146232, + [SMALL_STATE(3264)] = 146251, + [SMALL_STATE(3265)] = 146270, + [SMALL_STATE(3266)] = 146289, + [SMALL_STATE(3267)] = 146304, + [SMALL_STATE(3268)] = 146323, + [SMALL_STATE(3269)] = 146342, + [SMALL_STATE(3270)] = 146361, + [SMALL_STATE(3271)] = 146374, + [SMALL_STATE(3272)] = 146393, + [SMALL_STATE(3273)] = 146408, + [SMALL_STATE(3274)] = 146427, + [SMALL_STATE(3275)] = 146442, + [SMALL_STATE(3276)] = 146457, + [SMALL_STATE(3277)] = 146472, + [SMALL_STATE(3278)] = 146491, + [SMALL_STATE(3279)] = 146510, + [SMALL_STATE(3280)] = 146525, + [SMALL_STATE(3281)] = 146537, + [SMALL_STATE(3282)] = 146553, + [SMALL_STATE(3283)] = 146569, + [SMALL_STATE(3284)] = 146581, + [SMALL_STATE(3285)] = 146597, + [SMALL_STATE(3286)] = 146613, + [SMALL_STATE(3287)] = 146629, + [SMALL_STATE(3288)] = 146645, + [SMALL_STATE(3289)] = 146661, + [SMALL_STATE(3290)] = 146677, + [SMALL_STATE(3291)] = 146693, + [SMALL_STATE(3292)] = 146705, + [SMALL_STATE(3293)] = 146719, + [SMALL_STATE(3294)] = 146735, + [SMALL_STATE(3295)] = 146751, + [SMALL_STATE(3296)] = 146761, + [SMALL_STATE(3297)] = 146777, + [SMALL_STATE(3298)] = 146793, + [SMALL_STATE(3299)] = 146809, + [SMALL_STATE(3300)] = 146825, + [SMALL_STATE(3301)] = 146841, + [SMALL_STATE(3302)] = 146857, + [SMALL_STATE(3303)] = 146873, + [SMALL_STATE(3304)] = 146889, + [SMALL_STATE(3305)] = 146901, + [SMALL_STATE(3306)] = 146915, + [SMALL_STATE(3307)] = 146931, + [SMALL_STATE(3308)] = 146947, + [SMALL_STATE(3309)] = 146963, + [SMALL_STATE(3310)] = 146979, + [SMALL_STATE(3311)] = 146995, + [SMALL_STATE(3312)] = 147011, + [SMALL_STATE(3313)] = 147027, + [SMALL_STATE(3314)] = 147043, + [SMALL_STATE(3315)] = 147059, + [SMALL_STATE(3316)] = 147073, + [SMALL_STATE(3317)] = 147083, + [SMALL_STATE(3318)] = 147093, + [SMALL_STATE(3319)] = 147109, + [SMALL_STATE(3320)] = 147123, + [SMALL_STATE(3321)] = 147133, + [SMALL_STATE(3322)] = 147147, + [SMALL_STATE(3323)] = 147161, + [SMALL_STATE(3324)] = 147177, + [SMALL_STATE(3325)] = 147191, + [SMALL_STATE(3326)] = 147205, + [SMALL_STATE(3327)] = 147221, + [SMALL_STATE(3328)] = 147237, + [SMALL_STATE(3329)] = 147249, + [SMALL_STATE(3330)] = 147265, + [SMALL_STATE(3331)] = 147281, + [SMALL_STATE(3332)] = 147297, + [SMALL_STATE(3333)] = 147313, + [SMALL_STATE(3334)] = 147327, + [SMALL_STATE(3335)] = 147337, + [SMALL_STATE(3336)] = 147347, + [SMALL_STATE(3337)] = 147361, + [SMALL_STATE(3338)] = 147371, + [SMALL_STATE(3339)] = 147387, + [SMALL_STATE(3340)] = 147401, + [SMALL_STATE(3341)] = 147417, + [SMALL_STATE(3342)] = 147433, + [SMALL_STATE(3343)] = 147449, + [SMALL_STATE(3344)] = 147461, + [SMALL_STATE(3345)] = 147477, + [SMALL_STATE(3346)] = 147489, + [SMALL_STATE(3347)] = 147503, + [SMALL_STATE(3348)] = 147519, + [SMALL_STATE(3349)] = 147531, + [SMALL_STATE(3350)] = 147547, + [SMALL_STATE(3351)] = 147561, + [SMALL_STATE(3352)] = 147577, + [SMALL_STATE(3353)] = 147593, + [SMALL_STATE(3354)] = 147609, + [SMALL_STATE(3355)] = 147625, + [SMALL_STATE(3356)] = 147641, + [SMALL_STATE(3357)] = 147657, + [SMALL_STATE(3358)] = 147673, + [SMALL_STATE(3359)] = 147689, + [SMALL_STATE(3360)] = 147703, + [SMALL_STATE(3361)] = 147713, + [SMALL_STATE(3362)] = 147729, + [SMALL_STATE(3363)] = 147741, + [SMALL_STATE(3364)] = 147757, + [SMALL_STATE(3365)] = 147773, + [SMALL_STATE(3366)] = 147787, + [SMALL_STATE(3367)] = 147803, + [SMALL_STATE(3368)] = 147815, + [SMALL_STATE(3369)] = 147831, + [SMALL_STATE(3370)] = 147847, + [SMALL_STATE(3371)] = 147857, + [SMALL_STATE(3372)] = 147869, + [SMALL_STATE(3373)] = 147885, + [SMALL_STATE(3374)] = 147901, + [SMALL_STATE(3375)] = 147917, + [SMALL_STATE(3376)] = 147933, + [SMALL_STATE(3377)] = 147949, + [SMALL_STATE(3378)] = 147965, + [SMALL_STATE(3379)] = 147981, + [SMALL_STATE(3380)] = 147997, + [SMALL_STATE(3381)] = 148013, + [SMALL_STATE(3382)] = 148027, + [SMALL_STATE(3383)] = 148043, + [SMALL_STATE(3384)] = 148057, + [SMALL_STATE(3385)] = 148073, + [SMALL_STATE(3386)] = 148089, + [SMALL_STATE(3387)] = 148105, + [SMALL_STATE(3388)] = 148121, + [SMALL_STATE(3389)] = 148131, + [SMALL_STATE(3390)] = 148145, + [SMALL_STATE(3391)] = 148161, + [SMALL_STATE(3392)] = 148177, + [SMALL_STATE(3393)] = 148193, + [SMALL_STATE(3394)] = 148209, + [SMALL_STATE(3395)] = 148225, + [SMALL_STATE(3396)] = 148241, + [SMALL_STATE(3397)] = 148255, + [SMALL_STATE(3398)] = 148271, + [SMALL_STATE(3399)] = 148285, + [SMALL_STATE(3400)] = 148301, + [SMALL_STATE(3401)] = 148315, + [SMALL_STATE(3402)] = 148331, + [SMALL_STATE(3403)] = 148347, + [SMALL_STATE(3404)] = 148361, + [SMALL_STATE(3405)] = 148377, + [SMALL_STATE(3406)] = 148391, + [SMALL_STATE(3407)] = 148405, + [SMALL_STATE(3408)] = 148421, + [SMALL_STATE(3409)] = 148437, + [SMALL_STATE(3410)] = 148453, + [SMALL_STATE(3411)] = 148467, + [SMALL_STATE(3412)] = 148483, + [SMALL_STATE(3413)] = 148499, + [SMALL_STATE(3414)] = 148515, + [SMALL_STATE(3415)] = 148529, + [SMALL_STATE(3416)] = 148539, + [SMALL_STATE(3417)] = 148552, + [SMALL_STATE(3418)] = 148565, + [SMALL_STATE(3419)] = 148578, + [SMALL_STATE(3420)] = 148591, + [SMALL_STATE(3421)] = 148604, + [SMALL_STATE(3422)] = 148617, + [SMALL_STATE(3423)] = 148630, + [SMALL_STATE(3424)] = 148643, + [SMALL_STATE(3425)] = 148656, + [SMALL_STATE(3426)] = 148665, + [SMALL_STATE(3427)] = 148678, + [SMALL_STATE(3428)] = 148691, + [SMALL_STATE(3429)] = 148704, + [SMALL_STATE(3430)] = 148717, + [SMALL_STATE(3431)] = 148730, + [SMALL_STATE(3432)] = 148743, + [SMALL_STATE(3433)] = 148756, + [SMALL_STATE(3434)] = 148769, + [SMALL_STATE(3435)] = 148782, + [SMALL_STATE(3436)] = 148795, + [SMALL_STATE(3437)] = 148808, + [SMALL_STATE(3438)] = 148821, + [SMALL_STATE(3439)] = 148834, + [SMALL_STATE(3440)] = 148847, + [SMALL_STATE(3441)] = 148860, + [SMALL_STATE(3442)] = 148873, + [SMALL_STATE(3443)] = 148886, + [SMALL_STATE(3444)] = 148899, + [SMALL_STATE(3445)] = 148912, + [SMALL_STATE(3446)] = 148925, + [SMALL_STATE(3447)] = 148938, + [SMALL_STATE(3448)] = 148951, + [SMALL_STATE(3449)] = 148964, + [SMALL_STATE(3450)] = 148977, + [SMALL_STATE(3451)] = 148990, + [SMALL_STATE(3452)] = 149003, + [SMALL_STATE(3453)] = 149016, + [SMALL_STATE(3454)] = 149029, + [SMALL_STATE(3455)] = 149042, + [SMALL_STATE(3456)] = 149055, + [SMALL_STATE(3457)] = 149068, + [SMALL_STATE(3458)] = 149081, + [SMALL_STATE(3459)] = 149094, + [SMALL_STATE(3460)] = 149107, + [SMALL_STATE(3461)] = 149120, + [SMALL_STATE(3462)] = 149133, + [SMALL_STATE(3463)] = 149146, + [SMALL_STATE(3464)] = 149159, + [SMALL_STATE(3465)] = 149172, + [SMALL_STATE(3466)] = 149185, + [SMALL_STATE(3467)] = 149198, + [SMALL_STATE(3468)] = 149211, + [SMALL_STATE(3469)] = 149224, + [SMALL_STATE(3470)] = 149237, + [SMALL_STATE(3471)] = 149250, + [SMALL_STATE(3472)] = 149263, + [SMALL_STATE(3473)] = 149276, + [SMALL_STATE(3474)] = 149289, + [SMALL_STATE(3475)] = 149302, + [SMALL_STATE(3476)] = 149315, + [SMALL_STATE(3477)] = 149328, + [SMALL_STATE(3478)] = 149341, + [SMALL_STATE(3479)] = 149354, + [SMALL_STATE(3480)] = 149367, + [SMALL_STATE(3481)] = 149380, + [SMALL_STATE(3482)] = 149393, + [SMALL_STATE(3483)] = 149406, + [SMALL_STATE(3484)] = 149419, + [SMALL_STATE(3485)] = 149432, + [SMALL_STATE(3486)] = 149445, + [SMALL_STATE(3487)] = 149458, + [SMALL_STATE(3488)] = 149471, + [SMALL_STATE(3489)] = 149484, + [SMALL_STATE(3490)] = 149497, + [SMALL_STATE(3491)] = 149510, + [SMALL_STATE(3492)] = 149523, + [SMALL_STATE(3493)] = 149536, + [SMALL_STATE(3494)] = 149549, + [SMALL_STATE(3495)] = 149560, + [SMALL_STATE(3496)] = 149573, + [SMALL_STATE(3497)] = 149586, + [SMALL_STATE(3498)] = 149599, + [SMALL_STATE(3499)] = 149612, + [SMALL_STATE(3500)] = 149625, + [SMALL_STATE(3501)] = 149638, + [SMALL_STATE(3502)] = 149651, + [SMALL_STATE(3503)] = 149664, + [SMALL_STATE(3504)] = 149677, + [SMALL_STATE(3505)] = 149690, + [SMALL_STATE(3506)] = 149703, + [SMALL_STATE(3507)] = 149716, + [SMALL_STATE(3508)] = 149729, + [SMALL_STATE(3509)] = 149742, + [SMALL_STATE(3510)] = 149755, + [SMALL_STATE(3511)] = 149768, + [SMALL_STATE(3512)] = 149781, + [SMALL_STATE(3513)] = 149794, + [SMALL_STATE(3514)] = 149807, + [SMALL_STATE(3515)] = 149820, + [SMALL_STATE(3516)] = 149833, + [SMALL_STATE(3517)] = 149846, + [SMALL_STATE(3518)] = 149859, + [SMALL_STATE(3519)] = 149872, + [SMALL_STATE(3520)] = 149881, + [SMALL_STATE(3521)] = 149894, + [SMALL_STATE(3522)] = 149907, + [SMALL_STATE(3523)] = 149920, + [SMALL_STATE(3524)] = 149933, + [SMALL_STATE(3525)] = 149946, + [SMALL_STATE(3526)] = 149959, + [SMALL_STATE(3527)] = 149972, + [SMALL_STATE(3528)] = 149985, + [SMALL_STATE(3529)] = 149998, + [SMALL_STATE(3530)] = 150011, + [SMALL_STATE(3531)] = 150024, + [SMALL_STATE(3532)] = 150037, + [SMALL_STATE(3533)] = 150050, + [SMALL_STATE(3534)] = 150063, + [SMALL_STATE(3535)] = 150076, + [SMALL_STATE(3536)] = 150089, + [SMALL_STATE(3537)] = 150102, + [SMALL_STATE(3538)] = 150115, + [SMALL_STATE(3539)] = 150128, + [SMALL_STATE(3540)] = 150141, + [SMALL_STATE(3541)] = 150154, + [SMALL_STATE(3542)] = 150167, + [SMALL_STATE(3543)] = 150180, + [SMALL_STATE(3544)] = 150193, + [SMALL_STATE(3545)] = 150204, + [SMALL_STATE(3546)] = 150217, + [SMALL_STATE(3547)] = 150230, + [SMALL_STATE(3548)] = 150243, + [SMALL_STATE(3549)] = 150256, + [SMALL_STATE(3550)] = 150269, + [SMALL_STATE(3551)] = 150282, + [SMALL_STATE(3552)] = 150295, + [SMALL_STATE(3553)] = 150308, + [SMALL_STATE(3554)] = 150321, + [SMALL_STATE(3555)] = 150334, + [SMALL_STATE(3556)] = 150347, + [SMALL_STATE(3557)] = 150360, + [SMALL_STATE(3558)] = 150373, + [SMALL_STATE(3559)] = 150386, + [SMALL_STATE(3560)] = 150399, + [SMALL_STATE(3561)] = 150412, + [SMALL_STATE(3562)] = 150425, + [SMALL_STATE(3563)] = 150438, + [SMALL_STATE(3564)] = 150451, + [SMALL_STATE(3565)] = 150464, + [SMALL_STATE(3566)] = 150477, + [SMALL_STATE(3567)] = 150490, + [SMALL_STATE(3568)] = 150499, + [SMALL_STATE(3569)] = 150512, + [SMALL_STATE(3570)] = 150525, + [SMALL_STATE(3571)] = 150538, + [SMALL_STATE(3572)] = 150551, + [SMALL_STATE(3573)] = 150564, + [SMALL_STATE(3574)] = 150577, + [SMALL_STATE(3575)] = 150590, + [SMALL_STATE(3576)] = 150603, + [SMALL_STATE(3577)] = 150616, + [SMALL_STATE(3578)] = 150629, + [SMALL_STATE(3579)] = 150642, + [SMALL_STATE(3580)] = 150655, + [SMALL_STATE(3581)] = 150668, + [SMALL_STATE(3582)] = 150681, + [SMALL_STATE(3583)] = 150694, + [SMALL_STATE(3584)] = 150707, + [SMALL_STATE(3585)] = 150720, + [SMALL_STATE(3586)] = 150733, + [SMALL_STATE(3587)] = 150746, + [SMALL_STATE(3588)] = 150757, + [SMALL_STATE(3589)] = 150768, + [SMALL_STATE(3590)] = 150781, + [SMALL_STATE(3591)] = 150794, + [SMALL_STATE(3592)] = 150807, + [SMALL_STATE(3593)] = 150820, + [SMALL_STATE(3594)] = 150833, + [SMALL_STATE(3595)] = 150846, + [SMALL_STATE(3596)] = 150859, + [SMALL_STATE(3597)] = 150872, + [SMALL_STATE(3598)] = 150885, + [SMALL_STATE(3599)] = 150898, + [SMALL_STATE(3600)] = 150911, + [SMALL_STATE(3601)] = 150924, + [SMALL_STATE(3602)] = 150937, + [SMALL_STATE(3603)] = 150950, + [SMALL_STATE(3604)] = 150963, + [SMALL_STATE(3605)] = 150976, + [SMALL_STATE(3606)] = 150989, + [SMALL_STATE(3607)] = 151002, + [SMALL_STATE(3608)] = 151015, + [SMALL_STATE(3609)] = 151028, + [SMALL_STATE(3610)] = 151041, + [SMALL_STATE(3611)] = 151054, + [SMALL_STATE(3612)] = 151067, + [SMALL_STATE(3613)] = 151080, + [SMALL_STATE(3614)] = 151093, + [SMALL_STATE(3615)] = 151102, + [SMALL_STATE(3616)] = 151115, + [SMALL_STATE(3617)] = 151128, + [SMALL_STATE(3618)] = 151141, + [SMALL_STATE(3619)] = 151154, + [SMALL_STATE(3620)] = 151167, + [SMALL_STATE(3621)] = 151180, + [SMALL_STATE(3622)] = 151193, + [SMALL_STATE(3623)] = 151206, + [SMALL_STATE(3624)] = 151219, + [SMALL_STATE(3625)] = 151232, + [SMALL_STATE(3626)] = 151245, + [SMALL_STATE(3627)] = 151258, + [SMALL_STATE(3628)] = 151271, + [SMALL_STATE(3629)] = 151284, + [SMALL_STATE(3630)] = 151297, + [SMALL_STATE(3631)] = 151310, + [SMALL_STATE(3632)] = 151323, + [SMALL_STATE(3633)] = 151336, + [SMALL_STATE(3634)] = 151349, + [SMALL_STATE(3635)] = 151362, + [SMALL_STATE(3636)] = 151375, + [SMALL_STATE(3637)] = 151388, + [SMALL_STATE(3638)] = 151401, + [SMALL_STATE(3639)] = 151414, + [SMALL_STATE(3640)] = 151427, + [SMALL_STATE(3641)] = 151440, + [SMALL_STATE(3642)] = 151453, + [SMALL_STATE(3643)] = 151466, + [SMALL_STATE(3644)] = 151479, + [SMALL_STATE(3645)] = 151492, + [SMALL_STATE(3646)] = 151505, + [SMALL_STATE(3647)] = 151518, + [SMALL_STATE(3648)] = 151531, + [SMALL_STATE(3649)] = 151544, + [SMALL_STATE(3650)] = 151557, + [SMALL_STATE(3651)] = 151566, + [SMALL_STATE(3652)] = 151579, + [SMALL_STATE(3653)] = 151592, + [SMALL_STATE(3654)] = 151605, + [SMALL_STATE(3655)] = 151618, + [SMALL_STATE(3656)] = 151631, + [SMALL_STATE(3657)] = 151644, + [SMALL_STATE(3658)] = 151657, + [SMALL_STATE(3659)] = 151670, + [SMALL_STATE(3660)] = 151683, + [SMALL_STATE(3661)] = 151696, + [SMALL_STATE(3662)] = 151709, + [SMALL_STATE(3663)] = 151722, + [SMALL_STATE(3664)] = 151735, + [SMALL_STATE(3665)] = 151748, + [SMALL_STATE(3666)] = 151761, + [SMALL_STATE(3667)] = 151774, + [SMALL_STATE(3668)] = 151787, + [SMALL_STATE(3669)] = 151800, + [SMALL_STATE(3670)] = 151813, + [SMALL_STATE(3671)] = 151826, + [SMALL_STATE(3672)] = 151839, + [SMALL_STATE(3673)] = 151852, + [SMALL_STATE(3674)] = 151865, + [SMALL_STATE(3675)] = 151878, + [SMALL_STATE(3676)] = 151891, + [SMALL_STATE(3677)] = 151904, + [SMALL_STATE(3678)] = 151917, + [SMALL_STATE(3679)] = 151930, + [SMALL_STATE(3680)] = 151943, + [SMALL_STATE(3681)] = 151956, + [SMALL_STATE(3682)] = 151969, + [SMALL_STATE(3683)] = 151982, + [SMALL_STATE(3684)] = 151995, + [SMALL_STATE(3685)] = 152008, + [SMALL_STATE(3686)] = 152021, + [SMALL_STATE(3687)] = 152034, + [SMALL_STATE(3688)] = 152047, + [SMALL_STATE(3689)] = 152060, + [SMALL_STATE(3690)] = 152073, + [SMALL_STATE(3691)] = 152086, + [SMALL_STATE(3692)] = 152099, + [SMALL_STATE(3693)] = 152112, + [SMALL_STATE(3694)] = 152125, + [SMALL_STATE(3695)] = 152138, + [SMALL_STATE(3696)] = 152151, + [SMALL_STATE(3697)] = 152164, + [SMALL_STATE(3698)] = 152177, + [SMALL_STATE(3699)] = 152190, + [SMALL_STATE(3700)] = 152203, + [SMALL_STATE(3701)] = 152216, + [SMALL_STATE(3702)] = 152229, + [SMALL_STATE(3703)] = 152242, + [SMALL_STATE(3704)] = 152255, + [SMALL_STATE(3705)] = 152268, + [SMALL_STATE(3706)] = 152281, + [SMALL_STATE(3707)] = 152294, + [SMALL_STATE(3708)] = 152307, + [SMALL_STATE(3709)] = 152320, + [SMALL_STATE(3710)] = 152333, + [SMALL_STATE(3711)] = 152346, + [SMALL_STATE(3712)] = 152359, + [SMALL_STATE(3713)] = 152372, + [SMALL_STATE(3714)] = 152385, + [SMALL_STATE(3715)] = 152398, + [SMALL_STATE(3716)] = 152411, + [SMALL_STATE(3717)] = 152424, + [SMALL_STATE(3718)] = 152437, + [SMALL_STATE(3719)] = 152450, + [SMALL_STATE(3720)] = 152463, + [SMALL_STATE(3721)] = 152476, + [SMALL_STATE(3722)] = 152489, + [SMALL_STATE(3723)] = 152502, + [SMALL_STATE(3724)] = 152515, + [SMALL_STATE(3725)] = 152528, + [SMALL_STATE(3726)] = 152541, + [SMALL_STATE(3727)] = 152554, + [SMALL_STATE(3728)] = 152567, + [SMALL_STATE(3729)] = 152580, + [SMALL_STATE(3730)] = 152593, + [SMALL_STATE(3731)] = 152606, + [SMALL_STATE(3732)] = 152619, + [SMALL_STATE(3733)] = 152632, + [SMALL_STATE(3734)] = 152645, + [SMALL_STATE(3735)] = 152658, + [SMALL_STATE(3736)] = 152671, + [SMALL_STATE(3737)] = 152684, + [SMALL_STATE(3738)] = 152697, + [SMALL_STATE(3739)] = 152710, + [SMALL_STATE(3740)] = 152723, + [SMALL_STATE(3741)] = 152736, + [SMALL_STATE(3742)] = 152749, + [SMALL_STATE(3743)] = 152762, + [SMALL_STATE(3744)] = 152775, + [SMALL_STATE(3745)] = 152788, + [SMALL_STATE(3746)] = 152801, + [SMALL_STATE(3747)] = 152814, + [SMALL_STATE(3748)] = 152827, + [SMALL_STATE(3749)] = 152840, + [SMALL_STATE(3750)] = 152853, + [SMALL_STATE(3751)] = 152866, + [SMALL_STATE(3752)] = 152879, + [SMALL_STATE(3753)] = 152892, + [SMALL_STATE(3754)] = 152905, + [SMALL_STATE(3755)] = 152918, + [SMALL_STATE(3756)] = 152931, + [SMALL_STATE(3757)] = 152944, + [SMALL_STATE(3758)] = 152957, + [SMALL_STATE(3759)] = 152970, + [SMALL_STATE(3760)] = 152983, + [SMALL_STATE(3761)] = 152996, + [SMALL_STATE(3762)] = 153009, + [SMALL_STATE(3763)] = 153022, + [SMALL_STATE(3764)] = 153035, + [SMALL_STATE(3765)] = 153048, + [SMALL_STATE(3766)] = 153061, + [SMALL_STATE(3767)] = 153074, + [SMALL_STATE(3768)] = 153087, + [SMALL_STATE(3769)] = 153100, + [SMALL_STATE(3770)] = 153113, + [SMALL_STATE(3771)] = 153126, + [SMALL_STATE(3772)] = 153139, + [SMALL_STATE(3773)] = 153152, + [SMALL_STATE(3774)] = 153165, + [SMALL_STATE(3775)] = 153178, + [SMALL_STATE(3776)] = 153191, + [SMALL_STATE(3777)] = 153204, + [SMALL_STATE(3778)] = 153217, + [SMALL_STATE(3779)] = 153230, + [SMALL_STATE(3780)] = 153243, + [SMALL_STATE(3781)] = 153256, + [SMALL_STATE(3782)] = 153269, + [SMALL_STATE(3783)] = 153282, + [SMALL_STATE(3784)] = 153295, + [SMALL_STATE(3785)] = 153308, + [SMALL_STATE(3786)] = 153321, + [SMALL_STATE(3787)] = 153334, + [SMALL_STATE(3788)] = 153347, + [SMALL_STATE(3789)] = 153360, + [SMALL_STATE(3790)] = 153373, + [SMALL_STATE(3791)] = 153386, + [SMALL_STATE(3792)] = 153399, + [SMALL_STATE(3793)] = 153412, + [SMALL_STATE(3794)] = 153425, + [SMALL_STATE(3795)] = 153438, + [SMALL_STATE(3796)] = 153451, + [SMALL_STATE(3797)] = 153464, + [SMALL_STATE(3798)] = 153477, + [SMALL_STATE(3799)] = 153490, + [SMALL_STATE(3800)] = 153503, + [SMALL_STATE(3801)] = 153516, + [SMALL_STATE(3802)] = 153529, + [SMALL_STATE(3803)] = 153542, + [SMALL_STATE(3804)] = 153555, + [SMALL_STATE(3805)] = 153568, + [SMALL_STATE(3806)] = 153581, + [SMALL_STATE(3807)] = 153594, + [SMALL_STATE(3808)] = 153607, + [SMALL_STATE(3809)] = 153620, + [SMALL_STATE(3810)] = 153633, + [SMALL_STATE(3811)] = 153646, + [SMALL_STATE(3812)] = 153659, + [SMALL_STATE(3813)] = 153672, + [SMALL_STATE(3814)] = 153685, + [SMALL_STATE(3815)] = 153698, + [SMALL_STATE(3816)] = 153711, + [SMALL_STATE(3817)] = 153724, + [SMALL_STATE(3818)] = 153737, + [SMALL_STATE(3819)] = 153750, + [SMALL_STATE(3820)] = 153763, + [SMALL_STATE(3821)] = 153776, + [SMALL_STATE(3822)] = 153789, + [SMALL_STATE(3823)] = 153802, + [SMALL_STATE(3824)] = 153815, + [SMALL_STATE(3825)] = 153828, + [SMALL_STATE(3826)] = 153841, + [SMALL_STATE(3827)] = 153854, + [SMALL_STATE(3828)] = 153867, + [SMALL_STATE(3829)] = 153880, + [SMALL_STATE(3830)] = 153893, + [SMALL_STATE(3831)] = 153906, + [SMALL_STATE(3832)] = 153919, + [SMALL_STATE(3833)] = 153932, + [SMALL_STATE(3834)] = 153945, + [SMALL_STATE(3835)] = 153958, + [SMALL_STATE(3836)] = 153971, + [SMALL_STATE(3837)] = 153984, + [SMALL_STATE(3838)] = 153997, + [SMALL_STATE(3839)] = 154010, + [SMALL_STATE(3840)] = 154023, + [SMALL_STATE(3841)] = 154036, + [SMALL_STATE(3842)] = 154049, + [SMALL_STATE(3843)] = 154062, + [SMALL_STATE(3844)] = 154075, + [SMALL_STATE(3845)] = 154088, + [SMALL_STATE(3846)] = 154101, + [SMALL_STATE(3847)] = 154114, + [SMALL_STATE(3848)] = 154127, + [SMALL_STATE(3849)] = 154140, + [SMALL_STATE(3850)] = 154153, + [SMALL_STATE(3851)] = 154166, + [SMALL_STATE(3852)] = 154179, + [SMALL_STATE(3853)] = 154192, + [SMALL_STATE(3854)] = 154205, + [SMALL_STATE(3855)] = 154218, + [SMALL_STATE(3856)] = 154231, + [SMALL_STATE(3857)] = 154244, + [SMALL_STATE(3858)] = 154257, + [SMALL_STATE(3859)] = 154270, + [SMALL_STATE(3860)] = 154283, + [SMALL_STATE(3861)] = 154296, + [SMALL_STATE(3862)] = 154309, + [SMALL_STATE(3863)] = 154322, + [SMALL_STATE(3864)] = 154335, + [SMALL_STATE(3865)] = 154348, + [SMALL_STATE(3866)] = 154361, + [SMALL_STATE(3867)] = 154374, + [SMALL_STATE(3868)] = 154387, + [SMALL_STATE(3869)] = 154400, + [SMALL_STATE(3870)] = 154413, + [SMALL_STATE(3871)] = 154426, + [SMALL_STATE(3872)] = 154439, + [SMALL_STATE(3873)] = 154452, + [SMALL_STATE(3874)] = 154465, + [SMALL_STATE(3875)] = 154478, + [SMALL_STATE(3876)] = 154491, + [SMALL_STATE(3877)] = 154504, + [SMALL_STATE(3878)] = 154517, + [SMALL_STATE(3879)] = 154530, + [SMALL_STATE(3880)] = 154543, + [SMALL_STATE(3881)] = 154556, + [SMALL_STATE(3882)] = 154569, + [SMALL_STATE(3883)] = 154582, + [SMALL_STATE(3884)] = 154595, + [SMALL_STATE(3885)] = 154608, + [SMALL_STATE(3886)] = 154621, + [SMALL_STATE(3887)] = 154634, + [SMALL_STATE(3888)] = 154647, + [SMALL_STATE(3889)] = 154660, + [SMALL_STATE(3890)] = 154673, + [SMALL_STATE(3891)] = 154686, + [SMALL_STATE(3892)] = 154699, + [SMALL_STATE(3893)] = 154712, + [SMALL_STATE(3894)] = 154725, + [SMALL_STATE(3895)] = 154738, + [SMALL_STATE(3896)] = 154751, + [SMALL_STATE(3897)] = 154764, + [SMALL_STATE(3898)] = 154777, + [SMALL_STATE(3899)] = 154790, + [SMALL_STATE(3900)] = 154803, + [SMALL_STATE(3901)] = 154816, + [SMALL_STATE(3902)] = 154829, + [SMALL_STATE(3903)] = 154842, + [SMALL_STATE(3904)] = 154855, + [SMALL_STATE(3905)] = 154868, + [SMALL_STATE(3906)] = 154881, + [SMALL_STATE(3907)] = 154894, + [SMALL_STATE(3908)] = 154907, + [SMALL_STATE(3909)] = 154920, + [SMALL_STATE(3910)] = 154933, + [SMALL_STATE(3911)] = 154946, + [SMALL_STATE(3912)] = 154959, + [SMALL_STATE(3913)] = 154972, + [SMALL_STATE(3914)] = 154985, + [SMALL_STATE(3915)] = 154998, + [SMALL_STATE(3916)] = 155011, + [SMALL_STATE(3917)] = 155024, + [SMALL_STATE(3918)] = 155037, + [SMALL_STATE(3919)] = 155050, + [SMALL_STATE(3920)] = 155063, + [SMALL_STATE(3921)] = 155076, + [SMALL_STATE(3922)] = 155089, + [SMALL_STATE(3923)] = 155102, + [SMALL_STATE(3924)] = 155115, + [SMALL_STATE(3925)] = 155128, + [SMALL_STATE(3926)] = 155141, + [SMALL_STATE(3927)] = 155154, + [SMALL_STATE(3928)] = 155167, + [SMALL_STATE(3929)] = 155180, + [SMALL_STATE(3930)] = 155193, + [SMALL_STATE(3931)] = 155206, + [SMALL_STATE(3932)] = 155219, + [SMALL_STATE(3933)] = 155232, + [SMALL_STATE(3934)] = 155245, + [SMALL_STATE(3935)] = 155258, + [SMALL_STATE(3936)] = 155271, + [SMALL_STATE(3937)] = 155284, + [SMALL_STATE(3938)] = 155297, + [SMALL_STATE(3939)] = 155310, + [SMALL_STATE(3940)] = 155323, + [SMALL_STATE(3941)] = 155336, + [SMALL_STATE(3942)] = 155349, + [SMALL_STATE(3943)] = 155362, + [SMALL_STATE(3944)] = 155375, + [SMALL_STATE(3945)] = 155388, + [SMALL_STATE(3946)] = 155401, + [SMALL_STATE(3947)] = 155414, + [SMALL_STATE(3948)] = 155427, + [SMALL_STATE(3949)] = 155440, + [SMALL_STATE(3950)] = 155453, + [SMALL_STATE(3951)] = 155466, + [SMALL_STATE(3952)] = 155479, + [SMALL_STATE(3953)] = 155492, + [SMALL_STATE(3954)] = 155505, + [SMALL_STATE(3955)] = 155518, + [SMALL_STATE(3956)] = 155531, + [SMALL_STATE(3957)] = 155544, + [SMALL_STATE(3958)] = 155557, + [SMALL_STATE(3959)] = 155570, + [SMALL_STATE(3960)] = 155583, + [SMALL_STATE(3961)] = 155596, + [SMALL_STATE(3962)] = 155609, + [SMALL_STATE(3963)] = 155622, + [SMALL_STATE(3964)] = 155635, + [SMALL_STATE(3965)] = 155648, + [SMALL_STATE(3966)] = 155661, + [SMALL_STATE(3967)] = 155674, + [SMALL_STATE(3968)] = 155687, + [SMALL_STATE(3969)] = 155700, + [SMALL_STATE(3970)] = 155713, + [SMALL_STATE(3971)] = 155726, + [SMALL_STATE(3972)] = 155739, + [SMALL_STATE(3973)] = 155752, + [SMALL_STATE(3974)] = 155765, + [SMALL_STATE(3975)] = 155778, + [SMALL_STATE(3976)] = 155791, + [SMALL_STATE(3977)] = 155804, + [SMALL_STATE(3978)] = 155817, + [SMALL_STATE(3979)] = 155830, + [SMALL_STATE(3980)] = 155843, + [SMALL_STATE(3981)] = 155856, + [SMALL_STATE(3982)] = 155869, + [SMALL_STATE(3983)] = 155882, + [SMALL_STATE(3984)] = 155895, + [SMALL_STATE(3985)] = 155908, + [SMALL_STATE(3986)] = 155921, + [SMALL_STATE(3987)] = 155934, + [SMALL_STATE(3988)] = 155947, + [SMALL_STATE(3989)] = 155960, + [SMALL_STATE(3990)] = 155973, + [SMALL_STATE(3991)] = 155986, + [SMALL_STATE(3992)] = 155999, + [SMALL_STATE(3993)] = 156012, + [SMALL_STATE(3994)] = 156025, + [SMALL_STATE(3995)] = 156038, + [SMALL_STATE(3996)] = 156051, + [SMALL_STATE(3997)] = 156064, + [SMALL_STATE(3998)] = 156077, + [SMALL_STATE(3999)] = 156090, + [SMALL_STATE(4000)] = 156103, + [SMALL_STATE(4001)] = 156116, + [SMALL_STATE(4002)] = 156129, + [SMALL_STATE(4003)] = 156142, + [SMALL_STATE(4004)] = 156155, + [SMALL_STATE(4005)] = 156168, + [SMALL_STATE(4006)] = 156181, + [SMALL_STATE(4007)] = 156194, + [SMALL_STATE(4008)] = 156207, + [SMALL_STATE(4009)] = 156220, + [SMALL_STATE(4010)] = 156233, + [SMALL_STATE(4011)] = 156246, + [SMALL_STATE(4012)] = 156259, + [SMALL_STATE(4013)] = 156272, + [SMALL_STATE(4014)] = 156285, + [SMALL_STATE(4015)] = 156298, + [SMALL_STATE(4016)] = 156311, + [SMALL_STATE(4017)] = 156324, + [SMALL_STATE(4018)] = 156337, + [SMALL_STATE(4019)] = 156350, + [SMALL_STATE(4020)] = 156363, + [SMALL_STATE(4021)] = 156376, + [SMALL_STATE(4022)] = 156389, + [SMALL_STATE(4023)] = 156402, + [SMALL_STATE(4024)] = 156415, + [SMALL_STATE(4025)] = 156428, + [SMALL_STATE(4026)] = 156441, + [SMALL_STATE(4027)] = 156454, + [SMALL_STATE(4028)] = 156467, + [SMALL_STATE(4029)] = 156480, + [SMALL_STATE(4030)] = 156493, + [SMALL_STATE(4031)] = 156506, + [SMALL_STATE(4032)] = 156519, + [SMALL_STATE(4033)] = 156532, + [SMALL_STATE(4034)] = 156545, + [SMALL_STATE(4035)] = 156558, + [SMALL_STATE(4036)] = 156571, + [SMALL_STATE(4037)] = 156584, + [SMALL_STATE(4038)] = 156597, + [SMALL_STATE(4039)] = 156610, + [SMALL_STATE(4040)] = 156623, + [SMALL_STATE(4041)] = 156636, + [SMALL_STATE(4042)] = 156649, + [SMALL_STATE(4043)] = 156662, + [SMALL_STATE(4044)] = 156675, + [SMALL_STATE(4045)] = 156688, + [SMALL_STATE(4046)] = 156701, + [SMALL_STATE(4047)] = 156714, + [SMALL_STATE(4048)] = 156727, + [SMALL_STATE(4049)] = 156740, + [SMALL_STATE(4050)] = 156751, + [SMALL_STATE(4051)] = 156764, + [SMALL_STATE(4052)] = 156777, + [SMALL_STATE(4053)] = 156790, + [SMALL_STATE(4054)] = 156803, + [SMALL_STATE(4055)] = 156816, + [SMALL_STATE(4056)] = 156829, + [SMALL_STATE(4057)] = 156842, + [SMALL_STATE(4058)] = 156855, + [SMALL_STATE(4059)] = 156868, + [SMALL_STATE(4060)] = 156881, + [SMALL_STATE(4061)] = 156894, + [SMALL_STATE(4062)] = 156907, + [SMALL_STATE(4063)] = 156920, + [SMALL_STATE(4064)] = 156933, + [SMALL_STATE(4065)] = 156946, + [SMALL_STATE(4066)] = 156959, + [SMALL_STATE(4067)] = 156972, + [SMALL_STATE(4068)] = 156985, + [SMALL_STATE(4069)] = 156998, + [SMALL_STATE(4070)] = 157011, + [SMALL_STATE(4071)] = 157024, + [SMALL_STATE(4072)] = 157037, + [SMALL_STATE(4073)] = 157050, + [SMALL_STATE(4074)] = 157063, + [SMALL_STATE(4075)] = 157076, + [SMALL_STATE(4076)] = 157089, + [SMALL_STATE(4077)] = 157102, + [SMALL_STATE(4078)] = 157115, + [SMALL_STATE(4079)] = 157128, + [SMALL_STATE(4080)] = 157141, + [SMALL_STATE(4081)] = 157154, + [SMALL_STATE(4082)] = 157167, + [SMALL_STATE(4083)] = 157180, + [SMALL_STATE(4084)] = 157193, + [SMALL_STATE(4085)] = 157206, + [SMALL_STATE(4086)] = 157219, + [SMALL_STATE(4087)] = 157232, + [SMALL_STATE(4088)] = 157245, + [SMALL_STATE(4089)] = 157258, + [SMALL_STATE(4090)] = 157271, + [SMALL_STATE(4091)] = 157284, + [SMALL_STATE(4092)] = 157297, + [SMALL_STATE(4093)] = 157310, + [SMALL_STATE(4094)] = 157323, + [SMALL_STATE(4095)] = 157336, + [SMALL_STATE(4096)] = 157349, + [SMALL_STATE(4097)] = 157362, + [SMALL_STATE(4098)] = 157375, + [SMALL_STATE(4099)] = 157388, + [SMALL_STATE(4100)] = 157401, + [SMALL_STATE(4101)] = 157414, + [SMALL_STATE(4102)] = 157427, + [SMALL_STATE(4103)] = 157440, + [SMALL_STATE(4104)] = 157453, + [SMALL_STATE(4105)] = 157466, + [SMALL_STATE(4106)] = 157479, + [SMALL_STATE(4107)] = 157492, + [SMALL_STATE(4108)] = 157505, + [SMALL_STATE(4109)] = 157518, + [SMALL_STATE(4110)] = 157531, + [SMALL_STATE(4111)] = 157544, + [SMALL_STATE(4112)] = 157557, + [SMALL_STATE(4113)] = 157570, + [SMALL_STATE(4114)] = 157583, + [SMALL_STATE(4115)] = 157596, + [SMALL_STATE(4116)] = 157609, + [SMALL_STATE(4117)] = 157622, + [SMALL_STATE(4118)] = 157635, + [SMALL_STATE(4119)] = 157648, + [SMALL_STATE(4120)] = 157661, + [SMALL_STATE(4121)] = 157674, + [SMALL_STATE(4122)] = 157687, + [SMALL_STATE(4123)] = 157700, + [SMALL_STATE(4124)] = 157713, + [SMALL_STATE(4125)] = 157726, + [SMALL_STATE(4126)] = 157739, + [SMALL_STATE(4127)] = 157752, + [SMALL_STATE(4128)] = 157765, + [SMALL_STATE(4129)] = 157778, + [SMALL_STATE(4130)] = 157791, + [SMALL_STATE(4131)] = 157804, + [SMALL_STATE(4132)] = 157817, + [SMALL_STATE(4133)] = 157830, + [SMALL_STATE(4134)] = 157843, + [SMALL_STATE(4135)] = 157856, + [SMALL_STATE(4136)] = 157869, + [SMALL_STATE(4137)] = 157882, + [SMALL_STATE(4138)] = 157895, + [SMALL_STATE(4139)] = 157908, + [SMALL_STATE(4140)] = 157921, + [SMALL_STATE(4141)] = 157934, + [SMALL_STATE(4142)] = 157947, + [SMALL_STATE(4143)] = 157960, + [SMALL_STATE(4144)] = 157973, + [SMALL_STATE(4145)] = 157984, + [SMALL_STATE(4146)] = 157997, + [SMALL_STATE(4147)] = 158010, + [SMALL_STATE(4148)] = 158023, + [SMALL_STATE(4149)] = 158036, + [SMALL_STATE(4150)] = 158049, + [SMALL_STATE(4151)] = 158062, + [SMALL_STATE(4152)] = 158075, + [SMALL_STATE(4153)] = 158088, + [SMALL_STATE(4154)] = 158101, + [SMALL_STATE(4155)] = 158114, + [SMALL_STATE(4156)] = 158127, + [SMALL_STATE(4157)] = 158140, + [SMALL_STATE(4158)] = 158153, + [SMALL_STATE(4159)] = 158166, + [SMALL_STATE(4160)] = 158179, + [SMALL_STATE(4161)] = 158192, + [SMALL_STATE(4162)] = 158205, + [SMALL_STATE(4163)] = 158218, + [SMALL_STATE(4164)] = 158231, + [SMALL_STATE(4165)] = 158244, + [SMALL_STATE(4166)] = 158257, + [SMALL_STATE(4167)] = 158270, + [SMALL_STATE(4168)] = 158283, + [SMALL_STATE(4169)] = 158296, + [SMALL_STATE(4170)] = 158309, + [SMALL_STATE(4171)] = 158322, + [SMALL_STATE(4172)] = 158335, + [SMALL_STATE(4173)] = 158348, + [SMALL_STATE(4174)] = 158361, + [SMALL_STATE(4175)] = 158374, + [SMALL_STATE(4176)] = 158387, + [SMALL_STATE(4177)] = 158400, + [SMALL_STATE(4178)] = 158413, + [SMALL_STATE(4179)] = 158426, + [SMALL_STATE(4180)] = 158439, + [SMALL_STATE(4181)] = 158452, + [SMALL_STATE(4182)] = 158465, + [SMALL_STATE(4183)] = 158478, + [SMALL_STATE(4184)] = 158491, + [SMALL_STATE(4185)] = 158504, + [SMALL_STATE(4186)] = 158517, + [SMALL_STATE(4187)] = 158530, + [SMALL_STATE(4188)] = 158543, + [SMALL_STATE(4189)] = 158556, + [SMALL_STATE(4190)] = 158569, + [SMALL_STATE(4191)] = 158582, + [SMALL_STATE(4192)] = 158595, + [SMALL_STATE(4193)] = 158608, + [SMALL_STATE(4194)] = 158621, + [SMALL_STATE(4195)] = 158634, + [SMALL_STATE(4196)] = 158647, + [SMALL_STATE(4197)] = 158660, + [SMALL_STATE(4198)] = 158673, + [SMALL_STATE(4199)] = 158686, + [SMALL_STATE(4200)] = 158699, + [SMALL_STATE(4201)] = 158712, + [SMALL_STATE(4202)] = 158725, + [SMALL_STATE(4203)] = 158738, + [SMALL_STATE(4204)] = 158751, + [SMALL_STATE(4205)] = 158764, + [SMALL_STATE(4206)] = 158777, + [SMALL_STATE(4207)] = 158790, + [SMALL_STATE(4208)] = 158803, + [SMALL_STATE(4209)] = 158816, + [SMALL_STATE(4210)] = 158829, + [SMALL_STATE(4211)] = 158842, + [SMALL_STATE(4212)] = 158855, + [SMALL_STATE(4213)] = 158868, + [SMALL_STATE(4214)] = 158881, + [SMALL_STATE(4215)] = 158894, + [SMALL_STATE(4216)] = 158907, + [SMALL_STATE(4217)] = 158920, + [SMALL_STATE(4218)] = 158933, + [SMALL_STATE(4219)] = 158946, + [SMALL_STATE(4220)] = 158959, + [SMALL_STATE(4221)] = 158972, + [SMALL_STATE(4222)] = 158985, + [SMALL_STATE(4223)] = 158998, + [SMALL_STATE(4224)] = 159011, + [SMALL_STATE(4225)] = 159024, + [SMALL_STATE(4226)] = 159037, + [SMALL_STATE(4227)] = 159050, + [SMALL_STATE(4228)] = 159063, + [SMALL_STATE(4229)] = 159076, + [SMALL_STATE(4230)] = 159089, + [SMALL_STATE(4231)] = 159102, + [SMALL_STATE(4232)] = 159115, + [SMALL_STATE(4233)] = 159128, + [SMALL_STATE(4234)] = 159141, + [SMALL_STATE(4235)] = 159154, + [SMALL_STATE(4236)] = 159167, + [SMALL_STATE(4237)] = 159180, + [SMALL_STATE(4238)] = 159193, + [SMALL_STATE(4239)] = 159206, + [SMALL_STATE(4240)] = 159219, + [SMALL_STATE(4241)] = 159232, + [SMALL_STATE(4242)] = 159245, + [SMALL_STATE(4243)] = 159258, + [SMALL_STATE(4244)] = 159271, + [SMALL_STATE(4245)] = 159284, + [SMALL_STATE(4246)] = 159297, + [SMALL_STATE(4247)] = 159310, + [SMALL_STATE(4248)] = 159323, + [SMALL_STATE(4249)] = 159336, + [SMALL_STATE(4250)] = 159349, + [SMALL_STATE(4251)] = 159362, + [SMALL_STATE(4252)] = 159375, + [SMALL_STATE(4253)] = 159388, + [SMALL_STATE(4254)] = 159401, + [SMALL_STATE(4255)] = 159414, + [SMALL_STATE(4256)] = 159427, + [SMALL_STATE(4257)] = 159440, + [SMALL_STATE(4258)] = 159453, + [SMALL_STATE(4259)] = 159466, + [SMALL_STATE(4260)] = 159479, + [SMALL_STATE(4261)] = 159492, + [SMALL_STATE(4262)] = 159505, + [SMALL_STATE(4263)] = 159518, + [SMALL_STATE(4264)] = 159531, + [SMALL_STATE(4265)] = 159544, + [SMALL_STATE(4266)] = 159557, + [SMALL_STATE(4267)] = 159570, + [SMALL_STATE(4268)] = 159583, + [SMALL_STATE(4269)] = 159596, + [SMALL_STATE(4270)] = 159609, + [SMALL_STATE(4271)] = 159622, + [SMALL_STATE(4272)] = 159635, + [SMALL_STATE(4273)] = 159648, + [SMALL_STATE(4274)] = 159661, + [SMALL_STATE(4275)] = 159674, + [SMALL_STATE(4276)] = 159687, + [SMALL_STATE(4277)] = 159700, + [SMALL_STATE(4278)] = 159713, + [SMALL_STATE(4279)] = 159726, + [SMALL_STATE(4280)] = 159739, + [SMALL_STATE(4281)] = 159752, + [SMALL_STATE(4282)] = 159765, + [SMALL_STATE(4283)] = 159778, + [SMALL_STATE(4284)] = 159791, + [SMALL_STATE(4285)] = 159804, + [SMALL_STATE(4286)] = 159817, + [SMALL_STATE(4287)] = 159830, + [SMALL_STATE(4288)] = 159843, + [SMALL_STATE(4289)] = 159856, + [SMALL_STATE(4290)] = 159869, + [SMALL_STATE(4291)] = 159882, + [SMALL_STATE(4292)] = 159895, + [SMALL_STATE(4293)] = 159908, + [SMALL_STATE(4294)] = 159921, + [SMALL_STATE(4295)] = 159934, + [SMALL_STATE(4296)] = 159947, + [SMALL_STATE(4297)] = 159960, + [SMALL_STATE(4298)] = 159973, + [SMALL_STATE(4299)] = 159986, + [SMALL_STATE(4300)] = 159999, + [SMALL_STATE(4301)] = 160012, + [SMALL_STATE(4302)] = 160025, + [SMALL_STATE(4303)] = 160038, + [SMALL_STATE(4304)] = 160051, + [SMALL_STATE(4305)] = 160064, + [SMALL_STATE(4306)] = 160077, + [SMALL_STATE(4307)] = 160090, + [SMALL_STATE(4308)] = 160103, + [SMALL_STATE(4309)] = 160116, + [SMALL_STATE(4310)] = 160129, + [SMALL_STATE(4311)] = 160142, + [SMALL_STATE(4312)] = 160155, + [SMALL_STATE(4313)] = 160168, + [SMALL_STATE(4314)] = 160181, + [SMALL_STATE(4315)] = 160194, + [SMALL_STATE(4316)] = 160207, + [SMALL_STATE(4317)] = 160220, + [SMALL_STATE(4318)] = 160233, + [SMALL_STATE(4319)] = 160246, + [SMALL_STATE(4320)] = 160259, + [SMALL_STATE(4321)] = 160272, + [SMALL_STATE(4322)] = 160285, + [SMALL_STATE(4323)] = 160298, + [SMALL_STATE(4324)] = 160311, + [SMALL_STATE(4325)] = 160324, + [SMALL_STATE(4326)] = 160337, + [SMALL_STATE(4327)] = 160350, + [SMALL_STATE(4328)] = 160363, + [SMALL_STATE(4329)] = 160376, + [SMALL_STATE(4330)] = 160389, + [SMALL_STATE(4331)] = 160402, + [SMALL_STATE(4332)] = 160415, + [SMALL_STATE(4333)] = 160428, + [SMALL_STATE(4334)] = 160441, + [SMALL_STATE(4335)] = 160454, + [SMALL_STATE(4336)] = 160467, + [SMALL_STATE(4337)] = 160480, + [SMALL_STATE(4338)] = 160493, + [SMALL_STATE(4339)] = 160506, + [SMALL_STATE(4340)] = 160519, + [SMALL_STATE(4341)] = 160532, + [SMALL_STATE(4342)] = 160545, + [SMALL_STATE(4343)] = 160558, + [SMALL_STATE(4344)] = 160571, + [SMALL_STATE(4345)] = 160584, + [SMALL_STATE(4346)] = 160597, + [SMALL_STATE(4347)] = 160610, + [SMALL_STATE(4348)] = 160623, + [SMALL_STATE(4349)] = 160636, + [SMALL_STATE(4350)] = 160649, + [SMALL_STATE(4351)] = 160662, + [SMALL_STATE(4352)] = 160675, + [SMALL_STATE(4353)] = 160688, + [SMALL_STATE(4354)] = 160701, + [SMALL_STATE(4355)] = 160714, + [SMALL_STATE(4356)] = 160727, + [SMALL_STATE(4357)] = 160740, + [SMALL_STATE(4358)] = 160753, + [SMALL_STATE(4359)] = 160766, + [SMALL_STATE(4360)] = 160779, + [SMALL_STATE(4361)] = 160792, + [SMALL_STATE(4362)] = 160805, + [SMALL_STATE(4363)] = 160818, + [SMALL_STATE(4364)] = 160831, + [SMALL_STATE(4365)] = 160844, + [SMALL_STATE(4366)] = 160857, + [SMALL_STATE(4367)] = 160870, + [SMALL_STATE(4368)] = 160883, + [SMALL_STATE(4369)] = 160896, + [SMALL_STATE(4370)] = 160909, + [SMALL_STATE(4371)] = 160922, + [SMALL_STATE(4372)] = 160935, + [SMALL_STATE(4373)] = 160948, + [SMALL_STATE(4374)] = 160961, + [SMALL_STATE(4375)] = 160974, + [SMALL_STATE(4376)] = 160987, + [SMALL_STATE(4377)] = 161000, + [SMALL_STATE(4378)] = 161013, + [SMALL_STATE(4379)] = 161026, + [SMALL_STATE(4380)] = 161039, + [SMALL_STATE(4381)] = 161052, + [SMALL_STATE(4382)] = 161065, + [SMALL_STATE(4383)] = 161078, + [SMALL_STATE(4384)] = 161091, + [SMALL_STATE(4385)] = 161104, + [SMALL_STATE(4386)] = 161117, + [SMALL_STATE(4387)] = 161130, + [SMALL_STATE(4388)] = 161143, + [SMALL_STATE(4389)] = 161156, + [SMALL_STATE(4390)] = 161169, + [SMALL_STATE(4391)] = 161182, + [SMALL_STATE(4392)] = 161195, + [SMALL_STATE(4393)] = 161208, + [SMALL_STATE(4394)] = 161221, + [SMALL_STATE(4395)] = 161234, + [SMALL_STATE(4396)] = 161247, + [SMALL_STATE(4397)] = 161260, + [SMALL_STATE(4398)] = 161273, + [SMALL_STATE(4399)] = 161286, + [SMALL_STATE(4400)] = 161299, + [SMALL_STATE(4401)] = 161312, + [SMALL_STATE(4402)] = 161325, + [SMALL_STATE(4403)] = 161338, + [SMALL_STATE(4404)] = 161351, + [SMALL_STATE(4405)] = 161364, + [SMALL_STATE(4406)] = 161377, + [SMALL_STATE(4407)] = 161390, + [SMALL_STATE(4408)] = 161403, + [SMALL_STATE(4409)] = 161416, + [SMALL_STATE(4410)] = 161429, + [SMALL_STATE(4411)] = 161442, + [SMALL_STATE(4412)] = 161455, + [SMALL_STATE(4413)] = 161468, + [SMALL_STATE(4414)] = 161481, + [SMALL_STATE(4415)] = 161494, + [SMALL_STATE(4416)] = 161507, + [SMALL_STATE(4417)] = 161520, + [SMALL_STATE(4418)] = 161533, + [SMALL_STATE(4419)] = 161546, + [SMALL_STATE(4420)] = 161559, + [SMALL_STATE(4421)] = 161572, + [SMALL_STATE(4422)] = 161585, + [SMALL_STATE(4423)] = 161598, + [SMALL_STATE(4424)] = 161611, + [SMALL_STATE(4425)] = 161620, + [SMALL_STATE(4426)] = 161633, + [SMALL_STATE(4427)] = 161646, + [SMALL_STATE(4428)] = 161659, + [SMALL_STATE(4429)] = 161672, + [SMALL_STATE(4430)] = 161685, + [SMALL_STATE(4431)] = 161698, + [SMALL_STATE(4432)] = 161711, + [SMALL_STATE(4433)] = 161724, + [SMALL_STATE(4434)] = 161737, + [SMALL_STATE(4435)] = 161750, + [SMALL_STATE(4436)] = 161763, + [SMALL_STATE(4437)] = 161776, + [SMALL_STATE(4438)] = 161789, + [SMALL_STATE(4439)] = 161802, + [SMALL_STATE(4440)] = 161815, + [SMALL_STATE(4441)] = 161828, + [SMALL_STATE(4442)] = 161841, + [SMALL_STATE(4443)] = 161854, + [SMALL_STATE(4444)] = 161867, + [SMALL_STATE(4445)] = 161880, + [SMALL_STATE(4446)] = 161893, + [SMALL_STATE(4447)] = 161906, + [SMALL_STATE(4448)] = 161919, + [SMALL_STATE(4449)] = 161932, + [SMALL_STATE(4450)] = 161945, + [SMALL_STATE(4451)] = 161958, + [SMALL_STATE(4452)] = 161971, + [SMALL_STATE(4453)] = 161984, + [SMALL_STATE(4454)] = 161993, + [SMALL_STATE(4455)] = 162006, + [SMALL_STATE(4456)] = 162019, + [SMALL_STATE(4457)] = 162032, + [SMALL_STATE(4458)] = 162045, + [SMALL_STATE(4459)] = 162058, + [SMALL_STATE(4460)] = 162071, + [SMALL_STATE(4461)] = 162084, + [SMALL_STATE(4462)] = 162097, + [SMALL_STATE(4463)] = 162110, + [SMALL_STATE(4464)] = 162123, + [SMALL_STATE(4465)] = 162136, + [SMALL_STATE(4466)] = 162149, + [SMALL_STATE(4467)] = 162162, + [SMALL_STATE(4468)] = 162175, + [SMALL_STATE(4469)] = 162188, + [SMALL_STATE(4470)] = 162201, + [SMALL_STATE(4471)] = 162214, + [SMALL_STATE(4472)] = 162227, + [SMALL_STATE(4473)] = 162236, + [SMALL_STATE(4474)] = 162249, + [SMALL_STATE(4475)] = 162262, + [SMALL_STATE(4476)] = 162275, + [SMALL_STATE(4477)] = 162288, + [SMALL_STATE(4478)] = 162301, + [SMALL_STATE(4479)] = 162314, + [SMALL_STATE(4480)] = 162327, + [SMALL_STATE(4481)] = 162340, + [SMALL_STATE(4482)] = 162353, + [SMALL_STATE(4483)] = 162366, + [SMALL_STATE(4484)] = 162379, + [SMALL_STATE(4485)] = 162388, + [SMALL_STATE(4486)] = 162401, + [SMALL_STATE(4487)] = 162414, + [SMALL_STATE(4488)] = 162427, + [SMALL_STATE(4489)] = 162440, + [SMALL_STATE(4490)] = 162453, + [SMALL_STATE(4491)] = 162466, + [SMALL_STATE(4492)] = 162479, + [SMALL_STATE(4493)] = 162492, + [SMALL_STATE(4494)] = 162505, + [SMALL_STATE(4495)] = 162518, + [SMALL_STATE(4496)] = 162527, + [SMALL_STATE(4497)] = 162540, + [SMALL_STATE(4498)] = 162553, + [SMALL_STATE(4499)] = 162566, + [SMALL_STATE(4500)] = 162575, + [SMALL_STATE(4501)] = 162588, + [SMALL_STATE(4502)] = 162597, + [SMALL_STATE(4503)] = 162610, + [SMALL_STATE(4504)] = 162623, + [SMALL_STATE(4505)] = 162636, + [SMALL_STATE(4506)] = 162649, + [SMALL_STATE(4507)] = 162662, + [SMALL_STATE(4508)] = 162675, + [SMALL_STATE(4509)] = 162688, + [SMALL_STATE(4510)] = 162701, + [SMALL_STATE(4511)] = 162714, + [SMALL_STATE(4512)] = 162727, + [SMALL_STATE(4513)] = 162740, + [SMALL_STATE(4514)] = 162753, + [SMALL_STATE(4515)] = 162766, + [SMALL_STATE(4516)] = 162779, + [SMALL_STATE(4517)] = 162792, + [SMALL_STATE(4518)] = 162805, + [SMALL_STATE(4519)] = 162818, + [SMALL_STATE(4520)] = 162831, + [SMALL_STATE(4521)] = 162844, + [SMALL_STATE(4522)] = 162857, + [SMALL_STATE(4523)] = 162870, + [SMALL_STATE(4524)] = 162883, + [SMALL_STATE(4525)] = 162896, + [SMALL_STATE(4526)] = 162905, + [SMALL_STATE(4527)] = 162918, + [SMALL_STATE(4528)] = 162931, + [SMALL_STATE(4529)] = 162944, + [SMALL_STATE(4530)] = 162957, + [SMALL_STATE(4531)] = 162970, + [SMALL_STATE(4532)] = 162983, + [SMALL_STATE(4533)] = 162996, + [SMALL_STATE(4534)] = 163009, + [SMALL_STATE(4535)] = 163022, + [SMALL_STATE(4536)] = 163035, + [SMALL_STATE(4537)] = 163048, + [SMALL_STATE(4538)] = 163061, + [SMALL_STATE(4539)] = 163074, + [SMALL_STATE(4540)] = 163087, + [SMALL_STATE(4541)] = 163100, + [SMALL_STATE(4542)] = 163113, + [SMALL_STATE(4543)] = 163126, + [SMALL_STATE(4544)] = 163135, + [SMALL_STATE(4545)] = 163144, + [SMALL_STATE(4546)] = 163157, + [SMALL_STATE(4547)] = 163166, + [SMALL_STATE(4548)] = 163179, + [SMALL_STATE(4549)] = 163188, + [SMALL_STATE(4550)] = 163201, + [SMALL_STATE(4551)] = 163214, + [SMALL_STATE(4552)] = 163227, + [SMALL_STATE(4553)] = 163240, + [SMALL_STATE(4554)] = 163253, + [SMALL_STATE(4555)] = 163266, + [SMALL_STATE(4556)] = 163279, + [SMALL_STATE(4557)] = 163292, + [SMALL_STATE(4558)] = 163305, + [SMALL_STATE(4559)] = 163318, + [SMALL_STATE(4560)] = 163331, + [SMALL_STATE(4561)] = 163344, + [SMALL_STATE(4562)] = 163357, + [SMALL_STATE(4563)] = 163370, + [SMALL_STATE(4564)] = 163383, + [SMALL_STATE(4565)] = 163396, + [SMALL_STATE(4566)] = 163409, + [SMALL_STATE(4567)] = 163422, + [SMALL_STATE(4568)] = 163435, + [SMALL_STATE(4569)] = 163448, + [SMALL_STATE(4570)] = 163461, + [SMALL_STATE(4571)] = 163470, + [SMALL_STATE(4572)] = 163483, + [SMALL_STATE(4573)] = 163496, + [SMALL_STATE(4574)] = 163509, + [SMALL_STATE(4575)] = 163522, + [SMALL_STATE(4576)] = 163535, + [SMALL_STATE(4577)] = 163548, + [SMALL_STATE(4578)] = 163561, + [SMALL_STATE(4579)] = 163574, + [SMALL_STATE(4580)] = 163587, + [SMALL_STATE(4581)] = 163600, + [SMALL_STATE(4582)] = 163613, + [SMALL_STATE(4583)] = 163626, + [SMALL_STATE(4584)] = 163639, + [SMALL_STATE(4585)] = 163652, + [SMALL_STATE(4586)] = 163661, + [SMALL_STATE(4587)] = 163674, + [SMALL_STATE(4588)] = 163687, + [SMALL_STATE(4589)] = 163700, + [SMALL_STATE(4590)] = 163713, + [SMALL_STATE(4591)] = 163726, + [SMALL_STATE(4592)] = 163739, + [SMALL_STATE(4593)] = 163752, + [SMALL_STATE(4594)] = 163765, + [SMALL_STATE(4595)] = 163778, + [SMALL_STATE(4596)] = 163791, + [SMALL_STATE(4597)] = 163804, + [SMALL_STATE(4598)] = 163817, + [SMALL_STATE(4599)] = 163830, + [SMALL_STATE(4600)] = 163843, + [SMALL_STATE(4601)] = 163856, + [SMALL_STATE(4602)] = 163869, + [SMALL_STATE(4603)] = 163882, + [SMALL_STATE(4604)] = 163895, + [SMALL_STATE(4605)] = 163908, + [SMALL_STATE(4606)] = 163921, + [SMALL_STATE(4607)] = 163934, + [SMALL_STATE(4608)] = 163947, + [SMALL_STATE(4609)] = 163960, + [SMALL_STATE(4610)] = 163973, + [SMALL_STATE(4611)] = 163986, + [SMALL_STATE(4612)] = 163999, + [SMALL_STATE(4613)] = 164012, + [SMALL_STATE(4614)] = 164025, + [SMALL_STATE(4615)] = 164038, + [SMALL_STATE(4616)] = 164051, + [SMALL_STATE(4617)] = 164060, + [SMALL_STATE(4618)] = 164073, + [SMALL_STATE(4619)] = 164086, + [SMALL_STATE(4620)] = 164099, + [SMALL_STATE(4621)] = 164108, + [SMALL_STATE(4622)] = 164121, + [SMALL_STATE(4623)] = 164134, + [SMALL_STATE(4624)] = 164147, + [SMALL_STATE(4625)] = 164156, + [SMALL_STATE(4626)] = 164169, + [SMALL_STATE(4627)] = 164178, + [SMALL_STATE(4628)] = 164191, + [SMALL_STATE(4629)] = 164204, + [SMALL_STATE(4630)] = 164217, + [SMALL_STATE(4631)] = 164230, + [SMALL_STATE(4632)] = 164243, + [SMALL_STATE(4633)] = 164256, + [SMALL_STATE(4634)] = 164269, + [SMALL_STATE(4635)] = 164282, + [SMALL_STATE(4636)] = 164295, + [SMALL_STATE(4637)] = 164308, + [SMALL_STATE(4638)] = 164321, + [SMALL_STATE(4639)] = 164334, + [SMALL_STATE(4640)] = 164347, + [SMALL_STATE(4641)] = 164356, + [SMALL_STATE(4642)] = 164369, + [SMALL_STATE(4643)] = 164382, + [SMALL_STATE(4644)] = 164395, + [SMALL_STATE(4645)] = 164408, + [SMALL_STATE(4646)] = 164421, + [SMALL_STATE(4647)] = 164434, + [SMALL_STATE(4648)] = 164447, + [SMALL_STATE(4649)] = 164460, + [SMALL_STATE(4650)] = 164473, + [SMALL_STATE(4651)] = 164486, + [SMALL_STATE(4652)] = 164494, + [SMALL_STATE(4653)] = 164502, + [SMALL_STATE(4654)] = 164510, + [SMALL_STATE(4655)] = 164518, + [SMALL_STATE(4656)] = 164528, + [SMALL_STATE(4657)] = 164538, + [SMALL_STATE(4658)] = 164548, + [SMALL_STATE(4659)] = 164556, + [SMALL_STATE(4660)] = 164566, + [SMALL_STATE(4661)] = 164576, + [SMALL_STATE(4662)] = 164584, + [SMALL_STATE(4663)] = 164592, + [SMALL_STATE(4664)] = 164602, + [SMALL_STATE(4665)] = 164612, + [SMALL_STATE(4666)] = 164622, + [SMALL_STATE(4667)] = 164632, + [SMALL_STATE(4668)] = 164642, + [SMALL_STATE(4669)] = 164652, + [SMALL_STATE(4670)] = 164662, + [SMALL_STATE(4671)] = 164670, + [SMALL_STATE(4672)] = 164680, + [SMALL_STATE(4673)] = 164688, + [SMALL_STATE(4674)] = 164696, + [SMALL_STATE(4675)] = 164704, + [SMALL_STATE(4676)] = 164712, + [SMALL_STATE(4677)] = 164722, + [SMALL_STATE(4678)] = 164732, + [SMALL_STATE(4679)] = 164742, + [SMALL_STATE(4680)] = 164750, + [SMALL_STATE(4681)] = 164758, + [SMALL_STATE(4682)] = 164768, + [SMALL_STATE(4683)] = 164776, + [SMALL_STATE(4684)] = 164784, + [SMALL_STATE(4685)] = 164792, + [SMALL_STATE(4686)] = 164802, + [SMALL_STATE(4687)] = 164812, + [SMALL_STATE(4688)] = 164822, + [SMALL_STATE(4689)] = 164832, + [SMALL_STATE(4690)] = 164842, + [SMALL_STATE(4691)] = 164850, + [SMALL_STATE(4692)] = 164860, + [SMALL_STATE(4693)] = 164868, + [SMALL_STATE(4694)] = 164878, + [SMALL_STATE(4695)] = 164888, + [SMALL_STATE(4696)] = 164898, + [SMALL_STATE(4697)] = 164908, + [SMALL_STATE(4698)] = 164918, + [SMALL_STATE(4699)] = 164928, + [SMALL_STATE(4700)] = 164938, + [SMALL_STATE(4701)] = 164948, + [SMALL_STATE(4702)] = 164958, + [SMALL_STATE(4703)] = 164968, + [SMALL_STATE(4704)] = 164978, + [SMALL_STATE(4705)] = 164986, + [SMALL_STATE(4706)] = 164996, + [SMALL_STATE(4707)] = 165004, + [SMALL_STATE(4708)] = 165014, + [SMALL_STATE(4709)] = 165024, + [SMALL_STATE(4710)] = 165034, + [SMALL_STATE(4711)] = 165044, + [SMALL_STATE(4712)] = 165052, + [SMALL_STATE(4713)] = 165062, + [SMALL_STATE(4714)] = 165072, + [SMALL_STATE(4715)] = 165082, + [SMALL_STATE(4716)] = 165092, + [SMALL_STATE(4717)] = 165102, + [SMALL_STATE(4718)] = 165112, + [SMALL_STATE(4719)] = 165122, + [SMALL_STATE(4720)] = 165132, + [SMALL_STATE(4721)] = 165142, + [SMALL_STATE(4722)] = 165152, + [SMALL_STATE(4723)] = 165162, + [SMALL_STATE(4724)] = 165172, + [SMALL_STATE(4725)] = 165182, + [SMALL_STATE(4726)] = 165190, + [SMALL_STATE(4727)] = 165200, + [SMALL_STATE(4728)] = 165210, + [SMALL_STATE(4729)] = 165220, + [SMALL_STATE(4730)] = 165228, + [SMALL_STATE(4731)] = 165238, + [SMALL_STATE(4732)] = 165246, + [SMALL_STATE(4733)] = 165254, + [SMALL_STATE(4734)] = 165262, + [SMALL_STATE(4735)] = 165272, + [SMALL_STATE(4736)] = 165280, + [SMALL_STATE(4737)] = 165290, + [SMALL_STATE(4738)] = 165300, + [SMALL_STATE(4739)] = 165310, + [SMALL_STATE(4740)] = 165320, + [SMALL_STATE(4741)] = 165328, + [SMALL_STATE(4742)] = 165336, + [SMALL_STATE(4743)] = 165344, + [SMALL_STATE(4744)] = 165354, + [SMALL_STATE(4745)] = 165364, + [SMALL_STATE(4746)] = 165374, + [SMALL_STATE(4747)] = 165381, + [SMALL_STATE(4748)] = 165388, + [SMALL_STATE(4749)] = 165395, + [SMALL_STATE(4750)] = 165402, + [SMALL_STATE(4751)] = 165409, + [SMALL_STATE(4752)] = 165416, + [SMALL_STATE(4753)] = 165423, + [SMALL_STATE(4754)] = 165430, + [SMALL_STATE(4755)] = 165437, + [SMALL_STATE(4756)] = 165444, + [SMALL_STATE(4757)] = 165451, + [SMALL_STATE(4758)] = 165458, + [SMALL_STATE(4759)] = 165465, + [SMALL_STATE(4760)] = 165472, + [SMALL_STATE(4761)] = 165479, + [SMALL_STATE(4762)] = 165486, + [SMALL_STATE(4763)] = 165493, + [SMALL_STATE(4764)] = 165500, + [SMALL_STATE(4765)] = 165507, + [SMALL_STATE(4766)] = 165514, + [SMALL_STATE(4767)] = 165521, + [SMALL_STATE(4768)] = 165528, + [SMALL_STATE(4769)] = 165535, + [SMALL_STATE(4770)] = 165542, + [SMALL_STATE(4771)] = 165549, + [SMALL_STATE(4772)] = 165556, + [SMALL_STATE(4773)] = 165563, + [SMALL_STATE(4774)] = 165570, + [SMALL_STATE(4775)] = 165577, + [SMALL_STATE(4776)] = 165584, + [SMALL_STATE(4777)] = 165591, + [SMALL_STATE(4778)] = 165598, + [SMALL_STATE(4779)] = 165605, + [SMALL_STATE(4780)] = 165612, + [SMALL_STATE(4781)] = 165619, + [SMALL_STATE(4782)] = 165626, + [SMALL_STATE(4783)] = 165633, + [SMALL_STATE(4784)] = 165640, + [SMALL_STATE(4785)] = 165647, + [SMALL_STATE(4786)] = 165654, + [SMALL_STATE(4787)] = 165661, + [SMALL_STATE(4788)] = 165668, + [SMALL_STATE(4789)] = 165675, + [SMALL_STATE(4790)] = 165682, + [SMALL_STATE(4791)] = 165689, + [SMALL_STATE(4792)] = 165696, + [SMALL_STATE(4793)] = 165703, + [SMALL_STATE(4794)] = 165710, + [SMALL_STATE(4795)] = 165717, + [SMALL_STATE(4796)] = 165724, + [SMALL_STATE(4797)] = 165731, + [SMALL_STATE(4798)] = 165738, + [SMALL_STATE(4799)] = 165745, + [SMALL_STATE(4800)] = 165752, + [SMALL_STATE(4801)] = 165759, + [SMALL_STATE(4802)] = 165766, + [SMALL_STATE(4803)] = 165773, + [SMALL_STATE(4804)] = 165780, + [SMALL_STATE(4805)] = 165787, + [SMALL_STATE(4806)] = 165794, + [SMALL_STATE(4807)] = 165801, + [SMALL_STATE(4808)] = 165808, + [SMALL_STATE(4809)] = 165815, + [SMALL_STATE(4810)] = 165822, + [SMALL_STATE(4811)] = 165829, + [SMALL_STATE(4812)] = 165836, + [SMALL_STATE(4813)] = 165843, + [SMALL_STATE(4814)] = 165850, + [SMALL_STATE(4815)] = 165857, + [SMALL_STATE(4816)] = 165864, + [SMALL_STATE(4817)] = 165871, + [SMALL_STATE(4818)] = 165878, + [SMALL_STATE(4819)] = 165885, + [SMALL_STATE(4820)] = 165892, + [SMALL_STATE(4821)] = 165899, + [SMALL_STATE(4822)] = 165906, + [SMALL_STATE(4823)] = 165913, + [SMALL_STATE(4824)] = 165920, + [SMALL_STATE(4825)] = 165927, + [SMALL_STATE(4826)] = 165934, + [SMALL_STATE(4827)] = 165941, + [SMALL_STATE(4828)] = 165948, + [SMALL_STATE(4829)] = 165955, + [SMALL_STATE(4830)] = 165962, + [SMALL_STATE(4831)] = 165969, + [SMALL_STATE(4832)] = 165976, + [SMALL_STATE(4833)] = 165983, + [SMALL_STATE(4834)] = 165990, + [SMALL_STATE(4835)] = 165997, + [SMALL_STATE(4836)] = 166004, + [SMALL_STATE(4837)] = 166011, + [SMALL_STATE(4838)] = 166018, + [SMALL_STATE(4839)] = 166025, + [SMALL_STATE(4840)] = 166032, + [SMALL_STATE(4841)] = 166039, + [SMALL_STATE(4842)] = 166046, + [SMALL_STATE(4843)] = 166053, + [SMALL_STATE(4844)] = 166060, + [SMALL_STATE(4845)] = 166067, + [SMALL_STATE(4846)] = 166074, + [SMALL_STATE(4847)] = 166081, + [SMALL_STATE(4848)] = 166088, + [SMALL_STATE(4849)] = 166095, + [SMALL_STATE(4850)] = 166102, + [SMALL_STATE(4851)] = 166109, + [SMALL_STATE(4852)] = 166116, + [SMALL_STATE(4853)] = 166123, + [SMALL_STATE(4854)] = 166130, + [SMALL_STATE(4855)] = 166137, + [SMALL_STATE(4856)] = 166144, + [SMALL_STATE(4857)] = 166151, + [SMALL_STATE(4858)] = 166158, + [SMALL_STATE(4859)] = 166165, + [SMALL_STATE(4860)] = 166172, + [SMALL_STATE(4861)] = 166179, + [SMALL_STATE(4862)] = 166186, + [SMALL_STATE(4863)] = 166193, + [SMALL_STATE(4864)] = 166200, + [SMALL_STATE(4865)] = 166207, + [SMALL_STATE(4866)] = 166214, + [SMALL_STATE(4867)] = 166221, + [SMALL_STATE(4868)] = 166228, + [SMALL_STATE(4869)] = 166235, + [SMALL_STATE(4870)] = 166242, + [SMALL_STATE(4871)] = 166249, + [SMALL_STATE(4872)] = 166256, + [SMALL_STATE(4873)] = 166263, + [SMALL_STATE(4874)] = 166270, + [SMALL_STATE(4875)] = 166277, + [SMALL_STATE(4876)] = 166284, + [SMALL_STATE(4877)] = 166291, + [SMALL_STATE(4878)] = 166298, + [SMALL_STATE(4879)] = 166305, + [SMALL_STATE(4880)] = 166312, + [SMALL_STATE(4881)] = 166319, + [SMALL_STATE(4882)] = 166326, + [SMALL_STATE(4883)] = 166333, + [SMALL_STATE(4884)] = 166340, + [SMALL_STATE(4885)] = 166347, + [SMALL_STATE(4886)] = 166354, + [SMALL_STATE(4887)] = 166361, + [SMALL_STATE(4888)] = 166368, + [SMALL_STATE(4889)] = 166375, + [SMALL_STATE(4890)] = 166382, + [SMALL_STATE(4891)] = 166389, + [SMALL_STATE(4892)] = 166396, + [SMALL_STATE(4893)] = 166403, + [SMALL_STATE(4894)] = 166410, + [SMALL_STATE(4895)] = 166417, + [SMALL_STATE(4896)] = 166424, + [SMALL_STATE(4897)] = 166431, + [SMALL_STATE(4898)] = 166438, + [SMALL_STATE(4899)] = 166445, + [SMALL_STATE(4900)] = 166452, + [SMALL_STATE(4901)] = 166459, + [SMALL_STATE(4902)] = 166466, + [SMALL_STATE(4903)] = 166473, + [SMALL_STATE(4904)] = 166480, + [SMALL_STATE(4905)] = 166487, + [SMALL_STATE(4906)] = 166494, + [SMALL_STATE(4907)] = 166501, + [SMALL_STATE(4908)] = 166508, + [SMALL_STATE(4909)] = 166515, + [SMALL_STATE(4910)] = 166522, + [SMALL_STATE(4911)] = 166529, + [SMALL_STATE(4912)] = 166536, + [SMALL_STATE(4913)] = 166543, + [SMALL_STATE(4914)] = 166550, + [SMALL_STATE(4915)] = 166557, + [SMALL_STATE(4916)] = 166564, + [SMALL_STATE(4917)] = 166571, + [SMALL_STATE(4918)] = 166578, + [SMALL_STATE(4919)] = 166585, + [SMALL_STATE(4920)] = 166592, + [SMALL_STATE(4921)] = 166599, + [SMALL_STATE(4922)] = 166606, + [SMALL_STATE(4923)] = 166613, + [SMALL_STATE(4924)] = 166620, + [SMALL_STATE(4925)] = 166627, + [SMALL_STATE(4926)] = 166634, + [SMALL_STATE(4927)] = 166641, + [SMALL_STATE(4928)] = 166648, + [SMALL_STATE(4929)] = 166655, + [SMALL_STATE(4930)] = 166662, + [SMALL_STATE(4931)] = 166669, + [SMALL_STATE(4932)] = 166676, + [SMALL_STATE(4933)] = 166683, + [SMALL_STATE(4934)] = 166690, + [SMALL_STATE(4935)] = 166697, + [SMALL_STATE(4936)] = 166704, + [SMALL_STATE(4937)] = 166711, + [SMALL_STATE(4938)] = 166718, + [SMALL_STATE(4939)] = 166725, + [SMALL_STATE(4940)] = 166732, + [SMALL_STATE(4941)] = 166739, + [SMALL_STATE(4942)] = 166746, + [SMALL_STATE(4943)] = 166753, + [SMALL_STATE(4944)] = 166760, + [SMALL_STATE(4945)] = 166767, + [SMALL_STATE(4946)] = 166774, + [SMALL_STATE(4947)] = 166781, + [SMALL_STATE(4948)] = 166788, + [SMALL_STATE(4949)] = 166795, + [SMALL_STATE(4950)] = 166802, + [SMALL_STATE(4951)] = 166809, + [SMALL_STATE(4952)] = 166816, + [SMALL_STATE(4953)] = 166823, + [SMALL_STATE(4954)] = 166830, + [SMALL_STATE(4955)] = 166837, + [SMALL_STATE(4956)] = 166844, + [SMALL_STATE(4957)] = 166851, + [SMALL_STATE(4958)] = 166858, + [SMALL_STATE(4959)] = 166865, + [SMALL_STATE(4960)] = 166872, + [SMALL_STATE(4961)] = 166879, + [SMALL_STATE(4962)] = 166886, + [SMALL_STATE(4963)] = 166893, + [SMALL_STATE(4964)] = 166900, + [SMALL_STATE(4965)] = 166907, + [SMALL_STATE(4966)] = 166914, + [SMALL_STATE(4967)] = 166921, + [SMALL_STATE(4968)] = 166928, + [SMALL_STATE(4969)] = 166935, + [SMALL_STATE(4970)] = 166942, + [SMALL_STATE(4971)] = 166949, + [SMALL_STATE(4972)] = 166956, + [SMALL_STATE(4973)] = 166963, + [SMALL_STATE(4974)] = 166970, + [SMALL_STATE(4975)] = 166977, + [SMALL_STATE(4976)] = 166984, + [SMALL_STATE(4977)] = 166991, + [SMALL_STATE(4978)] = 166998, + [SMALL_STATE(4979)] = 167005, + [SMALL_STATE(4980)] = 167012, + [SMALL_STATE(4981)] = 167019, + [SMALL_STATE(4982)] = 167026, + [SMALL_STATE(4983)] = 167033, + [SMALL_STATE(4984)] = 167040, + [SMALL_STATE(4985)] = 167047, + [SMALL_STATE(4986)] = 167054, + [SMALL_STATE(4987)] = 167061, + [SMALL_STATE(4988)] = 167068, + [SMALL_STATE(4989)] = 167075, + [SMALL_STATE(4990)] = 167082, + [SMALL_STATE(4991)] = 167089, + [SMALL_STATE(4992)] = 167096, + [SMALL_STATE(4993)] = 167103, + [SMALL_STATE(4994)] = 167110, + [SMALL_STATE(4995)] = 167117, + [SMALL_STATE(4996)] = 167124, + [SMALL_STATE(4997)] = 167131, + [SMALL_STATE(4998)] = 167138, + [SMALL_STATE(4999)] = 167145, + [SMALL_STATE(5000)] = 167152, + [SMALL_STATE(5001)] = 167159, + [SMALL_STATE(5002)] = 167166, + [SMALL_STATE(5003)] = 167173, + [SMALL_STATE(5004)] = 167180, + [SMALL_STATE(5005)] = 167187, + [SMALL_STATE(5006)] = 167194, + [SMALL_STATE(5007)] = 167201, + [SMALL_STATE(5008)] = 167208, + [SMALL_STATE(5009)] = 167215, + [SMALL_STATE(5010)] = 167222, + [SMALL_STATE(5011)] = 167229, + [SMALL_STATE(5012)] = 167236, + [SMALL_STATE(5013)] = 167243, + [SMALL_STATE(5014)] = 167250, + [SMALL_STATE(5015)] = 167257, + [SMALL_STATE(5016)] = 167264, + [SMALL_STATE(5017)] = 167271, + [SMALL_STATE(5018)] = 167278, + [SMALL_STATE(5019)] = 167285, + [SMALL_STATE(5020)] = 167292, + [SMALL_STATE(5021)] = 167299, + [SMALL_STATE(5022)] = 167306, + [SMALL_STATE(5023)] = 167313, + [SMALL_STATE(5024)] = 167320, + [SMALL_STATE(5025)] = 167327, + [SMALL_STATE(5026)] = 167334, + [SMALL_STATE(5027)] = 167341, + [SMALL_STATE(5028)] = 167348, + [SMALL_STATE(5029)] = 167355, + [SMALL_STATE(5030)] = 167362, + [SMALL_STATE(5031)] = 167369, + [SMALL_STATE(5032)] = 167376, + [SMALL_STATE(5033)] = 167383, + [SMALL_STATE(5034)] = 167390, + [SMALL_STATE(5035)] = 167397, + [SMALL_STATE(5036)] = 167404, + [SMALL_STATE(5037)] = 167411, + [SMALL_STATE(5038)] = 167418, + [SMALL_STATE(5039)] = 167425, + [SMALL_STATE(5040)] = 167432, + [SMALL_STATE(5041)] = 167439, + [SMALL_STATE(5042)] = 167446, + [SMALL_STATE(5043)] = 167453, + [SMALL_STATE(5044)] = 167460, + [SMALL_STATE(5045)] = 167467, + [SMALL_STATE(5046)] = 167474, + [SMALL_STATE(5047)] = 167481, + [SMALL_STATE(5048)] = 167488, + [SMALL_STATE(5049)] = 167495, + [SMALL_STATE(5050)] = 167502, + [SMALL_STATE(5051)] = 167509, + [SMALL_STATE(5052)] = 167516, + [SMALL_STATE(5053)] = 167523, + [SMALL_STATE(5054)] = 167530, + [SMALL_STATE(5055)] = 167537, + [SMALL_STATE(5056)] = 167544, + [SMALL_STATE(5057)] = 167551, + [SMALL_STATE(5058)] = 167558, + [SMALL_STATE(5059)] = 167565, + [SMALL_STATE(5060)] = 167572, + [SMALL_STATE(5061)] = 167579, + [SMALL_STATE(5062)] = 167586, + [SMALL_STATE(5063)] = 167593, + [SMALL_STATE(5064)] = 167600, + [SMALL_STATE(5065)] = 167607, + [SMALL_STATE(5066)] = 167614, + [SMALL_STATE(5067)] = 167621, + [SMALL_STATE(5068)] = 167628, + [SMALL_STATE(5069)] = 167635, + [SMALL_STATE(5070)] = 167642, + [SMALL_STATE(5071)] = 167649, + [SMALL_STATE(5072)] = 167656, + [SMALL_STATE(5073)] = 167663, + [SMALL_STATE(5074)] = 167670, + [SMALL_STATE(5075)] = 167677, + [SMALL_STATE(5076)] = 167684, + [SMALL_STATE(5077)] = 167691, + [SMALL_STATE(5078)] = 167698, + [SMALL_STATE(5079)] = 167705, + [SMALL_STATE(5080)] = 167712, + [SMALL_STATE(5081)] = 167719, + [SMALL_STATE(5082)] = 167726, + [SMALL_STATE(5083)] = 167733, + [SMALL_STATE(5084)] = 167740, + [SMALL_STATE(5085)] = 167747, + [SMALL_STATE(5086)] = 167754, + [SMALL_STATE(5087)] = 167761, + [SMALL_STATE(5088)] = 167768, + [SMALL_STATE(5089)] = 167775, + [SMALL_STATE(5090)] = 167782, + [SMALL_STATE(5091)] = 167789, + [SMALL_STATE(5092)] = 167796, + [SMALL_STATE(5093)] = 167803, + [SMALL_STATE(5094)] = 167810, + [SMALL_STATE(5095)] = 167817, + [SMALL_STATE(5096)] = 167824, + [SMALL_STATE(5097)] = 167831, + [SMALL_STATE(5098)] = 167838, + [SMALL_STATE(5099)] = 167845, + [SMALL_STATE(5100)] = 167852, + [SMALL_STATE(5101)] = 167859, + [SMALL_STATE(5102)] = 167866, + [SMALL_STATE(5103)] = 167873, + [SMALL_STATE(5104)] = 167880, + [SMALL_STATE(5105)] = 167887, + [SMALL_STATE(5106)] = 167894, + [SMALL_STATE(5107)] = 167901, + [SMALL_STATE(5108)] = 167908, + [SMALL_STATE(5109)] = 167915, + [SMALL_STATE(5110)] = 167922, + [SMALL_STATE(5111)] = 167929, + [SMALL_STATE(5112)] = 167936, + [SMALL_STATE(5113)] = 167943, + [SMALL_STATE(5114)] = 167950, + [SMALL_STATE(5115)] = 167957, + [SMALL_STATE(5116)] = 167964, + [SMALL_STATE(5117)] = 167971, + [SMALL_STATE(5118)] = 167978, + [SMALL_STATE(5119)] = 167985, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -140956,3290 +149587,3727 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 6), + [7] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 6), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [11] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [13] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5, 0, 0), - [15] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [19] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 6), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [41] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2367), - [68] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4279), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4818), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2996), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(315), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(308), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2907), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4804), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(34), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(307), - [100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2672), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4259), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4770), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2988), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(397), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(261), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2926), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4827), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(28), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(333), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2567), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4217), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(85), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4720), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2993), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(560), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(571), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2920), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4743), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(83), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(568), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2401), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4299), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(40), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4784), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2984), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(497), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(494), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2924), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4774), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(39), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(493), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2608), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4232), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(56), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4737), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2986), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(573), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(492), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2929), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4756), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(53), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(491), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2383), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4285), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(103), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4805), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3000), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(751), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(768), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2921), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4788), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(101), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(772), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2405), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4301), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(118), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4780), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2985), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(804), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(809), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2901), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4773), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(115), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(811), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2387), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4287), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(142), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4801), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2981), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(991), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2904), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4783), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(141), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(985), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2407), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4303), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(166), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4777), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2987), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1597), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2900), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4772), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(170), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1594), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2375), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4283), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(251), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4809), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2994), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1920), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4795), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(256), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1923), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2371), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4281), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(243), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4814), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2995), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1853), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1898), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4797), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(248), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2389), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4289), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(260), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4796), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2982), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1917), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1872), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2919), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4779), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(198), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1772), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2391), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4291), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(217), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4790), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2979), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1885), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1838), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2914), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4775), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(216), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1837), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2437), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4277), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(235), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4832), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3009), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1809), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1854), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2923), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4808), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(240), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1857), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1, 0, 0), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 13, 0, 0), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 2, 0, 0), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3, 0, 0), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 12, 0, 0), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 11, 0, 0), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 10, 0, 0), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 9, 0, 0), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1063), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2223), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4494), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2113), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2285), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4692), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3404), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1768), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1717), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3334), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(332), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1799), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 8, 0, 0), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 14, 0, 0), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 7, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 8), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 4, 0, 0), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_reverse_atom, 2, 0, 0), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 5, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 6, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1, 0, 7), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuple, 4, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_unit, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 4, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4, 0, 0), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 3, 0, 0), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 2, 0, 15), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1033), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2184), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4508), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2137), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2090), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4665), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3310), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1690), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1667), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3388), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(414), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1906), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2586), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4226), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(370), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4731), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3015), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2020), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1980), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2909), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4748), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(371), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1982), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 15, 0, 0), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2612), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4235), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(378), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3022), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1977), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2051), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2906), - [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4763), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(379), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2052), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2561), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4241), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(382), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4751), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3017), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2015), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2037), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2899), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4829), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(383), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2027), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2653), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4249), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(387), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4755), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3007), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2044), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1970), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2930), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4842), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(388), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1962), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1018), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2118), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4450), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2208), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2069), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4738), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3330), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(347), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1038), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2092), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4488), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2177), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2189), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4717), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3366), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(277), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1008), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2283), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4529), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2262), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2169), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4627), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3302), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1880), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1879), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3290), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(600), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1946), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1012), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2242), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4520), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2274), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2138), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4633), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3319), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1949), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1948), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3342), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(741), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2067), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1010), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2295), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4538), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2102), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2195), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4613), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3296), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2031), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2032), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3367), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(649), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2150), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1006), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2203), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4509), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2164), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2078), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4650), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3372), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(483), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 10), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 10), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [11] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [13] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 6), + [15] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [17] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), + [19] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), + [21] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5, 0, 0), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2622), + [42] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), + [44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1572), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4597), + [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5064), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1996), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(343), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(327), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3044), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5083), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(326), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2690), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1558), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4513), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(52), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4917), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(398), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(345), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3034), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5024), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(382), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2489), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1515), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4605), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(39), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1953), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(364), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(384), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3070), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5061), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(40), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(390), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2531), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1539), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4649), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(106), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4971), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1972), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(422), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(410), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3058), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4943), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(105), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(454), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2737), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1446), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4533), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(86), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4995), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1992), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(467), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(530), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3039), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5068), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(90), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(535), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2544), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4639), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(87), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5006), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2001), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(431), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(529), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3040), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4974), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(88), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(523), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2519), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1555), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4586), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(70), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4935), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1951), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(497), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(526), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3061), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4919), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(69), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(518), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2540), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1450), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4641), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(143), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4994), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1981), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(585), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(582), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3036), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4966), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(142), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(583), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2514), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1578), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4580), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(153), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4928), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1949), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(723), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(701), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3051), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4918), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(124), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(699), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2530), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1543), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4644), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(171), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4965), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1969), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(557), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(554), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3026), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4938), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(152), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(553), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2534), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1484), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4647), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(196), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4979), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1541), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1565), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3054), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4950), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(201), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1563), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2521), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1554), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4587), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(215), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4942), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1471), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1552), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3032), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(216), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1547), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2547), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1516), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4637), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(235), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5018), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2026), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1463), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1452), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3052), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4980), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(208), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2610), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1430), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4607), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(266), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5110), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1898), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1650), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3055), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5051), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(240), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1742), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2538), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1570), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4643), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(243), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4986), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1978), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1707), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1633), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3033), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4959), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(245), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1626), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2713), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1549), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4565), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(286), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5025), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2012), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1720), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1601), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3037), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5113), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(278), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1606), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2528), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1544), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4634), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(284), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4957), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1966), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1694), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1761), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3065), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4930), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(288), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_reverse_atom, 2, 0, 0), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2603), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1448), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4611), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(309), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1905), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1811), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1807), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3062), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5037), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(310), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1804), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 8), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1, 0, 7), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 2, 0, 0), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 2, 0, 16), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 3, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 3, 0, 0), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4, 0, 0), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler_type, 5, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 5, 0, 22), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 4, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler_type, 6, 0, 0), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type, 6, 0, 22), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_effect_suffix, 5, 0, 0), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler_type, 7, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_unit, 1, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuple, 4, 0, 0), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1020), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2059), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4707), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2054), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2117), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(861), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1272), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4571), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1566), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1567), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3402), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(386), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1610), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 4, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 5, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 6, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 7, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 2, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 8, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(995), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2127), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4671), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2154), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2177), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(882), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1203), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3540), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1646), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1647), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3310), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(471), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1833), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(992), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2079), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4710), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2047), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2108), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(885), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1287), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(407), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(948), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2134), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4728), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2120), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2103), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(813), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1339), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4308), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1855), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1856), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3349), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(644), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2016), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1001), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2088), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4726), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2102), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2092), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(879), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1425), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4364), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1829), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1832), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3411), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(705), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1907), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1043), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2182), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4743), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2094), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2080), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(833), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1406), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4408), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1877), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1876), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3284), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(660), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1903), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1046), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2184), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4720), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2119), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2186), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(840), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1183), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(480), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(944), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2111), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4713), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2053), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2052), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(931), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1309), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4486), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1901), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1902), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(3353), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(733), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2140), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(940), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2074), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4715), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2133), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2106), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(932), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1407), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(622), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(974), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2190), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4736), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2105), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2095), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(907), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1415), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(722), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1028), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2187), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4738), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2098), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2087), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(855), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1414), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(695), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 10), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 10), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 7, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 7, 0, 0), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1039), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2106), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4489), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2163), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2176), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4709), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3338), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(726), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 7, 0, 10), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 7, 0, 10), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 6, 0, 0), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 6, 0, 0), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 6, 0, 10), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 6, 0, 10), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 5, 0, 10), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 5, 0, 10), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 5, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 5, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 4, 0, 10), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 4, 0, 10), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 4, 0, 0), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 4, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 2, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 2, 0, 10), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2, 0, 10), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(1013), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2219), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4513), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2191), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(2209), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(4640), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(3358), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat6, 2, 0, 0), SHIFT_REPEAT(813), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, 0, 10), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, 0, 10), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2185), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4595), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2422), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2409), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4190), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1699), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4769), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3021), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2836), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2837), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2927), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4800), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1712), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2824), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2770), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3961), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4619), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3002), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2831), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2827), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2908), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4634), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1724), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2821), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2727), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3928), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4596), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3010), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2784), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2789), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2916), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1742), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2808), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2457), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4149), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1673), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4685), - [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3020), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2786), - [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2814), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2925), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4730), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1671), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2833), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2702), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4269), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1584), - [3108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3013), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2830), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2809), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2932), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4812), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1697), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2807), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), - [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2655), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4253), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1836), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4757), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2997), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2865), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2850), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2905), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4834), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1820), - [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2841), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 16, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2413), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4185), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1884), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4698), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3001), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2875), - [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2859), - [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2915), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4740), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1876), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2858), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2569), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4089), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1847), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4654), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2983), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2863), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2857), - [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2913), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4697), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1850), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2861), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2680), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4263), - [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4830), - [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3004), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2849), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2872), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2931), - [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4816), - [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1782), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2876), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_cons, 2, 0, 13), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_var, 2, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_var, 2, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_cons, 1, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_cons, 1, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_cons, 2, 0, 13), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 8, 0, 10), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 8, 0, 10), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_unit, 1, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_unit, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 8, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 8, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 1, 0, 12), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), - [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(4684), - [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), - [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2934), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 2, 0, 12), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), - [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(4753), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2911), - [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2964), - [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(4719), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2902), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4838), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 1, 0, 0), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 4, 0, 0), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 3, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_reverse_prim, 3, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 5, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 7, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 13, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 14, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 9, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 4, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 10, 0, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 15, 0, 0), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 16, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 11, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 6, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 5, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 8, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 12, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 9), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(2577), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(3160), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(2971), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 1, 0, 1), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 3, 0, 9), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), SHIFT_REPEAT(2990), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 2, 0, 0), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 9, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, 0, 0), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 8, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 10, 0, 0), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 9, 0, 3), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 9, 0, 21), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuple, 4, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 7, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuple, 3, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuple, 3, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 9, 0, 0), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 7, 0, 17), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 6, 0, 0), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, 0, 0), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 5, 0, 3), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_unit, 1, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 11, 0, 0), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 10, 0, 3), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 10, 0, 22), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 8, 0, 19), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 4, 0, 3), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 10, 0, 0), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 12, 0, 0), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fixity_repeat2, 2, 0, 0), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fixity_repeat2, 2, 0, 0), SHIFT_REPEAT(3213), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 13, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 3, 0, 1), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 8, 0, 0), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, 0, 0), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixity, 6, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixity, 5, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 1, 0, 4), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 8, 0, 3), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 3, 0, 3), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 6, 0, 3), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 2, 0, 1), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 2, 0, 2), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 8, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 7, 0, 0), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(2256), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 6, 0, 0), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 6, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 3, 0, 5), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 4, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 5, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 4, 0, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4771), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 3, 0, 0), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_reverse_prim, 3, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_reverse_atom, 2, 0, 0), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 4, 0, 11), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 5, 0, 0), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_export_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_export_repeat1, 2, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 1, 0, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 0), - [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 0), SHIFT_REPEAT(4819), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 2, 0, 0), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 2, 0, 0), SHIFT_REPEAT(2260), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 3, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(3245), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 4, 0, 1), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 7), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 5, 0, 14), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 5, 0, 1), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat1, 2, 0, 0), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_export_repeat2, 2, 0, 0), SHIFT_REPEAT(4750), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_export_repeat2, 2, 0, 0), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat3, 2, 0, 0), SHIFT_REPEAT(3094), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat3, 2, 0, 0), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 14), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 1), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 16), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_tuple_repeat1, 2, 0, 0), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat1, 2, 0, 0), - [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2917), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2903), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat2, 2, 0, 0), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1436), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat3, 2, 0, 0), SHIFT_REPEAT(4706), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat3, 2, 0, 0), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4012), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 14), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat2, 2, 0, 0), SHIFT_REPEAT(4036), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat2, 2, 0, 0), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 18), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 1), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 16), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 2, 0, 0), SHIFT_REPEAT(4683), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 2, 0, 0), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 9, 0, 18), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(2235), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 2, 0, 0), SHIFT_REPEAT(2227), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 2, 0, 0), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 5, 0, 20), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 8, 0, 16), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 8, 0, 18), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1043), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_effect_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_effect_suffix_repeat1, 2, 0, 0), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attr, 1, 0, 0), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attr, 1, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 4, 0, 0), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 4, 0, 0), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 5, 0, 0), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 7, 0, 0), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 6, 0, 0), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 5, 0, 0), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 6, 0, 0), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 5, 0, 0), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 8, 0, 0), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 5, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 4, 0, 0), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 7, 0, 0), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 4, 0, 0), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [6963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(964), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2130), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(4714), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2063), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(2043), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(908), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(1337), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat5, 2, 0, 0), SHIFT_REPEAT(810), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2551), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1519), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4391), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(900), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4853), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2035), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2767), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2770), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3048), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4900), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(893), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2771), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2656), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1443), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4489), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1072), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4901), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1915), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2868), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2885), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3027), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4997), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1064), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2571), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1571), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4623), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(972), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5048), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2004), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2854), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2818), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3043), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4996), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(971), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2817), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 6, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 6, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 6, 0, 10), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 6, 0, 10), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2492), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1441), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4225), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1056), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4768), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1904), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2884), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2775), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3035), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4776), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1058), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2890), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, 0, 0), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2712), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1560), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4268), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(968), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4802), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1986), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2824), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2823), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3049), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4801), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(965), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2821), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2708), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1176), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2773), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(825), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(5002), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2504), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2504), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2739), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(3331), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2774), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 5, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 5, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 5, 0, 10), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 5, 0, 10), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 2, 0, 10), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2, 0, 10), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 2, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 4, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 4, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 4, 0, 10), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 4, 0, 10), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 3, 0, 10), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 3, 0, 10), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 7, 0, 10), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 7, 0, 10), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2736), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1573), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4577), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(970), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5032), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1970), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2877), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2882), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3024), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5071), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(973), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2881), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 7, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 7, 0, 0), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2525), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1449), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4433), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1036), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4880), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1993), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2871), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2870), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3047), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4960), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1054), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2888), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2523), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1553), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4601), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1379), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4949), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1958), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2910), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2980), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3029), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4922), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1389), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2900), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2562), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1545), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4631), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1109), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5036), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2009), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2966), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2984), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3053), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1108), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2923), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2586), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1557), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4619), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1347), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5059), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1988), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2962), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2964), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3025), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5011), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1342), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2957), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2600), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1509), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4615), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1397), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5080), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1952), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2909), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2982), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3038), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5020), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1396), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2988), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2714), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1546), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4523), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1153), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(4956), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1967), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2940), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2935), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3066), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(5049), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2, 0, 0), SHIFT_REPEAT(2934), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 11, 0, 30), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 11, 0, 31), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 9, 0, 29), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 12, 0, 30), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 9, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 12, 0, 31), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 13, 0, 31), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 10, 0, 29), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 13, 0, 32), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 14, 0, 32), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_cons, 2, 0, 14), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 10, 0, 30), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 8, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2621), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1299), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(3006), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1502), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(4766), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2963), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2963), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2960), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(3347), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(3010), + [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2455), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1181), + [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1207), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 12, 0, 32), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 7, 0, 0), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2618), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1200), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8, 0, 0), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 11, 0, 29), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 6, 0, 27), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 6, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handler, 5, 0, 24), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 9, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2680), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1174), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1231), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(2734), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1261), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1440), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_var, 2, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_var, 2, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 8, 0, 10), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 8, 0, 10), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 8, 0, 0), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 8, 0, 0), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_cons, 2, 0, 14), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_unit, 1, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_unit, 1, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_cons, 1, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_cons, 1, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 1, 0, 13), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 2, 0, 13), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3050), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), + [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3078), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(4878), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), + [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3076), + [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3071), + [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), + [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(5102), + [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3059), + [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3081), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3104), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5116), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5115), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3060), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(4952), + [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3063), + [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), + [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_primitive_compound_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 9, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 5, 0, 0), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 7, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 6, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 8, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 4, 0, 0), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_reverse_prim, 3, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 5, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 4, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 3, 0, 0), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_compound, 1, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 9), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(2360), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(3270), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat2, 2, 0, 0), SHIFT_REPEAT(3093), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 3, 0, 9), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 1, 0, 1), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 6, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 7, 0, 20), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 7, 0, 17), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 8, 0, 3), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 1, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 8, 0, 23), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 7, 0, 19), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 3, 0, 3), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 8, 0, 20), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 10, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 9, 0, 3), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 9, 0, 26), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 9, 0, 20), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 11, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 4, 0, 3), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 10, 0, 3), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 10, 0, 28), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 2, 0, 0), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 2, 0, 0), SHIFT_REPEAT(3224), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 7, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 8, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 12, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixity, 5, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, 0, 0), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 13, 0, 0), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 9, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 6, 0, 11), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 6, 0, 17), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 5, 0, 3), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), + [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), SHIFT_REPEAT(3152), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data, 6, 0, 3), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 5, 0, 11), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixity, 6, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_effect, 5, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuple, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuple, 3, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuple, 4, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 2, 0, 1), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fixity_repeat2, 2, 0, 0), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fixity_repeat2, 2, 0, 0), SHIFT_REPEAT(3220), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat1, 1, 0, 4), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 3, 0, 1), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_unit, 1, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 2, 0, 2), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 5, 0, 0), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 4, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 3, 0, 5), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 6, 0, 0), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handler_repeat1, 2, 0, 0), SHIFT_REPEAT(5088), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat1, 2, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 5, 0, 0), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 2, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 4, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(2149), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat3, 4, 0, 24), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 3, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_reverse_prim, 3, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 4, 0, 12), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5034), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), + [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 2, 0, 0), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 2, 0, 0), SHIFT_REPEAT(2163), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 4, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat2, 2, 0, 0), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handler_repeat2, 2, 0, 0), SHIFT_REPEAT(3365), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 5, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_compound, 1, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_reverse_atom, 2, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 0), + [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat3, 2, 0, 0), SHIFT_REPEAT(5094), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fixity_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 1, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat1, 2, 0, 11), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 3, 0, 0), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 2, 0, 0), SHIFT_REPEAT(3233), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 4, 0, 1), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 7), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(2185), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1394), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2, 0, 0), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_tuple_repeat1, 2, 0, 0), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 5, 0, 15), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handler_repeat3, 2, 0, 0), SHIFT_REPEAT(4761), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat3, 2, 0, 0), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 5, 0, 1), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat1, 2, 0, 0), SHIFT_REPEAT(3350), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat1, 2, 0, 0), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 9, 0, 21), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(2104), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 2, 0, 0), SHIFT_REPEAT(2101), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 2, 0, 0), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 5, 0, 25), + [6859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, 0, 0), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 8, 0, 18), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 8, 0, 21), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_effect_repeat1, 2, 0, 0), SHIFT_REPEAT(5047), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_effect_repeat1, 2, 0, 0), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_effect_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_effect_suffix_repeat1, 2, 0, 0), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 2, 0, 0), SHIFT_REPEAT(5004), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 2, 0, 0), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 18), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 1), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 21), + [6947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat2, 2, 0, 0), SHIFT_REPEAT(4626), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_piece_repeat2, 2, 0, 0), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 7, 0, 15), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [6960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4640), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_export_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_export_repeat1, 2, 0, 0), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2, 0, 0), + [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1194), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [7022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat2, 2, 0, 0), SHIFT_REPEAT(3045), + [7025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat2, 2, 0, 0), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat1, 2, 0, 0), + [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_primitive_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handler_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_type_repeat1, 2, 0, 0), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 18), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 1), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_piece, 6, 0, 15), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat3, 2, 0, 0), SHIFT_REPEAT(3187), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat3, 2, 0, 0), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_export_repeat2, 2, 0, 0), SHIFT_REPEAT(5005), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_export_repeat2, 2, 0, 0), + [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 4, 0, 22), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 5, 0, 0), + [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_attr, 1, 0, 0), + [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_attr, 1, 0, 0), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 4, 0, 0), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 6, 0, 0), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 5, 0, 0), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_type_repeat1, 3, 0, 0), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 7, 0, 0), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 6, 0, 0), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_effect_suffix_repeat1, 3, 0, 0), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 4, 0, 0), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_export, 8, 0, 0), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat2, 7, 0, 0), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_repeat4, 4, 0, 0), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handler_repeat3, 5, 0, 24), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat4, 5, 0, 0), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_effect_repeat1, 4, 0, 11), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7, 0, 0), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8, 0, 0), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4, 0, 0), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [7924] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3, 0, 0), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), }; #ifdef __cplusplus